/* ============================================================
   SAVE180K — Senior Design Without the Hire
   Design system: Dark, teal-accented, clean & confident
   ============================================================ */

/* ---- Animated accent hue ---- */
@property --accent-hue {
    syntax: '<number>';
    inherits: true;
    initial-value: 174;
}

@keyframes hue-drift {
    0%   { --accent-hue: 174; }
    50%  { --accent-hue: 230; }
    100% { --accent-hue: 174; }
}

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

:root {
    animation: hue-drift 60s ease-in-out infinite;

    --bg-dark:     #0b0f18;
    --bg-mid:      #111622;
    --bg-card:     #161c2c;
    --bg-card-alt: #1a2133;
    --accent:      hsl(var(--accent-hue) 72% 45%);
    --accent-dim:  hsl(var(--accent-hue) 72% 45% / 0.12);
    --accent-glow: hsl(var(--accent-hue) 72% 45% / 0.25);
    --accent-on:   #0b0f18;
    --text:        #e8edf5;
    --text-muted:  #8a95aa;
    --text-dim:    #4a5568;
    --border:      rgba(255, 255, 255, 0.07);
    --card-hover-border: hsl(var(--accent-hue) 72% 45% / 0.2);
    --card-featured-border: hsl(var(--accent-hue) 72% 45% / 0.18);
    --card-featured-bg: linear-gradient(135deg, var(--bg-card-alt) 0%, hsl(var(--accent-hue) 72% 45% / 0.06) 100%);
    --card-featured-bg-alt: linear-gradient(160deg, var(--bg-card-alt) 0%, hsl(var(--accent-hue) 72% 45% / 0.07) 100%);
    --subtle-bg:   rgba(255, 255, 255, 0.03);
    --nav-scrolled: rgba(11, 15, 24, 0.92);
    --photo-fade:  rgba(11, 15, 24, 0.65);
    --photo-fade-about: rgba(11, 15, 24, 0.55);
    --orb-1:       hsl(var(--accent-hue) 72% 45% / 0.28);
    --orb-2:       rgba(99, 102, 241, 0.18);
    --glow-ring-start: hsl(var(--accent-hue) 72% 45% / 0.55);
    --glow-ring-end:   rgba(99, 102, 241, 0.35);
    --accent-photo: hsl(var(--accent-hue) 72% 45% / 0.42);
    --accent-photo-light: hsl(var(--accent-hue) 60% 40% / 0.2);
    --accent-fade: hsl(var(--accent-hue) 72% 45% / 0.6);
    --accent-subtle: hsl(var(--accent-hue) 72% 45% / 0.3);
    --accent-topo: hsl(var(--accent-hue) 72% 45% / 0.055);
    --radius:      12px;
    --radius-lg:   20px;
}

/* Light mode topo lines */
[data-theme="light"] .hero-topo g {
    stroke: var(--accent-topo);
}

/* Light mode photo overlays — reduce tinting */
[data-theme="light"] .headshot-frame::after {
    background: linear-gradient(175deg, transparent 25%, var(--accent-photo) 100%);
}

[data-theme="light"] .about-photo-frame::after {
    background: linear-gradient(175deg, transparent 25%, var(--accent-photo) 100%);
}

/* Light mode photo desaturation — less aggressive */
[data-theme="light"] .headshot-frame img,
[data-theme="light"] .about-photo-frame img {
    filter: saturate(0.85);
}

/* Light mode cards get subtle shadow instead of border glow */
[data-theme="light"] .service-card,
[data-theme="light"] .pain-card,
[data-theme="light"] .case-study-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .testimonial,
[data-theme="light"] .compare-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Light mode LinkedIn icon */
[data-theme="light"] .linkedin-icon svg {
    fill: var(--text-dim);
}

[data-theme="light"] {
    --bg-dark:     #f8f9fc;
    --bg-mid:      #f0f2f7;
    --bg-card:     #ffffff;
    --bg-card-alt: #f5f7fa;
    --accent:      hsl(var(--accent-hue) 60% 40%);
    --accent-dim:  hsl(var(--accent-hue) 60% 40% / 0.08);
    --accent-glow: hsl(var(--accent-hue) 60% 40% / 0.15);
    --accent-on:   #ffffff;
    --text:        #1a202c;
    --text-muted:  #4a5568;
    --text-dim:    #a0aec0;
    --border:      rgba(0, 0, 0, 0.08);
    --card-hover-border: hsl(var(--accent-hue) 60% 40% / 0.25);
    --card-featured-border: hsl(var(--accent-hue) 60% 40% / 0.2);
    --card-featured-bg: linear-gradient(135deg, var(--bg-card-alt) 0%, hsl(var(--accent-hue) 60% 40% / 0.04) 100%);
    --card-featured-bg-alt: linear-gradient(160deg, var(--bg-card-alt) 0%, hsl(var(--accent-hue) 60% 40% / 0.05) 100%);
    --subtle-bg:   rgba(0, 0, 0, 0.02);
    --nav-scrolled: rgba(248, 249, 252, 0.92);
    --photo-fade:  rgba(248, 249, 252, 0.65);
    --photo-fade-about: rgba(240, 242, 247, 0.55);
    --orb-1:       hsl(var(--accent-hue) 60% 40% / 0.12);
    --orb-2:       rgba(99, 102, 241, 0.08);
    --glow-ring-start: hsl(var(--accent-hue) 60% 40% / 0.35);
    --glow-ring-end:   rgba(99, 102, 241, 0.15);
    --accent-photo: hsl(var(--accent-hue) 60% 40% / 0.2);
    --accent-topo: hsl(var(--accent-hue) 60% 40% / 0.06);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

em { font-style: normal; color: var(--accent); }

/* ---- Layout ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-pad { padding: 10rem 0; }

/* ---- Section Labels ---- */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.accent-bar {
    width: 32px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.section-sub {
    max-width: 540px;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 1.5rem auto 0;
    text-align: center;
    line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.btn-teal {
    background: var(--accent);
    color: var(--accent-on);
}
.btn-teal:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    background: var(--subtle-bg);
    border-color: var(--card-hover-border);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
}

/* ---- Orbs (decorative) ---- */
.orb-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orb-1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orb-2) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
}

