/* Sockindle — Main Site CSS */
/* Brand prefix: sk- | Batch: web0519 | Build: 2026-05-19 */
/* Anti-fingerprint: sk- BEM, 4-space indent, dark-enterprise palette */

/* ============================================================
   OVERFLOW GUARD (MANDATORY)
   ============================================================ */
html, body { overflow-x: hidden; }

/* ============================================================
   CSS VARIABLES — brand palette
   ============================================================ */
:root {
    --sk-accent:        #dc2626;
    --sk-accent-rgb:    220, 38, 38;
    --sk-accent-light:  #ef4444;
    --sk-bg-dark:       #0d1117;
    --sk-bg-section:    #111827;
    --sk-bg-card:       #1f2937;
    --sk-bg-card-alt:   #1a2332;
    --sk-text-primary:  #f9fafb;
    --sk-text-body:     #d1d5db;
    --sk-text-muted:    #9ca3af;
    --sk-text-subtle:   #6b7280;
    --sk-border:        #374151;
    --sk-border-light:  rgba(255,255,255,0.08);
    --font-sans:        'Manrope', system-ui, sans-serif;
    --font-display:     'Manrope', system-ui, sans-serif;
    --font-mono:        'JetBrains Mono', ui-monospace, monospace;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    background: var(--sk-bg-dark);
    color: var(--sk-text-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: -0.025em;
    margin: 0;
    color: var(--sk-text-primary);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--sk-accent); text-decoration: none; }
a:hover { opacity: 0.85; }

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

code, pre { font-family: var(--font-mono); }

html { scroll-behavior: smooth; }

/* Subpage padding: handled at hero level, not body — do not use body.sk-page-sub */

/* ============================================================
   UTILITY
   ============================================================ */
.sk-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-section {
    padding: 80px 0;
    background: var(--sk-bg-dark);
}

.sk-section--dark {
    background: var(--sk-bg-dark);
}

.sk-section--alt {
    background: var(--sk-bg-section);
}

.sk-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.sk-btn--primary {
    background: var(--sk-accent);
    color: #ffffff;
}
.sk-btn--primary:hover {
    background: var(--sk-accent-light);
    color: #ffffff;
    opacity: 1;
}

.sk-btn--outline {
    background: transparent;
    color: var(--sk-text-primary);
    border: 1px solid rgba(255,255,255,0.25);
}
.sk-btn--outline:hover {
    border-color: rgba(255,255,255,0.6);
    color: #ffffff;
    opacity: 1;
}

.sk-btn--ghost {
    background: transparent;
    color: var(--sk-accent);
    border: 1px solid var(--sk-accent);
}
.sk-btn--ghost:hover {
    background: rgba(220,38,38,0.1);
    opacity: 1;
}

.sk-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.sk-badge--red {
    background: rgba(220,38,38,0.15);
    color: #ef4444;
    border: 1px solid rgba(220,38,38,0.25);
}
.sk-badge--gray {
    background: rgba(255,255,255,0.06);
    color: var(--sk-text-muted);
    border: 1px solid var(--sk-border-light);
}

/* ============================================================
   NAV — sk-nav, sk-nav--sticky
   ============================================================ */
.sk-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.sk-nav--sticky {
    /* sticky modifier — becomes opaque on scroll via JS .sk-nav--scrolled */
}

.sk-nav--scrolled {
    background: rgba(13,17,23,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.sk-nav--solid {
    background: rgba(13, 17, 23, 0.96);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sk-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
}

.sk-nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.sk-nav__logo-img {
    height: 28px;
    width: auto;
    display: none;
}

.sk-nav__logo-img--dark {
    /* shown on dark nav */
    display: inline;
}

.sk-nav__logo-img--light {
    display: none;
}

.sk-nav__logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--sk-text-primary);
    letter-spacing: -0.02em;
}

.sk-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sk-nav__link {
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s;
}

.sk-nav__link:hover,
.sk-nav__link--active {
    color: var(--sk-text-primary);
    opacity: 1;
}

.sk-nav__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sk-nav__signin {
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s;
}
.sk-nav__signin:hover {
    color: var(--sk-text-primary);
    opacity: 1;
}

.sk-nav__cta {
    background: var(--sk-accent);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.sk-nav__cta:hover {
    background: var(--sk-accent-light);
    color: #ffffff;
    opacity: 1;
}

.sk-nav__cta--button {
    /* variant modifier */
}

.sk-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.sk-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sk-text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile nav */
.sk-nav__mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .sk-nav__links {
        display: none;
    }
    .sk-nav__links.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(13,17,23,0.98);
        border-top: 1px solid var(--sk-border);
        padding: 16px 24px;
        gap: 4px;
    }
    .sk-nav__toggle {
        display: flex;
    }
    .sk-nav__actions {
        display: none;
    }
}