/* ---- Topographic contour lines (hero background) ---- */
.hero-topo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 65% 90% at 78% 50%, black 10%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 65% 90% at 78% 50%, black 10%, transparent 75%);
}

/* ---- Fade-up animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-1 { transition-delay: 0.05s; }
.fade-up-2 { transition-delay: 0.15s; }
.fade-up-3 { transition-delay: 0.25s; }
.fade-up-4 { transition-delay: 0.35s; }
.fade-up-5 { transition-delay: 0.45s; }

/* ==============================
   NAV
============================== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
    background: var(--nav-scrolled);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.9rem 0;
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo treatment (Redline) */
.logo-word {
    color: var(--text);
}

.logo-num {
    color: var(--accent);
}

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }

.logo-asterisk {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    vertical-align: super;
    line-height: 0;
    margin-left: 1px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.logo-asterisk:hover { opacity: 0.7; }

/* ===== ASTERISK SECTION ===== */
.asterisk-section { background: var(--bg-mid); }

.asterisk-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.asterisk-mark {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.asterisk-headline {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    max-width: 600px;
}
.asterisk-intro {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 2.5rem;
}
.asterisk-intro strong { color: var(--text); }

.asterisk-compare {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    max-width: 680px;
}
.asterisk-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.asterisk-col-me { border-color: var(--accent); }
.asterisk-col-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.asterisk-col-me .asterisk-col-label { color: var(--accent); }
.asterisk-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}
.asterisk-line-blank { border-color: transparent; }
.asterisk-total {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 700;
    padding-top: 0.75rem;
    color: var(--text);
}
.asterisk-total-me { color: var(--accent); }
.asterisk-vs {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 600;
}

.asterisk-savings {
    max-width: 680px;
    margin-bottom: 2rem;
}
.asterisk-savings-inner {
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.asterisk-savings-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    white-space: nowrap;
}
.asterisk-savings-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.asterisk-savings-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.asterisk-pattern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 640px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
}
.asterisk-pattern-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.asterisk-pattern-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.asterisk-pattern-text strong { color: var(--text); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ---- Theme Toggle ---- */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    flex-shrink: 0;
}

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

.theme-toggle .icon-sun,
.theme-toggle .icon-moon { display: none; }

[data-theme="light"] .theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }

:root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
:root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }

/* Smooth theme transition */
html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* ==============================
   HERO
============================== */
.hero {
    position: relative;
    padding: 11rem 0 10rem;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 6rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent-dim);
    border: 1px solid var(--card-hover-border);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.25rem;
    color: var(--text);
}

.hero-rotate {
    display: block;
    position: relative;
}

.hero-title {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-title.active {
    opacity: 1;
}

/* Invisible sizer — reserves height/width of the longest title */
.hero-rotate .hero-sizer {
    display: block;
    visibility: hidden;
    pointer-events: none;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-ai-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: gap 0.2s ease;
}

.hero-ai-link:hover {
    gap: 0.6rem;
}

.hero-ai-link svg {
    animation: bounce-down 1.8s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-clients {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.clients-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.75rem;
}

.client-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.5);
    transition: filter 0.2s ease;
}

.client-logo:hover {
    filter: grayscale(0) opacity(1);
}

[data-theme="light"] .client-logo {
    filter: grayscale(1) opacity(0.4);
}

[data-theme="light"] .client-logo:hover {
    filter: grayscale(0) opacity(1);
}

.client-logos span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Headshot */
.hero-image-wrap {
    position: relative;
}

/* Gradient glow ring behind the frame */
.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: linear-gradient(160deg, var(--glow-ring-start) 0%, var(--glow-ring-end) 60%, transparent 100%);
    z-index: 0;
}

.headshot-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: none;
    aspect-ratio: 4/5;
    z-index: 1;
}

.headshot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: saturate(0.72);
    display: block;
}

/* Teal color grade — tints lower portion of the photo in brand color */
.headshot-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        175deg,
        transparent 25%,
        var(--accent-photo) 100%
    );
    mix-blend-mode: color;
    pointer-events: none;
}