/* ============================================================
   HERO — sk-hero, D-full-bleed, dark-typographic modifier
   ============================================================ */
.sk-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--sk-bg-dark);
    color: var(--sk-text-primary);
}

.sk-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sk-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sk-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(13,17,23,0.90) 0%,
        rgba(13,17,23,0.70) 50%,
        rgba(13,17,23,0.25) 100%
    );
    z-index: 1;
}

.sk-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 100px 24px 80px;
}

.sk-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sk-accent);
    margin-bottom: 24px;
    padding: 5px 14px;
    background: rgba(220,38,38,0.12);
    border: 1px solid rgba(220,38,38,0.25);
    border-radius: 20px;
}

.sk-hero__title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    max-width: 700px;
    margin-bottom: 24px;
}

.sk-hero__lede {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.65;
    color: rgba(209,213,219,0.85);
    max-width: 560px;
    margin-bottom: 40px;
}

.sk-hero__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sk-hero__cta {
    /* individual CTA button — uses sk-btn classes */
}

@media (max-width: 768px) {
    .sk-hero {
        min-height: 80vh;
    }
    .sk-hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(13,17,23,0.5) 0%,
            rgba(13,17,23,0.88) 100%
        );
    }
    .sk-hero__inner {
        padding: 90px 24px 60px;
    }
    .sk-hero__title {
        font-size: 32px;
    }
    .sk-hero__lede {
        font-size: 16px;
    }
    .sk-hero__cta-group {
        flex-direction: column;
    }
    .sk-hero__cta-group .sk-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   STATS — sk-stats, B-cards variant
   ============================================================ */
.sk-stats {
    padding: 64px 0;
    background: var(--sk-bg-section);
    border-top: 1px solid var(--sk-border);
    border-bottom: 1px solid var(--sk-border);
}

.sk-stats__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sk-stats__item {
    background: var(--sk-bg-card);
    border: 1px solid var(--sk-border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s;
}

.sk-stats__item:hover {
    border-color: rgba(220,38,38,0.3);
}

.sk-stats__number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--sk-accent);
    line-height: 1.1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.sk-stats__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--sk-text-primary);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .sk-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sk-stats__number {
        font-size: 28px;
    }
}

/* ============================================================
   FEATURES — sk-features, C-alternating + icon-per-card
   ============================================================ */
.sk-features {
    padding: 88px 0;
    background: var(--sk-bg-dark);
}

.sk-features__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-features__header {
    text-align: center;
    margin-bottom: 64px;
}

.sk-features__header .sk-badge {
    margin-bottom: 16px;
}

.sk-features__header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--sk-text-primary);
    margin-bottom: 16px;
}

.sk-features__header p {
    font-size: 17px;
    color: var(--sk-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.sk-features__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* C-alternating layout: rows alternate text-left/icon-right and icon-left/text-right */
.sk-features__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--sk-border);
}

.sk-features__card:first-child {
    border-top: 1px solid var(--sk-border);
}

/* Even cards: visual on the left */
.sk-features__card:nth-child(even) .sk-features__visual {
    order: 1;
}

.sk-features__card:nth-child(odd) .sk-features__visual {
    order: 2;
}

.sk-features__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-features__visual img {
    width: 100%;
    max-width: 560px;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.sk-features__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--sk-text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.sk-features__body {
    font-size: 16px;
    color: var(--sk-text-muted);
    line-height: 1.75;
}

.sk-features__body p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .sk-features__card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0;
    }
    .sk-features__card:nth-child(even) .sk-features__visual,
    .sk-features__card:nth-child(odd) .sk-features__visual {
        order: 0;
    }
    .sk-features__visual img {
        max-width: 100%;
    }
}

/* ============================================================
   PROCESS — sk-process, A-numbered
   ============================================================ */
.sk-process {
    padding: 88px 0;
    background: var(--sk-bg-section);
}

.sk-process__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-process__header {
    text-align: center;
    margin-bottom: 64px;
}

.sk-process__header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--sk-text-primary);
    margin-bottom: 16px;
}