/* Bottom fade — photo bleeds into the dark background */
.headshot-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 55%,
        var(--photo-fade) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-badge {
    position: absolute;
    bottom: -1rem;
    left: -1.5rem;
    background: var(--bg-card-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
}

.badge-txt {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* ==============================
   PAIN POINTS
============================== */
.pain-section {
    padding: 8.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-mid);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.pain-card {
    padding: 3.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: border-color 0.2s, background 0.2s;
}

.pain-card:hover {
    border-color: var(--card-hover-border);
    background: var(--bg-card-alt);
}

.pain-icon {
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.pain-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    color: var(--text);
}

.pain-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==============================
   SERVICES
============================== */
.services-section {
    position: relative;
    overflow: hidden;
}

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

.services-intro {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.25rem;
    transition: border-color 0.2s, transform 0.2s;
}

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

.service-card.featured {
    grid-column: 1 / -1;
    background: var(--card-featured-bg);
    border-color: var(--card-featured-border);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.featured-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.featured-header h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.capability-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 1.5rem 1.25rem;
    background: var(--subtle-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.capability-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.capability-icon {
    color: var(--accent);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    border-radius: 10px;
}

.capability-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.service-icon {
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==============================
   A/B COPY TOGGLE (remove before shipping)
============================== */
.copy-toggle-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    padding: 0.6rem 1.1rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.15s ease;
}

.copy-toggle-btn:hover {
    transform: scale(1.05);
}

.copy-slim {
    display: none;
}

body.slim-copy .copy-full {
    display: none !important;
}

body.slim-copy .copy-slim {
    display: inline;
}

/* ==============================
   AI-FIRST PROCESS
============================== */
.ai-process-section {
    background: var(--bg-dark);
    text-align: center;
}

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

/* Side-by-side comparison tracks */
.process-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-top: 4rem;
    align-items: stretch;
}

.process-track {
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-old {
    background: var(--bg-card);
    border: 1px solid var(--border);
    opacity: 0.7;
}

.process-new {
    background: var(--card-featured-bg-alt);
    border: 1px solid var(--card-hover-border);
}

.process-track-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-track-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 0.25rem;
}

.process-old .process-track-icon {
    background: var(--subtle-bg);
    border: 1px solid var(--border);
    color: var(--text-dim);
}

.process-new .process-track-icon {
    background: var(--accent-dim);
    border: 1px solid var(--card-hover-border);
    color: var(--accent);
}

.process-track h3 {
    font-size: 1.1rem;
}

.process-old h3 {
    color: var(--text-muted);
}

.process-new h3 {
    color: var(--text);
}

.process-track-time {
    font-size: 0.78rem;
    font-weight: 600;
}

.process-old .process-track-time {
    color: var(--text-dim);
}

.process-new .process-track-time {
    color: var(--accent);
}

/* Step dots and connectors */
.process-steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.process-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex: 1;
    text-align: center;
    min-width: 0;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.process-old .step-dot {
    background: var(--text-dim);
}

.process-new .step-dot {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.step-connector {
    height: 2px;
    flex: 0.5;
    margin-top: 4px;
    flex-shrink: 0;
}

.process-old .step-connector {
    background: var(--border);
}

.process-new .step-connector {
    background: linear-gradient(90deg, var(--accent), var(--accent-glow));
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.process-old .step-label {
    color: var(--text-dim);
}

.process-new .step-label {
    color: var(--text);
}

.step-duration {
    font-size: 0.68rem;
    font-weight: 500;
}

.process-old .step-duration {
    color: var(--text-dim);
}

.process-new .step-duration {
    color: var(--accent);
}

/* Output callout */
.process-track-output {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-top: auto;
}

.process-old .process-track-output {
    background: var(--subtle-bg);
    border: 1px solid var(--border);
}

.process-new .process-track-output {
    background: var(--accent-dim);
    border: 1px solid var(--card-hover-border);
}

.output-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.process-old .output-label {
    color: var(--text-dim);
}

.process-new .output-label {
    color: var(--accent);
}

.output-value {
    font-size: 0.85rem;
    line-height: 1.55;
}

.process-old .output-value {
    color: var(--text-dim);
}

.process-new .output-value {
    color: var(--text);
}

/* VS divider */
.process-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
}

.process-divider span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Edge cards */
.ai-edge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4.5rem;
}

.ai-edge-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: left;
    transition: border-color 0.2s;
}

.ai-edge-card:hover {
    border-color: var(--card-hover-border);
}

.ai-edge-icon {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.ai-edge-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.ai-edge-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Version B — slim process comparison */
.process-compare-slim .process-track {
    padding: 2rem;
}

.process-compare-slim .process-track h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.process-slim-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.slim-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.slim-step:last-child {
    border-bottom: none;
}

.slim-step-label {
    color: var(--text);
    font-weight: 500;
}

.slim-step-time {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.process-new .slim-step-time {
    color: var(--accent);
    font-weight: 600;
}

.process-slim-output {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.ai-edge-grid-slim .ai-edge-card {
    padding: 1.5rem;
}

.ai-edge-grid-slim .ai-edge-icon {
    display: none;
}

@media (max-width: 900px) {
    .process-compare {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-divider {
        padding: 0;
    }

    .process-old {
        opacity: 1;
    }

    .ai-edge-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .process-steps-row {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .step-connector {
        display: none;
    }

    .process-step-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

/* ==============================
   LAYOUT PICKER (remove before shipping)
============================== */
.layout-picker {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.layout-btn {
    padding: 0.45rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.layout-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.proc-layout {
    display: none;
}

.proc-layout.active {
    display: block;
}

.proc-layout h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.proc-tagline {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}

/* --- Layout 1: Bars --- */
.bars-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.bars-track {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.bars-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.bars-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

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

.bars-new .bars-time {
    color: var(--accent);
    font-weight: 600;
}

.bar-row {
    display: grid;
    grid-template-columns: 90px 1fr 70px;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

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

.bar-fill {
    height: 8px;
    border-radius: 4px;
    background: var(--border);
}

.bar-fill.bar-accent {
    background: var(--accent);
}

.bar-w1 { width: 20%; }
.bar-w15 { width: 35%; }
.bar-w2 { width: 50%; }
.bar-w3 { width: 80%; }

.bar-dur {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
}

.bars-new .bar-dur {
    color: var(--accent);
    font-weight: 600;
}

/* --- Layout 2: Table --- */
.proc-table-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.proc-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.proc-table th,
.proc-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}

.proc-table th {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.proc-th-new {
    color: var(--accent) !important;
}

.proc-table td:first-child {
    font-weight: 500;
    color: var(--text);
}

.proc-td-old {
    color: var(--text-muted);
}

.proc-td-new {
    color: var(--accent);
    font-weight: 600;
}

.proc-tr-headline td {
    font-size: 1.1rem;
    font-weight: 700;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.proc-tr-output td {
    border-bottom: none;
    padding-top: 1rem;
    font-weight: 600;
}

/* --- Layout 3: Tabs --- */
.proc-tabs {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.proc-tab-btns {
    display: flex;
    gap: 0;
    margin-bottom: 0;
}

.proc-tab-btn {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.proc-tab-btn:first-child {
    border-radius: var(--radius-lg) 0 0 0;
}

.proc-tab-btn:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
    border-left: none;
}

.proc-tab-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.proc-tab-panel {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 2rem;
}

.proc-tab-panel.active {
    display: block;
}

.proc-panel-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.proc-panel-new .proc-panel-time {
    color: var(--accent);
}

.proc-panel-steps {
    margin-top: 1.25rem;
}

.proc-panel-step {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text);
}

.proc-panel-step:last-child {
    border-bottom: none;
}

.proc-panel-new .proc-panel-step span:last-child {
    color: var(--accent);
    font-weight: 600;
}

.proc-panel-output {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.proc-panel-new .proc-panel-output {
    color: var(--accent);
}

/* --- Layout 4: Big Numbers --- */
.bignums {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.bignum {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bignum-val {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-muted);
}

.bignum-new .bignum-val {
    color: var(--accent);
}

.bignum-unit {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

.bignum-new .bignum-unit {
    color: var(--accent);
}

.bignum-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.bignum-vs {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.4;
}

.bignum-steps {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.bignum-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.bignum-step-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bignum-step-time {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

/* --- Layout 5: Accordion --- */
.proc-accordion {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.proc-acc-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.proc-acc-item summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    font-size: 0.9rem;
}

.proc-acc-item summary::-webkit-details-marker {
    display: none;
}

.proc-acc-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    color: var(--text-muted);
}

.proc-acc-new .proc-acc-icon {
    color: var(--accent);
}

.proc-acc-title {
    font-weight: 700;
    color: var(--text);
    flex: 1;
}

.proc-acc-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.proc-acc-new .proc-acc-time {
    color: var(--accent);
}

.proc-acc-body {
    padding: 0 1.5rem 1.5rem;
}

.proc-acc-step {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text);
}

.proc-acc-step:last-child {
    border-bottom: none;
}

.proc-acc-new .proc-acc-step span:last-child {
    color: var(--accent);
    font-weight: 600;
}

.proc-acc-output {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.proc-acc-new .proc-acc-output {
    color: var(--accent);
}

/* ===== LAYOUT 6: Split Columns ===== */
.split-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.split-col {
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border);
}
.split-old { background: var(--bg-card); }
.split-new { background: var(--bg-card); border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent-glow); }
.split-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.split-new .split-label { color: var(--accent); }
.split-time { font-size: 1.75rem; font-weight: 800; margin-bottom: 1.25rem; }
.split-new .split-time { color: var(--accent); }
.split-old .split-time { color: var(--text-dim); }
.split-steps { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }
.split-steps li { display: flex; justify-content: space-between; font-size: 0.88rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); }
.split-new .split-steps li span:last-child { color: var(--accent); font-weight: 600; }
.split-output { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }
.split-new .split-output { color: var(--accent); font-style: normal; font-weight: 600; }

/* ===== LAYOUT 7: Horizontal Timeline ===== */
.htl-wrap { display: flex; flex-direction: column; gap: 0; }
.htl-row { display: grid; grid-template-columns: 100px 1fr auto; align-items: start; gap: 1rem; padding: 1.25rem 0; }
.htl-rowlabel { font-size: 0.78rem; font-weight: 700; color: var(--text-dim); text-align: right; padding-top: 0.6rem; }
.htl-new .htl-rowlabel { color: var(--accent); }
.htl-track-col { display: flex; flex-direction: column; gap: 0.4rem; }
.htl-track { display: flex; gap: 3px; height: 40px; }
.htl-seg { border-radius: 6px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.htl-seg span { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; padding: 0 0.5rem; }
.htl-old .htl-seg { background: var(--bg-card); border: 1px solid var(--border); }
.htl-seg-1, .htl-seg-2, .htl-seg-3, .htl-seg-4 { flex: 3; }
.htl-durations { display: flex; gap: 3px; }
.htl-durations span { flex: 3; font-size: 0.65rem; color: var(--text-dim); text-align: center; }
.htl-durations-new span { color: var(--accent); opacity: 0.8; }
.htl-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.htl-new .htl-track { max-width: 30%; }
.htl-new .htl-durations { max-width: 30%; }
.htl-new-seg { background: var(--accent-dim); border: 1px solid var(--accent); }
.htl-new-seg span { color: var(--accent); }
.htl-new-1 { flex: 1; }
.htl-new-2 { flex: 2; }
.htl-new-3 { flex: 2; }
.htl-total { font-size: 0.88rem; font-weight: 700; color: var(--text-dim); white-space: nowrap; padding-top: 0.6rem; }
.htl-total-new { color: var(--accent); font-size: 1rem; }

/* ===== LAYOUT 8: Receipt ===== */
.receipt-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.receipt {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
}
.receipt-new { border-color: var(--accent); }
.receipt-header { text-align: center; margin-bottom: 0.5rem; }
.receipt-store { font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; }
.receipt-sub { font-size: 0.72rem; color: var(--text-muted); }
.receipt-divider { color: var(--text-dim); font-size: 0.7rem; margin: 0.5rem 0; }
.receipt-item { display: flex; justify-content: space-between; padding: 0.2rem 0; color: var(--text-muted); }
.receipt-total { display: flex; justify-content: space-between; font-weight: 700; padding: 0.25rem 0; }
.receipt-total-old { color: var(--text); }
.receipt-total-new { color: var(--accent); }
.receipt-output-old { margin-top: 0.75rem; font-size: 0.75rem; color: var(--text-dim); text-align: center; }
.receipt-output-new { margin-top: 0.75rem; font-size: 0.75rem; color: var(--accent); text-align: center; font-weight: 600; }

/* ===== LAYOUT 9: Chat ===== */
.chat-wrap { max-width: 520px; margin: 0 auto; }
.chat-thread { display: flex; flex-direction: column; gap: 1rem; }
.chat-msg { display: flex; align-items: flex-end; gap: 0.6rem; }
.chat-them { justify-content: flex-start; }
.chat-trad { justify-content: flex-end; }
.chat-josh { justify-content: flex-end; }
.chat-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }
.chat-avatar-startup { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted); }
.chat-avatar-trad { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-dim); }
.chat-avatar-josh { background: var(--accent); color: var(--accent-on); }
.chat-bubble { padding: 0.75rem 1rem; border-radius: 16px; font-size: 0.88rem; max-width: 80%; line-height: 1.5; }
.chat-bubble-them { background: var(--bg-card); border: 1px solid var(--border); color: var(--text); border-bottom-left-radius: 4px; }
.chat-bubble-trad { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted); border-bottom-right-radius: 4px; font-size: 0.82rem; }
.chat-bubble-josh { background: var(--accent); color: var(--accent-on); border-bottom-right-radius: 4px; font-weight: 600; }
.chat-trad { flex-direction: row-reverse; }
.chat-josh { flex-direction: row-reverse; }

/* ===== LAYOUT 10: Terminal ===== */
.term-wrap { max-width: 560px; margin: 0 auto; }
.term-window { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.term-titlebar { background: var(--bg-card); padding: 0.6rem 1rem; display: flex; align-items: center; gap: 0.4rem; border-bottom: 1px solid var(--border); }
.term-dot { width: 12px; height: 12px; border-radius: 50%; }
.term-red { background: #ff5f57; }
.term-yellow { background: #febc2e; }
.term-green { background: #28c840; }
.term-title { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; margin-right: auto; }
.term-body { background: #0d1117; padding: 1.25rem 1.5rem; font-family: 'Courier New', monospace; font-size: 0.82rem; line-height: 1.8; }
.term-line { color: #c9d1d9; }
.term-prompt { color: #58a6ff; margin-right: 0.5rem; }
.term-comment { color: #6e7681; }
.term-warn { color: #d29922; }
.term-success { color: #3fb950; }
.term-output { color: #58a6ff; }
.term-spacer { height: 0.75rem; }
.term-blink { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ===== LAYOUT 11: Scoreboard ===== */
.score-wrap { max-width: 540px; margin: 0 auto; }
.score-board { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.score-header { display: grid; grid-template-columns: 1fr 48px 1fr; background: var(--bg-card); padding: 1rem; text-align: center; border-bottom: 2px solid var(--border); }
.score-team { font-weight: 700; font-size: 0.9rem; }
.score-team-new { color: var(--accent); }
.score-vs { color: var(--text-dim); font-size: 0.75rem; align-self: center; }
.score-row { display: grid; grid-template-columns: 1fr 120px 1fr; align-items: center; border-bottom: 1px solid var(--border); }
.score-cell { padding: 0.75rem 1rem; font-size: 0.88rem; font-weight: 600; text-align: center; }
.score-cell-old { color: var(--text-dim); }
.score-cell-new { color: var(--text-muted); }
.score-win { color: var(--accent) !important; background: var(--accent-dim); }
.score-cat { font-size: 0.78rem; color: var(--text-muted); text-align: center; padding: 0.75rem 0; background: var(--bg-card); }
.score-final { display: grid; grid-template-columns: 1fr 120px 1fr; align-items: center; background: var(--bg-card); padding: 0.75rem 0; }
.score-final-old { text-align: center; font-size: 1.1rem; font-weight: 800; color: var(--text-dim); }
.score-final-new { text-align: center; font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.score-final-label { text-align: center; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }

/* ===== LAYOUT 12: Speed ===== */
.speed-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.speed-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.speed-card-new { border-color: var(--accent); }
.speed-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
.speed-card-new .speed-label { color: var(--accent); }
.speed-meter { margin-bottom: 1.25rem; }
.speed-track { background: var(--bg-mid); border-radius: 99px; height: 8px; overflow: hidden; margin-bottom: 0.4rem; }
.speed-fill { height: 100%; border-radius: 99px; }
.speed-fill-old { width: 85%; background: var(--text-dim); }
.speed-fill-new { width: 12%; background: var(--accent); }
.speed-val { font-size: 1.4rem; font-weight: 800; }
.speed-val-new { color: var(--accent); }
.speed-list { list-style: none; font-size: 0.82rem; color: var(--text-muted); display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.speed-list-new li { color: var(--text); }
.speed-output { font-size: 0.78rem; font-style: italic; color: var(--text-dim); }
.speed-output-new { color: var(--accent); font-style: normal; font-weight: 600; }

/* ===== LAYOUT 13: Kanban ===== */
.kanban-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.kanban-col { background: var(--bg-mid); border-radius: var(--radius-lg); padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.kanban-col-new { background: var(--accent-dim); }
.kanban-col-header { font-size: 0.8rem; font-weight: 700; padding: 0.25rem 0 0.5rem; display: flex; align-items: center; justify-content: space-between; }
.kanban-col-new .kanban-col-header { color: var(--accent); }
.kanban-badge { font-size: 0.7rem; background: var(--bg-card); border: 1px solid var(--border); padding: 0.1rem 0.5rem; border-radius: 99px; color: var(--text-muted); font-weight: 500; }
.kanban-badge-new { background: var(--accent); color: var(--accent-on); border-color: var(--accent); }
.kanban-card { background: var(--bg-card); border-radius: var(--radius); padding: 0.75rem 1rem; border: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.kanban-card-new { border-color: var(--accent); }
.kanban-tag { font-size: 0.82rem; font-weight: 500; }
.kanban-time { font-size: 0.75rem; color: var(--text-muted); }
.kanban-card-new .kanban-time { color: var(--accent); font-weight: 600; }
.kanban-output { font-size: 0.75rem; font-style: italic; color: var(--text-dim); text-align: center; padding-top: 0.25rem; }
.kanban-output-new { color: var(--accent); font-style: normal; font-weight: 600; }

/* ===== LAYOUT 14: Newspaper ===== */
.news-wrap { max-width: 660px; margin: 0 auto; }
.news-kicker { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.news-headline { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; line-height: 1.15; margin-bottom: 0.6rem; }
.news-subhead { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; font-style: italic; }
.news-rule { border: none; border-top: 3px double var(--border); margin-bottom: 1rem; }
.news-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.news-col p { font-size: 0.88rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 0.75rem; }
.news-dropcap strong { font-size: 1.6rem; float: left; line-height: 1; margin: 0.1em 0.1em 0 0; color: var(--text); }
.news-pull { font-size: 1rem; font-weight: 700; font-style: italic; color: var(--accent); border-left: 3px solid var(--accent); padding-left: 0.75rem; }

/* ===== LAYOUT 15: Checklist ===== */
.checklist-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.checklist-col { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.checklist-new { border-color: var(--accent); }
.checklist-header { font-weight: 700; font-size: 0.88rem; display: flex; justify-content: space-between; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.checklist-time { color: var(--text-dim); font-weight: 500; }
.checklist-time-new { color: var(--accent); }
.checklist-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.cl-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }
.checklist-x .cl-icon { background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
.checklist-check .cl-icon { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent); }
.cl-label { flex: 1; }
.cl-time { font-size: 0.78rem; color: var(--text-muted); }
.checklist-check .cl-time { color: var(--accent); font-weight: 600; }
.checklist-output { margin-top: 1rem; font-size: 0.78rem; font-style: italic; color: var(--text-dim); }
.checklist-output-new { color: var(--accent); font-style: normal; font-weight: 600; }

/* --- Responsive for all layouts --- */
@media (max-width: 640px) {
    .bars-wrap {
        grid-template-columns: 1fr;
    }
    .bignums {
        flex-direction: column;
        gap: 1.5rem;
    }
    .bignum-val {
        font-size: 2.5rem;
    }
    .bignum-steps {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ==============================
   PROCESS
============================== */
.process-section {
    background: var(--bg-mid);
    text-align: center;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 6rem;
    text-align: left;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.step {
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -1rem;
    width: calc(100% - 3rem);
    height: 1px;
    background: linear-gradient(to right, var(--border) 0%, transparent 100%);
}

.step:last-child::after { display: none; }

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-dim);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-subtle) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==============================
   RESULTS
============================== */
.results-section {
    position: relative;
    overflow: hidden;
}

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

/* ==============================
   CASE STUDIES
============================== */
.case-studies-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.case-study-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    transition: border-color 0.2s, transform 0.2s;
}

.case-study-card:hover {
    border-color: var(--card-hover-border);
    transform: translateY(-2px);
}

.case-study-card.featured {
    border-color: var(--card-hover-border);
    background: var(--card-featured-bg-alt);
}

.cs-company {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cs-type {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.cs-stat {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.cs-narrative {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.cs-narrative-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    align-items: start;
}

.cs-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    padding-top: 0.2rem;
}

.cs-narrative-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.cs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.cs-tags span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--subtle-bg);
    border: 1px solid var(--border);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.cs-pattern-row {
    margin-top: 2rem;
    padding: 1.75rem 2rem;
    background: var(--subtle-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.cs-pattern-row p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
}

.cs-clients {
    color: var(--text);
    font-style: normal;
    font-weight: 500;
}

/* ==============================
   ABOUT
============================== */
.about-section {
    background: var(--bg-mid);
}

.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 7rem;
    align-items: center;
}

.about-photo {
    position: relative;
}

.about-photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: none;
    aspect-ratio: 5/6;
    box-shadow: 0 0 0 2px var(--card-hover-border), 0 24px 64px var(--accent-glow);
}

.about-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: saturate(0.72);
    display: block;
}

.about-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg, transparent 25%, var(--accent-photo) 100%);
    mix-blend-mode: color;
    pointer-events: none;
}

.about-photo-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--photo-fade-about) 100%);
    pointer-events: none;
    z-index: 1;
}

.about-photo-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.about-content h2 {
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
}

.about-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.badge {
    background: var(--accent-dim);
    border: 1px solid var(--card-featured-border);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.about-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ==============================
   TESTIMONIALS
============================== */
/* Inline pull-quote testimonials */
.inline-testimonial-wrap {
    padding: 2.5rem 0;
    background: var(--bg-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.inline-testimonial {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    border: none;
    padding: 0;
    background: none;
    box-shadow: none;
}

.inline-testimonial p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 500;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
}

.inline-testimonial p::before { content: none; }
.inline-testimonial p::after  { content: none; }

.inline-testimonial cite {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.inline-testimonial .cite-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    font-style: normal;
}

.inline-testimonial .cite-role {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: normal;
}

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

.testimonials-section h2 { margin-bottom: 3rem; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: normal;
}

.testimonial cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.cite-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

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

/* ==============================
   COMPARE (Why Fractional?)
============================== */
.compare-section {
    background: var(--bg-dark);
    text-align: center;
}

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

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 4.5rem auto 0;
}

.compare-card {
    border-radius: var(--radius-lg);
    padding: 3.25rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.compare-them {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.compare-you {
    background: var(--card-featured-bg-alt);
    border: 1px solid var(--card-hover-border);
}

.compare-card-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.compare-them .compare-card-title {
    color: var(--text-muted);
}

.compare-you .compare-card-title {
    color: var(--accent);
}

.compare-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.compare-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-top: 0.1rem;
}

.compare-them .compare-icon {
    color: var(--text-dim);
    background: var(--subtle-bg);
}

.compare-you .compare-icon {
    color: var(--accent);
    background: var(--accent-dim);
}

.compare-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.15rem;
}

.compare-value {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.compare-you .compare-value {
    color: var(--text);
}

.compare-best-for {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    line-height: 1.55;
}

.compare-them .compare-best-for {
    color: var(--text-dim);
}

.compare-them .compare-best-for svg {
    color: var(--text-dim);
}

.compare-you .compare-best-for {
    color: var(--text-muted);
}

.compare-best-for svg {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.compare-you .compare-best-for svg {
    color: var(--accent);
}

/* Compare hero icons */
.compare-hero-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 0.25rem;
}

.compare-them .compare-hero-icon {
    background: var(--subtle-bg);
    border: 1px solid var(--border);
    color: var(--text-dim);
}

.compare-you .compare-hero-icon {
    background: var(--accent-dim);
    border: 1px solid var(--card-hover-border);
    color: var(--accent);
}

/* Compare bottom line */
.compare-bottom-line {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    margin-top: 0.25rem;
}

.compare-bottom-them {
    background: var(--subtle-bg);
    border: 1px solid var(--border);
}

.compare-bottom-you {
    background: var(--accent-dim);
    border: 1px solid var(--card-hover-border);
}

.compare-bottom-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.compare-bottom-you .compare-bottom-label {
    color: var(--accent);
}

.compare-bottom-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.compare-bottom-them .compare-bottom-price {
    color: var(--text-muted);
}

.compare-bottom-you .compare-bottom-price {
    color: var(--accent);
}

.compare-bottom-note {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
}

.compare-bottom-them .compare-bottom-note {
    color: var(--text-dim);
}

.compare-bottom-you .compare-bottom-note {
    color: var(--text-muted);
}

.compare-bottom-detail {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.compare-bottom-you .compare-bottom-detail {
    color: var(--text-muted);
}

.compare-note {
    max-width: 580px;
    margin: 2.5rem auto 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

@media (max-width: 900px) {
    .compare-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==============================
   STAGE FIT
============================== */
.stage-section {
    background: var(--bg-dark);
    text-align: center;
}

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

.stage-chart {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    text-align: left;
}

.stage-col {
    padding: 0 1.75rem;
    position: relative;
}

.stage-col:not(:last-child) {
    border-right: 1px solid var(--border);
}

.stage-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stage-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.stage-outside .stage-name {
    color: var(--text-muted);
}

.stage-team {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 500;
}

.stage-bar {
    height: 6px;
    border-radius: 3px;
    margin-bottom: 1.75rem;
    position: relative;
}

.stage-outside .stage-bar {
    background: var(--border);
}

.stage-sweet .stage-bar {
    background: linear-gradient(90deg, var(--accent), var(--accent-fade));
    box-shadow: 0 0 12px var(--accent-glow);
}

.stage-fit-label {
    position: absolute;
    top: -1.5rem;
    left: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.stage-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.stage-rec {
    font-size: 0.82rem;
    font-weight: 600;
}

.stage-outside .stage-rec {
    color: var(--text-dim);
}

.stage-sweet .stage-rec {
    color: var(--accent);
}

.stage-detail {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.stage-outside .stage-detail {
    color: var(--text-dim);
}

@media (max-width: 900px) {
    .stage-chart {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 0;
    }

    .stage-col:nth-child(2) {
        border-right: none;
    }

    .stage-col:nth-child(1),
    .stage-col:nth-child(2) {
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 640px) {
    .stage-chart {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stage-col {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding: 0 0 2rem;
    }

    .stage-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ==============================
   PRICING
============================== */
.pricing-section {
    background: var(--bg-mid);
    border-top: 1px solid var(--border);
    text-align: center;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 5rem auto 0;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    transition: border-color 0.2s, transform 0.2s;
}

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

.pricing-card.featured {
    border-color: var(--card-featured-border);
    background: var(--card-featured-bg-alt);
}

/* Availability badges */
.avail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.avail-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.avail-open {
    background: var(--accent-dim);
    border: 1px solid var(--card-hover-border);
    color: var(--accent);
}

.avail-open .avail-dot {
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.pricing-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.price-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1;
}

.price-per {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 1.4rem;
    position: relative;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.price-commit-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    padding: 0.75rem 1rem;
    background: var(--subtle-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.pricing-expand {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    transition: color 0.2s;
    align-self: flex-start;
}

.pricing-expand:hover { color: var(--accent); }

.expand-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
    font-size: 0.75rem;
}

.pricing-expand.open .expand-arrow {
    transform: rotate(180deg);
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.pricing-details.open {
    max-height: 600px;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-note {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--text-dim);
}

.pricing-note a {
    color: var(--accent);
    transition: opacity 0.2s;
}
.pricing-note a:hover { opacity: 0.8; }

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

/* ==============================
   CONTACT
============================== */
.contact-section {
    position: relative;
    overflow: hidden;
    padding: 9rem 0;
    text-align: center;
    background: var(--bg-mid);
    border-top: 1px solid var(--border);
}

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

.contact-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.not-fit-callout {
    background: var(--subtle-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    text-align: left;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.not-fit-callout h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.not-fit-callout ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.not-fit-callout li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.55;
}

.not-fit-callout li::before {
    content: '\00d7';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-direct {
    font-size: 0.875rem;
    color: var(--text-dim);
}

.contact-direct a {
    color: var(--accent);
    transition: opacity 0.2s;
}
.contact-direct a:hover { opacity: 0.8; }

.contact-available {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-top: 0.75rem;
    text-align: center;
}

.contact-available a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--accent-glow);
}


/* ==============================
   CASE STUDY IMAGES
============================== */
.cs-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
}

/* Coming soon card */
.cs-coming-soon {
    opacity: 0.5;
    border-style: dashed !important;
}

.cs-soon-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
}

.cs-soon-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    background: var(--subtle-bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.3rem 0.85rem;
    width: fit-content;
}

.cs-soon-note {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-style: italic;
}

/* ==============================
   STAGE IN COMPARE
============================== */
.stage-in-compare {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.stage-compare-h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 3rem;
}

/* ==============================
   ABOUT REMOTE
============================== */
.about-remote {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

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

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-dim);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-muted); }

.linkedin-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--text-dim);
    transition: fill 0.2s;
    display: block;
}
.linkedin-icon:hover svg { fill: var(--text-muted); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-wrap {
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-badge {
        left: auto;
        right: -0.5rem;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: auto;
    }

    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .step::after { display: none; }

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

    .about-photo {
        max-width: 320px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .nav-links { display: none; }

    .hero {
        padding: 7rem 0 5rem;
        min-height: auto;
    }

    .hero h1 { font-size: 2.25rem; }

    h2 { font-size: 1.9rem; }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .cs-narrative-item {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .case-study-card {
        padding: 2rem;
    }

    .cs-stat {
        font-size: 1.25rem;
    }

    .cs-pattern-row {
        padding: 1.25rem 1.5rem;
    }

    .not-fit-callout {
        padding: 1.25rem 1.5rem;
    }

    .capability-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .capability-card {
        padding: 1rem 0.75rem;
    }
}

/* ==============================
   FOCUS & MOTION
============================== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .avail-dot {
        animation: none;
    }
}