.sk-process__header p {
    font-size: 17px;
    color: var(--sk-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.sk-process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step-counter;
}

.sk-process__step {
    background: var(--sk-bg-card);
    border: 1px solid var(--sk-border);
    border-radius: 14px;
    padding: 36px 28px;
    position: relative;
}

.sk-process__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(220,38,38,0.12);
    border: 1px solid rgba(220,38,38,0.3);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
    color: var(--sk-accent);
    font-family: var(--font-mono);
    margin-bottom: 20px;
}

.sk-process__step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--sk-text-primary);
    margin-bottom: 12px;
}

.sk-process__step-body {
    font-size: 15px;
    color: var(--sk-text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .sk-process__steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================================
   TESTIMONIALS — sk-testimonials, A-quotes
   ============================================================ */
.sk-testimonials {
    padding: 88px 0;
    background: var(--sk-bg-dark);
}

.sk-testimonials__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-testimonials__header {
    text-align: center;
    margin-bottom: 56px;
}

.sk-testimonials__header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--sk-text-primary);
}

.sk-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sk-testimonials__card {
    background: var(--sk-bg-card);
    border: 1px solid var(--sk-border);
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.2s;
}

.sk-testimonials__card:hover {
    border-color: rgba(220,38,38,0.25);
}

.sk-testimonials__quote {
    font-size: 15px;
    line-height: 1.75;
    color: var(--sk-text-body);
    flex: 1;
    font-style: italic;
}

.sk-testimonials__author {
    font-size: 14px;
    font-weight: 700;
    color: var(--sk-text-primary);
}

.sk-testimonials__role {
    font-size: 13px;
    color: var(--sk-text-subtle);
}

@media (max-width: 768px) {
    .sk-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PRICING — sk-pricing, A-3col
   ============================================================ */
.sk-pricing {
    padding: 88px 0;
    background: var(--sk-bg-section);
}

.sk-pricing__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-pricing__header {
    text-align: center;
    margin-bottom: 56px;
}

.sk-pricing__header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--sk-text-primary);
    margin-bottom: 12px;
}

.sk-pricing__header p {
    font-size: 17px;
    color: var(--sk-text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.sk-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.sk-pricing__card {
    background: var(--sk-bg-card);
    border: 1px solid var(--sk-border);
    border-radius: 16px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sk-pricing__card--featured {
    border-color: var(--sk-accent);
    background: var(--sk-bg-card-alt);
    position: relative;
}

.sk-pricing__card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sk-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.sk-pricing__tier {
    font-size: 20px;
    font-weight: 700;
    color: var(--sk-text-primary);
}

.sk-pricing__price {
    font-size: 42px;
    font-weight: 800;
    color: var(--sk-text-primary);
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.sk-pricing__price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--sk-text-muted);
    letter-spacing: 0;
}

.sk-pricing__period {
    font-size: 13px;
    color: var(--sk-text-subtle);
}

.sk-pricing__desc {
    font-size: 14px;
    color: var(--sk-text-muted);
    line-height: 1.6;
    border-top: 1px solid var(--sk-border);
    padding-top: 16px;
}

.sk-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.sk-pricing__feature {
    font-size: 14px;
    color: var(--sk-text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sk-pricing__feature::before {
    content: '';
    width: 16px;
    height: 16px;
    background: rgba(220,38,38,0.15);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid rgba(220,38,38,0.3);
}

.sk-pricing__cta {
    display: block;
    text-align: center;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: auto;
}

.sk-pricing__card:not(.sk-pricing__card--featured) .sk-pricing__cta {
    background: transparent;
    color: var(--sk-text-primary);
    border: 1px solid var(--sk-border);
}

.sk-pricing__card:not(.sk-pricing__card--featured) .sk-pricing__cta:hover {
    border-color: var(--sk-accent);
    color: var(--sk-accent);
    opacity: 1;
}

.sk-pricing__card--featured .sk-pricing__cta {
    background: var(--sk-accent);
    color: #ffffff;
    border: 1px solid transparent;
}

.sk-pricing__card--featured .sk-pricing__cta:hover {
    background: var(--sk-accent-light);
    opacity: 1;
}

@media (max-width: 900px) {
    .sk-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .sk-pricing__card--featured {
        margin-top: 16px;
    }
}

/* ============================================================
   CTA BANNER — sk-cta, A-banner
   ============================================================ */
.sk-cta {
    padding: 80px 0;
    background: var(--sk-accent);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sk-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.sk-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-cta__title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.sk-cta__lede {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.sk-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    margin: 0 8px;
}

.sk-cta__btn--primary {
    background: #ffffff;
    color: var(--sk-accent);
}
.sk-cta__btn--primary:hover {
    opacity: 0.92;
    color: var(--sk-accent);
}

.sk-cta__btn--outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
}
.sk-cta__btn--outline:hover {
    border-color: #ffffff;
    color: #ffffff;
    opacity: 1;
}

/* ============================================================
   FOOTER — sk-footer, A-4col
   ============================================================ */
.sk-footer {
    background: #080d14;
    border-top: 1px solid var(--sk-border);
    padding: 64px 0 0;
    color: var(--sk-text-muted);
}

.sk-footer__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.sk-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sk-footer__col--brand {
    gap: 12px;
}

/* .sk-footer__logo — canonical rule in sockindle-aux.css */

.sk-footer__logo img {
    height: 24px;
    width: auto;
}

.sk-footer__logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--sk-text-primary);
    letter-spacing: -0.02em;
}

.sk-footer__tagline {
    font-size: 14px;
    color: var(--sk-text-subtle);
    line-height: 1.6;
    max-width: 260px;
}

.sk-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

/* .sk-footer__social-link — canonical rule in sockindle-aux.css */

.sk-footer__heading {
    font-size: 12px;
    font-weight: 700;
    color: var(--sk-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    margin-top: 0;
}

.sk-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sk-footer__link {
    font-size: 14px;
    color: var(--sk-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.sk-footer__link:hover {
    color: var(--sk-text-primary);
    opacity: 1;
}

/* .sk-footer__address-line — canonical rule in sockindle-aux.css */

.sk-footer__bottom {
    border-top: 1px solid var(--sk-border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sk-footer__copyright {
    font-size: 13px;
    color: var(--sk-text-subtle);
}

.sk-footer__legal {
    display: flex;
    gap: 20px;
}

.sk-footer__legal-links a {
    font-size: 13px;
    color: var(--sk-text-subtle);
    text-decoration: none;
    transition: color 0.2s;
}

.sk-footer__legal-links a:hover {
    color: var(--sk-text-muted);
    opacity: 1;
}

.sk-footer__nav {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .sk-footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sk-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .sk-footer__legal {
        justify-content: center;
    }
}

/* COOKIE BANNER — sk-cookie: canonical rules in sockindle-aux.css */

/* ============================================================
   SUBPAGE HERO — sk-subpage-hero
   ============================================================ */
.sk-subpage-hero {
    background: var(--sk-bg-section);
    border-bottom: 1px solid var(--sk-border);
    padding: 88px 0 60px;
}

.sk-subpage-hero__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-page-hero {
    background: var(--sk-bg-section);
    border-bottom: 1px solid var(--sk-border);
    padding: 88px 0 60px;
}

/* .sk-page-hero__title — canonical rule in sockindle-aux.css */

.sk-page-hero__heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--sk-text-primary);
    margin-bottom: 12px;
}

/* .sk-page-hero__lede — canonical rule in sockindle-aux.css */

.sk-subpage-hero__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--sk-text-primary);
    margin-bottom: 12px;
}

.sk-subpage-hero__lede {
    font-size: 18px;
    color: var(--sk-text-muted);
    max-width: 600px;
    line-height: 1.65;
}

/* ============================================================
   ABOUT PAGE SECTIONS
   ============================================================ */
.sk-about {
    padding: 80px 0;
}

.sk-about__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-about__story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.sk-about__story-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--sk-text-primary);
    margin-bottom: 20px;
}

.sk-about__story-text p {
    font-size: 16px;
    color: var(--sk-text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sk-about__story-img {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--sk-border);
}

.sk-about__story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.sk-about__mission {
    background: var(--sk-accent);
    border-radius: 20px;
    padding: 56px 48px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.sk-about__mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}

.sk-about__mission-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    display: block;
    position: relative;
}

.sk-about__mission-statement {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    max-width: 820px;
    position: relative;
}

.sk-about__mission-context {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    max-width: 820px;
    position: relative;
    margin-top: 20px;
}

.sk-about__values {
    margin-bottom: 80px;
}

.sk-about__values h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--sk-text-primary);
    margin-bottom: 36px;
    text-align: center;
}

.sk-about__values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sk-about__value-item {
    background: var(--sk-bg-card);
    border: 1px solid var(--sk-border);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sk-about__value-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--sk-accent);
    font-family: var(--font-mono);
    background: rgba(220,38,38,0.1);
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: 6px;
    padding: 4px 8px;
    flex-shrink: 0;
}

.sk-about__value-text {
    font-size: 15px;
    color: var(--sk-text-body);
    line-height: 1.65;
}

.sk-about__stage {
    background: var(--sk-bg-section);
    border: 1px solid var(--sk-border);
    border-radius: 14px;
    padding: 40px 36px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.sk-about__stage-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sk-accent);
    margin-bottom: 8px;
    display: block;
}

.sk-about__stage-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--sk-text-primary);
    margin-bottom: 8px;
}

.sk-about__stage-desc {
    font-size: 15px;
    color: var(--sk-text-muted);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .sk-about__story {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .sk-about__mission {
        padding: 40px 28px;
    }
    .sk-about__values-grid {
        grid-template-columns: 1fr;
    }
    .sk-about__stage {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* ============================================================
   PRODUCT PAGE SECTIONS
   ============================================================ */
.sk-product-section {
    padding: 80px 0;
}

.sk-product-section__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Problem section */
.sk-problem {
    background: var(--sk-bg-section);
    padding: 88px 0;
}

.sk-problem__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-problem__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.sk-problem__text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--sk-text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sk-problem__text p {
    font-size: 16px;
    color: var(--sk-text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sk-problem__stats-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sk-problem__stat-item {
    background: var(--sk-bg-card);
    border: 1px solid var(--sk-border);
    border-left: 3px solid var(--sk-accent);
    border-radius: 10px;
    padding: 20px 20px;
}

.sk-problem__stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--sk-accent);
    font-variant-numeric: tabular-nums;
    display: block;
    margin-bottom: 4px;
}

.sk-problem__stat-label {
    font-size: 13px;
    color: var(--sk-text-muted);
    line-height: 1.5;
}

/* How it works section */
.sk-howitworks {
    padding: 88px 0;
    background: var(--sk-bg-dark);
}

.sk-howitworks__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-howitworks__header {
    text-align: center;
    margin-bottom: 56px;
}

.sk-howitworks__header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--sk-text-primary);
    margin-bottom: 14px;
}

.sk-howitworks__header p {
    font-size: 17px;
    color: var(--sk-text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.sk-howitworks__flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.sk-howitworks__flow::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.666% + 22px);
    right: calc(16.666% + 22px);
    height: 1px;
    background: linear-gradient(90deg, var(--sk-accent) 0%, var(--sk-border) 50%, var(--sk-accent) 100%);
    z-index: 0;
}

.sk-howitworks__step {
    background: var(--sk-bg-card);
    border: 1px solid var(--sk-border);
    border-radius: 14px;
    padding: 36px 28px;
    position: relative;
    z-index: 1;
    margin: 0 12px;
}

.sk-howitworks__step:first-child { margin-left: 0; }
.sk-howitworks__step:last-child { margin-right: 0; }

.sk-howitworks__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--sk-accent);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-mono);
    margin-bottom: 20px;
}

.sk-howitworks__step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--sk-text-primary);
    margin-bottom: 12px;
}

.sk-howitworks__step-body {
    font-size: 15px;
    color: var(--sk-text-muted);
    line-height: 1.7;
}

/* Target customer section */
.sk-target {
    padding: 88px 0;
    background: var(--sk-bg-section);
}

.sk-target__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sk-target__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.sk-target__main h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--sk-text-primary);
    margin-bottom: 16px;
}

.sk-target__main p {
    font-size: 16px;
    color: var(--sk-text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sk-target__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sk-target__card {
    background: var(--sk-bg-card);
    border: 1px solid var(--sk-border);
    border-radius: 12px;
    padding: 20px;
}

.sk-target__card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sk-accent);
    margin-bottom: 6px;
    display: block;
}

.sk-target__card-text {
    font-size: 14px;
    color: var(--sk-text-body);
    line-height: 1.6;
}

/* Integrations section */
.sk-integrations {
    padding: 72px 0;
    background: var(--sk-bg-dark);
    border-top: 1px solid var(--sk-border);
}

.sk-integrations__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.sk-integrations__inner h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--sk-text-primary);
    margin-bottom: 8px;
}

.sk-integrations__inner p {
    font-size: 15px;
    color: var(--sk-text-muted);
    margin-bottom: 36px;
}

.sk-integrations__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.sk-integrations__item {
    background: var(--sk-bg-card);
    border: 1px solid var(--sk-border);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sk-text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sk-integrations__item i {
    color: var(--sk-accent);
    font-size: 13px;
}

@media (max-width: 768px) {
    .sk-problem__content,
    .sk-target__content,
    .sk-howitworks__flow {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sk-howitworks__flow::before { display: none; }
    .sk-howitworks__step {
        margin: 0;
    }
}
