.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

:root {
    --bg-hub-from: #19173a;
    --bg-hub-to: #2a2460;
    --primary: #635bff;
    --primary-hover: #4f46e5;
    --primary-active: #4338ca;
    --primary-soft: #eef2ff;
    --primary-ring: rgba(99, 91, 255, 0.18);
    --success: #15803d;
    --danger: #dc2626;

    --bg-main: #f6f8fa;
    --bg-soft: #f1f4ff;
    --bg-card-alt: #f1f4ff;
    --bg-card: #ffffff;
    --bg-dark: #0b1120;
    --bg-dark-card: #111a2e;
    --glow-warm: rgba(255, 184, 107, 0.28);
    --bg-ink: #202020;
    --ops-surface: #202020;
    --ops-surface-raised: #282828;
    --ops-grid: rgba(255, 255, 255, 0.055);
    --surface-dark-panel:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
        var(--ops-surface-raised);
    --surface-dark-panel-size: 34px 34px, 34px 34px, auto, auto;
    --surface-dark-card: #2a2d3a;
    --surface-dark-border: rgba(255, 255, 255, 0.12);
    --surface-dark-border-hover: rgba(255, 255, 255, 0.2);
    --surface-dark-text: #ffffff;
    --surface-dark-muted: var(--text-light-muted);
    --surface-nav: rgba(246, 248, 250, 0.9);
    --surface-nav-light: rgba(255, 255, 255, 0.96);
    --surface-badge: rgba(255, 255, 255, 0.88);
    --surface-cta-button: #050510;
    --surface-cta-button-hover: #111126;

    --text-main: #0f172a;
    --text-sec: #3f4f63;
    --text-muted: #526174;
    --text-light: rgba(255, 255, 255, 0.82);
    --text-light-muted: rgba(255, 255, 255, 0.68);

    --border: #dbe4ee;
    --border-light: #eef2f6;
    --border-dark: rgba(255, 255, 255, 0.12);

    --font-heading: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "DM Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --w-content: 1280px;
    --w-narrow: 780px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-section: 28px;
    --radius-pill: 9999px;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-nav: 0 20px 36px rgba(2, 6, 23, 0.18);
    --shadow-lift: 0 8px 8px -7px rgba(15, 23, 42, 0.26);
    --shadow-panel: 0 28px 72px -48px rgba(15, 23, 42, 0.46);
    --shadow-cta: 0 18px 42px -24px rgba(0, 0, 0, 0.92);
    --shadow-cta-hover: 0 20px 44px -24px rgba(0, 0, 0, 0.95);
    --blur-sticky: 8px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --z-sticky: 100;
    --hero-console-peek: 240px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-main);
}

body {
    min-width: 320px;
    overflow-x: hidden;
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-sec);
    background:
        linear-gradient(rgba(99, 91, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 91, 255, 0.035) 1px, transparent 1px),
        var(--bg-main);
    background-size: 32px 32px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
ul, ol { list-style-position: outside; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

p { text-wrap: pretty; }
p + p { margin-top: 1rem; }

.container, .container-wide, .container-narrow {
    width: min(100%, var(--w-content));
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 1.5rem);
}

.container-narrow { max-width: var(--w-narrow); }

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 200;
    transform: translateY(-150%);
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--text-main);
    box-shadow: var(--shadow-nav);
    font-family: var(--font-heading);
    font-weight: 700;
    transition: transform 0.2s var(--ease);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

.contact :focus-visible,
.footer :focus-visible,
.ops-card :focus-visible { outline-color: #ffffff; }

.navbar {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    display: flex;
    justify-content: center;
    min-height: 78px;
    padding: 12px clamp(0.75rem, 2vw, 1rem);
    pointer-events: none;
    transition: min-height 0.32s var(--ease), padding 0.32s var(--ease), background-color 0.32s var(--ease);
}

.navbar.scrolled {
    min-height: 62px;
    padding-block: 7px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(100%, 1120px);
    min-height: 56px;
    padding: 0.38rem 0.45rem 0.38rem 0.55rem;
    border-radius: var(--radius-lg);
    background: var(--bg-ink);
    box-shadow: var(--shadow-nav);
    pointer-events: auto;
    transform-origin: top center;
    will-change: transform, width, min-height;
    transition: width 0.32s var(--ease), min-height 0.32s var(--ease), transform 0.32s var(--ease), box-shadow 0.32s var(--ease), border-radius 0.32s var(--ease);
}

.navbar.scrolled .nav-container {
    width: min(100%, 850px);
    min-height: 48px;
    border-radius: 13px;
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.16);
    transform: scale(0.98);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 44px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary);
}

.logo span { transition: font-size 0.32s var(--ease); }
.navbar.scrolled .logo span { font-size: 0.9rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.12rem;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding-inline: 0.72rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.2s var(--ease), background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-links a:hover { color: #ffffff; background: rgba(255, 255, 255, 0.1); }

.btn-nav, .nav-links .btn-nav {
    min-height: 44px;
    padding-inline: 1.12rem;
    background: #ffffff;
    color: #111111 !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-nav:hover { background: #f3f5f6; transform: none; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 3px 0;
    border-radius: 2px;
    background: #ffffff;
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero {
    width: min(1376px, calc(100% - 8rem));
    margin: -78px auto 0;
    padding: clamp(72px, 6vw, 104px) 0 clamp(72px, 7vw, 108px);
    min-height: calc(100svh - var(--hero-console-peek));
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-bottom: 0;
    border-radius: var(--radius-section) var(--radius-section) 0 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(99, 91, 255, 0.17), transparent 28%),
        radial-gradient(circle at 82% 9%, var(--glow-warm), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 244, 255, 0.78) 52%, rgba(248, 250, 252, 0.96));
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 0 -120px;
    background-image: radial-gradient(circle, rgba(99, 91, 255, 0.38) 1.35px, transparent 1.35px);
    background-size: 30px 30px;
    opacity: 0.42;
    mask-image: linear-gradient(180deg, #000 0%, #000 100%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    pointer-events: none;
}

.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-split { display: grid; gap: 2.5rem; justify-items: center; }
.hero-content { max-width: 930px; text-align: center; }

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    margin-bottom: 1.35rem;
    padding: 0.56rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: #ffffff;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.hero-kicker span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-ring);
}

.eyebrow, .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    margin-bottom: 1.1rem;
    padding: 0.45rem 0.78rem;
    border: 1px solid rgba(99, 91, 255, 0.16);
    border-radius: var(--radius-pill);
    background: var(--primary-soft);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-badge { margin-inline: auto; background: var(--surface-badge); color: var(--text-main); text-transform: none; letter-spacing: 0; box-shadow: var(--shadow-sm); }
.hero-badge-dot { width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px var(--primary-ring); }

.hero h1 {
    max-width: 860px;
    margin-inline: auto;
    margin-bottom: 1rem;
    font-size: clamp(3rem, 5.75vw, 4.75rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero h1 .line { display: block; }
.accent-text { color: var(--primary); }

.hero-sub {
    max-width: 580px;
    margin: 0 auto 1.35rem;
    color: var(--text-sec);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.62;
}

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

.btn-primary, .btn-pricing, .contact-btn, .contact-btn-primary, .btn-text {
    font-family: var(--font-heading);
    font-weight: 700;
}

.btn-primary, .btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: #ffffff;
    border: 2px solid var(--primary);
    box-shadow: 0 8px 28px -4px rgba(99, 91, 255, 0.32);
    transition: background-color 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-primary:hover, .btn-pricing:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px -4px rgba(99, 91, 255, 0.4);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 50px;
    padding: 0.9rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-main);
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-text span { transition: transform 0.2s var(--ease); }
.btn-text:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-soft);
    transform: translateY(-2px);
}
.btn-text:hover span { transform: translateX(4px); }

.hero-proof {
    max-width: 34rem;
    margin: 0.75rem auto 0;
    text-align: center;
    text-wrap: balance;
    color: var(--text-sec);
    font-size: 0.92rem;
}
.hero-proof strong { color: var(--text-main); }

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    max-width: 44rem;
    margin: 1.5rem auto 0;
    padding: 0;
    list-style: none;
}
.hero-pills li {
    padding: 0.55rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(var(--blur-sticky));
    -webkit-backdrop-filter: blur(var(--blur-sticky));
    box-shadow: var(--shadow-sm);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.proof-faces { display: flex; }
.proof-faces i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    margin-left: -0.35rem;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.proof-faces i:first-child { margin-left: 0; background: #202020; }
.proof-faces i:nth-child(2) { background: #a5b4fc; color: #1e1b4b; }
.proof-faces i:nth-child(3) { background: #dbe4ff; color: #1e1b4b; }
.proof-faces i:nth-child(4) { background: #635bff; }
.proof-stars { color: var(--primary); letter-spacing: -0.04em; white-space: nowrap; }

.hero-product {
    width: min(1376px, calc(100% - 8rem));
    margin: clamp(-4.6rem, -5vw, -3.25rem) auto 0;
    padding: 0 0 clamp(2.5rem, 5vw, 4rem);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.hero-product::before {
    display: none;
}

.outreach-console {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    margin-inline: auto;
    padding: clamp(0.8rem, 1.5vw, 1.1rem);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,250,252,0.76)),
        rgba(255,255,255,0.72);
    box-shadow: 0 30px 80px -52px rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.console-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem 1.2rem;
    border-bottom: 1px solid var(--border-light);
}

.console-label, .console-panel-heading span, .console-status, .console-dark span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
}

.console-topbar strong, .console-panel-heading strong, .specialist-row strong, .console-dark strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.console-status {
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius-pill);
    background: var(--primary-soft);
    color: var(--primary);
}
.console-status span { width: 0.45rem; height: 0.45rem; border-radius: 50%; background: currentColor; }

.console-grid { display: grid; grid-template-columns: 1.35fr 0.76fr 0.72fr; gap: 1rem; padding-top: 1rem; }
.console-panel { min-height: 174px; padding: 1.1rem; border: 1px solid rgba(219, 228, 238, 0.82); border-radius: var(--radius-md); background: rgba(248, 250, 252, 0.82); }
.console-panel-main { grid-row: span 2; background: #ffffff; }
.console-panel-heading { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.console-panel-heading strong { color: var(--primary); font-size: 1.6rem; line-height: 1; }
.specialist-list { display: grid; gap: 0.8rem; }
.specialist-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.9rem; padding: 0.95rem; border: 1px solid var(--border-light); border-radius: var(--radius-sm); background: #ffffff; }
.specialist-row span:not(.avatar):not(.status-pill) { display: block; color: var(--text-muted); font-size: 0.92rem; }
.status-pill { justify-self: end; padding: 0.28rem 0.55rem; border-radius: var(--radius-pill); background: var(--primary-soft); color: var(--primary); font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; }
.avatar { display: inline-grid; place-items: center; width: 2.7rem; height: 2.7rem; border-radius: 50%; background: var(--primary); color: #ffffff; font-family: var(--font-heading); font-size: 0.82rem; font-weight: 800; }
.avatar-alt { background: #0f5f9e; }
.avatar-dark { background: #202020; }
.avatar-warm { background: #d97706; }
.limit-meter { height: 0.5rem; margin: 1.8rem 0 1rem; border-radius: var(--radius-pill); background: #dfe7ee; overflow: hidden; }
.limit-meter span { display: block; height: 100%; border-radius: inherit; background: var(--primary); }
.console-panel p, .console-dark p { margin: 0; color: var(--text-muted); font-size: 0.98rem; line-height: 1.55; }
.console-dark { display: flex; flex-direction: column; justify-content: flex-end; min-height: 210px; background: var(--bg-ink); border-color: var(--bg-ink); }
.console-dark span, .console-dark p { color: rgba(255,255,255,0.72); }
.console-dark strong { color: #ffffff; font-size: clamp(3rem, 8vw, 5rem); line-height: 0.9; letter-spacing: -0.04em; margin: 0.55rem 0 0.8rem; }

.console-control { background: #ffffff; }
.control-stack { display: grid; gap: 0.9rem; }
.control-stack div { display: grid; gap: 0.42rem; }
.control-stack span { color: var(--text-sec); font-family: var(--font-heading); font-size: 0.82rem; font-weight: 800; }
.control-stack i, .proof-metric i { display: block; height: 0.46rem; overflow: hidden; border-radius: var(--radius-pill); background: #e5ebf5; }
.control-stack b, .proof-metric b { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), #8b5cf6 62%, #f59e0b); }
.console-inbox { grid-column: 2 / 4; min-height: auto; background: #ffffff; }
.inbox-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.inbox-preview div { display: flex; gap: 0.75rem; align-items: center; padding: 0.85rem; border: 1px solid var(--border-light); border-radius: var(--radius-sm); background: #f8fafc; }
.inbox-preview p { margin: 0; }
.inbox-preview strong, .inbox-preview em { display: block; }
.inbox-preview strong { color: var(--text-main); font-family: var(--font-heading); font-size: 0.92rem; }
.inbox-preview em { color: var(--text-muted); font-size: 0.84rem; font-style: normal; }

.separator-wrapper, .stats-to-problem-bridge { display: none; }
.facts-strip { width: min(1376px, calc(100% - 8rem)); margin: 0 auto; padding: 2rem 0; background: #ffffff; }
.facts-list { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0.85rem 2.2rem; list-style: none; padding: 1rem 1.25rem; border: 1px solid rgba(219, 228, 238, 0.86); border-radius: var(--radius-md); background: #f8fafc; box-shadow: var(--shadow-sm); }
.facts-list li { position: relative; font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-sec); }
.facts-list strong { color: var(--text-main); }
.facts-list li:not(:last-child)::after { content: ""; position: absolute; right: -1.1rem; top: 50%; width: 1px; height: 1.1em; transform: translateY(-50%); background: var(--border); }

.belief-statement {
    width: min(1376px, calc(100% - 8rem));
    margin: clamp(1rem, 2vw, 1.5rem) auto;
    padding-block: clamp(72px, 9vw, 132px);
    border: 1px solid rgba(219, 228, 238, 0.86);
    border-radius: var(--radius-section);
    background: #ffffff;
    text-align: center;
}

.belief-statement p {
    margin: 0;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 5.4vw, 5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.problem, .process-visual, .what-you-get, .safety-protocol, .comparison, .built-for, .before-after, .pricing, .blog-list, .faq, .intro-block {
    width: min(1376px, calc(100% - 8rem));
    margin-inline: auto;
    padding-block: clamp(72px, 8vw, 112px);
}

.problem, .process-visual, .what-you-get, .safety-protocol, .comparison, .built-for, .pricing, .blog-list, .faq {
    position: relative;
    overflow: hidden;
    margin-block: clamp(1rem, 2vw, 1.5rem);
    border-radius: var(--radius-section);
}

.process-visual, .what-you-get, .built-for, .pricing, .faq {
    border: 1px solid rgba(219, 228, 238, 0.86);
    box-shadow: var(--shadow-panel);
    background:
        radial-gradient(circle at 16% 18%, rgba(99, 91, 255, 0.075), transparent 28%),
        linear-gradient(rgba(99, 91, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 91, 255, 0.028) 1px, transparent 1px),
        #ffffff;
    background-size: auto, 44px 44px, 44px 44px, auto;
}

.problem, .safety-protocol, .comparison, .blog-list {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(var(--ops-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--ops-grid) 1px, transparent 1px),
        radial-gradient(circle at 16% 16%, rgba(99, 91, 255, 0.25), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(255, 184, 107, 0.08), transparent 22%),
        linear-gradient(135deg, #171717 0%, #202020 58%, #14151f 100%);
    background-size: 44px 44px, 44px 44px, auto, auto;
    color: var(--text-light);
}

.problem::before, .safety-protocol::before, .comparison::before, .blog-list::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(32, 32, 32, 0.92) 0%, rgba(32, 32, 32, 0.62) 46%, rgba(32, 32, 32, 0.28) 100%);
}

.problem > .container, .safety-protocol > .container, .comparison > .container, .blog-list > .container {
    position: relative;
    z-index: 1;
}

.before-after, .intro-block { background: #ffffff; }

.problem h2, .problem h3, .safety-protocol h2, .safety-protocol h3, .comparison h2, .comparison h3, .blog-list h2, .blog-list h3 {
    color: #ffffff;
}

.problem p, .safety-protocol p, .comparison p, .blog-list p,
.problem .process-lead, .comparison .process-lead,
.comparison-footnote {
    color: var(--text-light-muted);
}

.problem-layout { display: grid; grid-template-columns: 0.9fr 1.15fr; gap: clamp(3rem, 7vw, 6rem); align-items: center; }
.problem-statement h2, .solution-header h2, .pricing-header h2, .process-header h2, .deliverables-copy h2, .protocol-copy h2, .built-for-header h2, .faq h2, .contact h2, .before-after h2, .use-cases h2 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.problem-points, .use-cases-grid, .before-after-grid { display: grid; gap: 1.2rem; }

.problem-item, .feature, .use-case, .pricing-card-inner, .before-card, .after-card, .process-step, .comparison-column, .blog-card, .blog-card-featured, .process-note, .blog-content, .blog-cta, .faq-list, .section-image-wrapper, .deliverables-list, .audience-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #ffffff;
}

.problem .problem-item,
.safety-protocol .protocol-row,
.blog-list .blog-card,
.comparison .comparison-column {
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(40, 40, 40, 0.82);
    box-shadow: none;
}

.problem-item, .feature, .use-case, .pricing-card-inner, .before-card, .after-card { padding: clamp(1.5rem, 3vw, 2.5rem); }
.problem-item, .feature, .use-case, .audience-panel, .pricing-card-inner, .before-card, .after-card, .process-step, .blog-card { transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease); }
.problem-item:hover, .feature:hover, .use-case:hover, .audience-panel:hover, .pricing-card-inner:hover, .before-card:hover, .after-card:hover, .process-step:hover, .blog-card:hover { transform: translateY(-3px); border-color: rgba(99, 91, 255, 0.34); box-shadow: var(--shadow-lift); }
.problem .problem-item:hover,
.safety-protocol .protocol-row:hover,
.blog-list .blog-card:hover,
.comparison .comparison-column:hover {
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 18px -14px rgba(0, 0, 0, 0.8);
}
.problem-num, .feature-num, .process-step-visual { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin-bottom: 1.25rem; border-radius: var(--radius-sm); background: var(--primary-soft); color: var(--primary); }
.problem .problem-num { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.72); }
.problem-item h3, .feature-content h3, .use-case h3, .before-card h3, .after-card h3 { font-size: 1.32rem; margin-bottom: 0.75rem; }
.problem-item p, .feature-content p, .use-case p { margin: 0; font-size: 1.02rem; }
.problem .problem-item p, .blog-list .blog-card p { color: var(--text-light-muted); }

.process-header, .solution-header, .pricing-header { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.process-lead { max-width: 690px; margin: 0 auto; color: var(--text-sec); line-height: 1.66; }

.features, .features-grid, .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.feature h3, .use-case h3 { font-size: 1.28rem; margin-bottom: 0.8rem; }
.feature p, .use-case p { color: var(--text-sec); }

.profiles-section {
    background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(circle at 78% 12%, rgba(255, 184, 107, 0.08), transparent 22%),
        radial-gradient(circle at 18% 12%, rgba(99, 91, 255, 0.1), transparent 24%),
        linear-gradient(135deg, #222226, #1c1c1f);
    background-size: 62px 62px, 62px 62px, auto, auto, auto;
}

/* dead layout removed — profiles-alt-layout and profiles-alt-copy no longer in HTML */

.pain-compare-card,
.support-stat,
.resource-card,
.safety-board {
    border-color: var(--surface-dark-border);
    background: var(--surface-dark-panel);
    background-size: var(--surface-dark-panel-size);
    box-shadow: none;
    transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.support-stat {
    border-radius: 24px;
}

.pain-compare-card:hover,
.support-stat:hover,
.resource-card:hover,
.safety-board:hover {
    border-color: var(--surface-dark-border-hover);
    box-shadow: 0 16px 28px -24px rgba(0, 0, 0, 0.88);
}


/* --- Profiles section: tree-diagram layout --- */
.profiles-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profiles-hub-title {
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.035em;
    line-height: 1.1;
    text-wrap: balance;
    margin: 0 0 0.85rem;
}

.profiles-hub-sub {
    max-width: 52ch;
    color: var(--text-sec);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 2rem;
}

.hub-node-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Dark hub card — origin node */
.hub-node {
    background: linear-gradient(145deg, #19173a 0%, #2d2870 60%, #1e1b4b 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem 2.4rem 1.6rem;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.18),
        0 20px 40px -12px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hub-node-icon {
    width: 46px;
    height: 46px;
    background: rgba(99, 91, 255, 0.25);
    border: 1px solid rgba(99, 91, 255, 0.45);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b5fd;
    margin-bottom: 0.35rem;
    flex-shrink: 0;
}

.hub-node-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hub-node p,
.hub-node-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    max-width: 32ch;
    margin: 0;
}

/* Tree connector — flush below hub card, no gap */
.hub-tree-lines {
    width: 100%;
    max-width: 100%;
    display: block;
    flex-shrink: 0;
    margin-top: -1px;
}

/* Three path destination cards */
.outreach-paths {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

.outreach-path {
    background: #ffffff;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 16px;
    padding: clamp(1.4rem, 2.4vw, 1.8rem);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.outreach-path:hover {
    border-color: rgba(99, 91, 255, 0.4);
    box-shadow: 0 8px 28px -10px rgba(99, 91, 255, 0.2);
    transform: translateY(-2px);
}

.outreach-path-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outreach-path-icon--purple { background: rgba(99, 91, 255, 0.1); color: #635bff; }
.outreach-path-icon--amber  { background: rgba(234, 88, 12, 0.08); color: #ea580c; }
.outreach-path-icon--teal   { background: rgba(13, 148, 136, 0.1); color: #0d9488; }

.outreach-path strong {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

.outreach-path p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-sec);
    flex: 1;
}

.outreach-path-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.01em;
    padding-top: 0.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.outreach-path-link:hover { text-decoration: underline; }

.process-flow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.process-step { padding: 1.6rem; }
.process-step:nth-child(1), .process-step:nth-child(7) { grid-column: span 2; }
.process-step:nth-child(3), .process-step:nth-child(5) { grid-column: span 2; }
.process-step-body { display: grid; gap: 0.45rem; }
.process-step-num { color: var(--primary); font-family: var(--font-heading); font-size: 0.82rem; font-weight: 800; }
.process-step-body h3 { font-size: 1.18rem; }
.process-step-body p { margin: 0; color: var(--text-sec); font-size: 0.96rem; line-height: 1.62; }
.process-connector { display: none; }

.process-card {
    margin-top: 2rem;
    padding: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.process-step-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.process-step-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--border-light);
}
.process-step-list li:first-child { padding-top: 0; }
.process-step-list li:last-child { padding-bottom: 0; border-bottom: none; }

.step-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
}

.process-step-text strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}
.process-step-text p {
    margin: 0;
    color: var(--text-sec);
    line-height: 1.6;
}

.section-image-wrapper { max-width: 1000px; margin: 3.5rem auto 0; padding: 0.75rem; overflow: hidden; }
.section-dashboard-img { width: 100%; border-radius: var(--radius-sm); }
.process-note { max-width: 760px; margin: 2rem auto 0; padding: 1.35rem 1.5rem; text-align: center; }
.process-note p { margin: 0; }
.process-note strong { color: var(--text-main); }

.ops-walkthrough {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
    max-width: 1040px;
    margin: 3.5rem auto 0;
    padding: clamp(1rem, 2.2vw, 1.35rem);
    border: 1px solid rgba(219, 228, 238, 0.86);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 54px -44px rgba(15, 23, 42, 0.54);
}

.ops-walkthrough-copy {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 360px;
    padding: clamp(1.35rem, 3vw, 2rem);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
        radial-gradient(circle at 20% 12%, rgba(99,91,255,0.28), transparent 34%),
        var(--ops-surface);
    background-size: 34px 34px, 34px 34px, auto, auto;
    color: var(--text-light-muted);
}

.ops-walkthrough-copy h3 {
    max-width: 9ch;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
}

.ops-walkthrough-copy p {
    margin: 0;
    color: var(--text-light-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.ops-panel {
    min-height: 220px;
    padding: clamp(1.1rem, 2vw, 1.35rem);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #ffffff;
}

.ops-panel-safety {
    grid-column: 2 / 4;
    min-height: auto;
    background: linear-gradient(135deg, #111827, #202020);
    color: var(--text-light);
}

.ops-panel-safety .ops-panel-top { border-bottom-color: rgba(255,255,255,0.1); }
.ops-panel-safety .ops-panel-top span, .ops-panel-safety p { color: var(--text-light-muted); }
.ops-panel-safety .ops-panel-top strong, .ops-panel-safety strong { color: #ffffff; }
.safety-indicator { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.8rem; }
.safety-indicator span { width: 0.78rem; height: 0.78rem; border-radius: 50%; background: #86efac; box-shadow: 0 0 0 6px rgba(134,239,172,0.12); }
.ops-panel-safety p { margin: 0; font-size: 0.95rem; }

.ops-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-light);
}

.ops-panel-top span,
.brief-fields dt,
.message-tags span,
.handoff-row strong {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
}

.ops-panel-top span,
.brief-fields dt { color: var(--text-muted); }
.ops-panel-top strong { color: var(--primary); font-family: var(--font-heading); font-size: 0.86rem; }
.brief-fields { display: grid; gap: 0.85rem; }
.brief-fields div { display: grid; gap: 0.18rem; }
.brief-fields dd { margin: 0; color: var(--text-main); font-size: 0.94rem; line-height: 1.45; }
.message-card { padding: 1rem; border-radius: var(--radius-sm); background: #f8fafc; }
.message-card p { margin: 0; color: var(--text-main); font-size: 0.98rem; line-height: 1.62; }
.message-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.9rem; }
.message-tags span { padding: 0.28rem 0.55rem; border-radius: var(--radius-pill); background: var(--primary-soft); color: var(--primary); }
.pace-bars { display: flex; align-items: end; gap: 0.42rem; height: 108px; margin: 1.3rem 0 1rem; }
.pace-bars i { flex: 1; min-width: 0.65rem; border-radius: var(--radius-pill) var(--radius-pill) 4px 4px; background: linear-gradient(180deg, var(--primary), #a5b4fc); }
.ops-panel-pace p { margin: 0; color: var(--text-sec); font-size: 0.95rem; line-height: 1.55; }
.handoff-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); color: var(--text-sec); font-size: 0.94rem; }
.handoff-row:last-child { border-bottom: 0; }
.handoff-row strong { color: var(--text-main); white-space: nowrap; }

.deliverables-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: start;
}

.deliverables-copy {
    position: sticky;
    top: 96px;
}

.deliverables-copy p,
.built-for-header p {
    max-width: 62ch;
    margin-bottom: 1.4rem;
    color: var(--text-sec);
    line-height: 1.7;
}

.deliverables-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    padding: clamp(1rem, 2.5vw, 1.35rem);
    background: rgba(255, 255, 255, 0.82);
}

.deliverable-row {
    position: relative;
    padding: clamp(1.1rem, 2.4vw, 1.45rem);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #ffffff;
}

.deliverable-row:nth-child(1), .deliverable-row:nth-child(6) { grid-column: span 2; }
.deliverable-row:last-child { border-bottom: 1px solid var(--border-light); }

.deliverable-row h3 {
    margin-bottom: 0.35rem;
    font-size: 1.14rem;
}

.deliverable-row p {
    margin: 0;
    color: var(--text-sec);
    font-size: 0.98rem;
    line-height: 1.62;
}

.protocol-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.protocol-copy p {
    max-width: 58ch;
    color: var(--text-light-muted);
    line-height: 1.76;
}

.safety-board {
    max-width: 520px;
    margin-top: 2rem;
    padding: clamp(1.25rem, 3vw, 1.7rem);
    border: 1px solid var(--surface-dark-border);
    border-radius: 24px;
}

.safety-board > strong {
    display: block;
    margin-bottom: 1rem;
    color: var(--surface-dark-text);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.safety-board ul {
    display: grid;
    gap: 0.78rem;
    list-style: none;
}

.safety-board li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--surface-dark-muted);
    font-size: 0.96rem;
    line-height: 1.45;
}

.safety-board li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: #86efac;
}

.protocol-list {
    display: grid;
    gap: 0.75rem;
}

.protocol-row {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 1rem;
    align-items: start;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-sm);
    background: rgba(40, 40, 40, 0.82);
    transition: border-color 0.24s var(--ease), transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.protocol-row:hover { transform: translateY(-3px); }

.protocol-row strong {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    line-height: 1.35;
}

.protocol-row span {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.built-for-header {
    max-width: 820px;
    margin: 0 0 3rem;
}

.audience-split {
    display: grid;
    grid-template-columns: 0.92fr 1.16fr 0.92fr;
    gap: 1rem;
    align-items: stretch;
}

.audience-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.audience-panel-featured {
    border-color: rgba(99, 91, 255, 0.45);
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
}

.proof-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    margin-top: clamp(1.25rem, 3vw, 2rem);
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(219, 228, 238, 0.9);
    border-radius: 18px;
    background:
        radial-gradient(circle at 84% 20%, rgba(99, 91, 255, 0.12), transparent 30%),
        #ffffff;
}

.proof-panel h3 { max-width: 20ch; margin-bottom: 0.9rem; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.proof-panel p { margin: 0; color: var(--text-sec); line-height: 1.68; }
.proof-dashboard { padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: #f8fafc; }
.proof-dashboard-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; color: var(--text-muted); font-family: var(--font-heading); font-size: 0.85rem; font-weight: 800; }
.proof-dashboard-top strong { color: var(--success); }
.proof-dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.proof-metric { display: grid; gap: 0.75rem; padding: 1rem; border: 1px solid var(--border-light); border-radius: var(--radius-sm); background: #ffffff; }
.proof-metric span { color: var(--text-muted); font-family: var(--font-heading); font-size: 0.8rem; font-weight: 800; }
.proof-metric strong { color: var(--text-main); font-family: var(--font-heading); font-size: 2rem; line-height: 1; }
.proof-metric-dark { grid-column: span 2; background: var(--bg-ink); border-color: var(--bg-ink); }
.proof-metric-dark span, .proof-metric-dark p { color: var(--text-light-muted); }
.proof-metric-dark strong { color: #ffffff; }

.audience-panel > span {
    width: fit-content;
    margin-bottom: 1.1rem;
    padding: 0.34rem 0.68rem;
    border-radius: var(--radius-pill);
    background: var(--primary-soft);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
}

.audience-panel h3 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.audience-panel p {
    flex: 1;
    margin-bottom: 1.35rem;
    color: var(--text-sec);
    font-size: 1rem;
    line-height: 1.65;
}

.audience-panel a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 800;
}

.audience-panel a span { transition: transform 0.2s var(--ease); }
.audience-panel a:hover { color: var(--primary); }
.audience-panel a:hover span { transform: translateX(4px); }

.comparison h2, .comparison h3 { color: #ffffff; }
.comparison .process-lead, .comparison-footnote { color: var(--text-light-muted); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 980px; margin: 2rem auto 0; }
.comparison-column {
    position: relative;
    min-height: 100%;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-color: var(--border-dark);
    background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        var(--ops-surface-raised);
    background-size: 34px 34px;
}
.comparison-us { border-color: rgba(99, 91, 255, 0.52); }
.comparison-column h3 { padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border-dark); color: #ffffff; }
.comparison-column ul { list-style: none; }
.comparison-column li { position: relative; padding: 0.62rem 0 0.62rem 1.7rem; border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--text-light); font-size: 1rem; }
.comparison-column li:last-child { border-bottom: 0; }
.comparison-column li::before { content: ""; position: absolute; left: 0; top: 0.85rem; width: 0.48rem; height: 0.48rem; border-radius: 50%; background: var(--danger); }
.comparison-us li::before { background: var(--primary); }
.comparison-footnote { max-width: 780px; margin: 2.25rem auto 0; text-align: center; font-size: 1rem; line-height: 1.66; }
.comparison-footnote a { color: #7ddbd1; }

.pricing-grid { display: grid; grid-template-columns: 0.94fr 1.12fr 0.94fr; gap: 1.2rem; align-items: stretch; }
.pricing-card { display: flex; }
.pricing-card-inner { display: flex; flex-direction: column; width: 100%; position: relative; box-shadow: var(--shadow-sm); }
.pricing-card-inner.winner { border: 2px solid var(--primary); background: linear-gradient(180deg, #ffffff 0%, #f3f5ff 100%); box-shadow: 0 18px 56px -34px rgba(99,91,255,0.72), 0 0 0 6px rgba(99,91,255,0.08); transform: translateY(-12px); }
.badge, .blog-card-label { display: inline-flex; width: fit-content; align-items: center; padding: 0.3rem 0.75rem; border-radius: var(--radius-pill); background: var(--primary); color: #ffffff; font-family: var(--font-heading); font-size: 0.78rem; font-weight: 800; }
.badge { position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%); }
.pricing-card h3 { font-size: 1.45rem; margin-bottom: 0.5rem; text-wrap: balance; }
.pricing-header h2 { text-wrap: balance; }
.price { margin-bottom: 1.5rem; color: var(--text-main); font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.price span { display: inline-block; color: var(--text-sec); font-size: 1rem; font-weight: 600; letter-spacing: 0; }
.price-note { margin: -1rem 0 1.25rem; color: var(--text-muted); font-size: 0.9rem; font-weight: 700; }
.pricing-card ul { flex: 1; list-style: none; margin-bottom: 1.75rem; }
.pricing-card li { display: flex; align-items: flex-start; gap: 0.7rem; padding: 0.72rem 0; border-bottom: 1px solid var(--border-light); font-size: 1rem; }
.pricing-card li::before { content: ""; flex: 0 0 0.5rem; width: 0.5rem; height: 0.5rem; margin-top: 0.55rem; border-radius: 50%; background: var(--success); }
.btn-pricing { width: 100%; }
.btn-pricing-outline { background: transparent; color: var(--text-main); border-color: var(--border); }
.btn-pricing-outline:hover { background: var(--primary-soft); color: var(--primary); border-color: var(--primary); }

.blog-list .container { display: grid; gap: 2.5rem; }
.blog-grid-heading { display: flex; align-items: center; gap: 1rem; }
.blog-grid-heading h2 { white-space: nowrap; color: var(--text-muted); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-list .blog-grid-heading h2 { color: rgba(255, 255, 255, 0.58); }
.blog-grid-line { flex: 1; height: 1px; background: var(--border); }
.blog-list .blog-grid-line { background: rgba(255, 255, 255, 0.12); }
.resources-intro { max-width: 720px; margin-top: -1.35rem; color: var(--text-light-muted); font-size: 1.02rem; line-height: 1.66; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.blog-card { overflow: hidden; }
.blog-card-link { display: flex; flex-direction: column; height: 100%; padding: 1.65rem; color: inherit; }
.blog-date, .blog-meta { color: var(--text-muted); font-family: var(--font-heading); font-size: 0.86rem; font-weight: 800; }
.blog-date { margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-list .blog-date { color: rgba(255, 255, 255, 0.54); }
.blog-card h3 { margin-bottom: 0.85rem; font-size: 1.22rem; }
.blog-card p { flex: 1; margin-bottom: 1.25rem; color: var(--text-sec); font-size: 0.98rem; }
.blog-read { margin-top: auto; color: var(--primary); font-family: var(--font-heading); font-weight: 800; }
.blog-list .blog-read { color: #7ddbd1; }
.blog-hero { padding-top: 128px; }
.blog-article { padding: 120px 0 60px; }
.blog-header { max-width: 800px; margin: 0 auto 3rem; text-align: center; }
.blog-header h1 { font-size: clamp(2.35rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.blog-content { max-width: 760px; margin: 0 auto; padding: clamp(1.5rem, 4vw, 3.25rem); }
.blog-content h2 { margin: 2.5rem 0 1rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--border-light); font-size: 1.85rem; }
.blog-content p, .blog-content li { color: var(--text-sec); }
.blog-content .comparison-column h3 { color: #ffffff; }
.blog-content .comparison-column li { color: var(--text-light); }
.blog-content ul { padding-left: 1.25rem; margin: 1rem 0; }
.blog-cta { margin-top: 3rem; padding: 2rem; text-align: center; background: var(--bg-soft); }
.blog-illustration { margin: 2rem 0; }
.blog-figure { margin: 2rem 0; }
.blog-figure figcaption {
    max-width: 66ch;
    margin: 0.85rem auto 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-index-page {
    background: #ffffff;
}

.blog-index-page .blog-nav {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    border-bottom: 1px solid #eef2f6;
    background: var(--surface-nav-light);
    backdrop-filter: blur(var(--blur-sticky));
    -webkit-backdrop-filter: blur(var(--blur-sticky));
}

.blog-nav-inner,
.blog-wrap {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 7vw, 10rem);
}

.blog-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.blog-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}

.blog-brand img {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--primary);
}

.blog-brand-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(99, 91, 255, 0.1);
    border: 1px solid rgba(99, 91, 255, 0.2);
    border-radius: 5px;
    padding: 0.1em 0.45em 0.12em;
    vertical-align: middle;
    margin-left: 0.3em;
    line-height: 1.6;
}

.blog-nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
}

.blog-search,
.blog-home-link {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-main);
}

.blog-search svg,
.blog-home-link svg { width: 22px; height: 22px; }

.blog-search:hover,
.blog-home-link:hover {
    background: #f8fafc;
    color: var(--primary);
}

.blog-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    min-height: 46px;
    padding: 0.75rem 1.05rem;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.blog-contact:hover {
    background: var(--primary-hover);
    color: #ffffff;
}

.blog-hero-clean {
    padding: clamp(1.75rem, 3vw, 2.75rem) 0 clamp(1.5rem, 2.5vw, 2.25rem);
    background: #ffffff;
}

.blog-hero-clean h1 {
    max-width: 13.5ch;
    margin: 0;
    font-size: clamp(4.25rem, 7.2vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.blog-hero-clean p {
    max-width: 760px;
    margin: 1.65rem 0 0;
    color: var(--text-sec);
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    line-height: 1.46;
}

.blog-index-page .blog-list {
    width: 100%;
    margin: 0;
    padding: 0 0 clamp(5rem, 8vw, 8rem);
    border: 0;
    border-radius: 0;
    background: #ffffff;
    color: var(--text-sec);
    overflow: visible;
}

.blog-index-page .blog-list::before {
    display: none;
}

.blog-index-page .blog-list h2,
.blog-index-page .blog-list h3 {
    color: var(--text-main);
}

.blog-index-page .blog-list p,
.blog-index-page .blog-list .blog-card p {
    color: var(--text-sec);
}

.blog-index-page .blog-list .blog-date {
    color: var(--text-muted);
}

.blog-index-page .blog-list .blog-read {
    color: var(--primary);
}

.blog-tags {
    display: flex;
    margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.blog-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0.75rem 1.08rem;
    border-radius: var(--radius-pill);
    background: var(--primary-soft);
    color: var(--primary-hover);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.blog-index-page .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.2vw, 1.7rem);
    max-width: 100%;
}

.blog-index-page .blog-grid-editorial {
    align-items: stretch;
}

.blog-index-page .blog-card,
.blog-index-page .blog-card-featured {
    border: 0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: none;
}

.blog-index-page .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.blog-index-page .blog-card-link {
    padding: 0;
    border-radius: inherit;
}

.blog-card-art {
    position: relative;
    height: 184px;
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(99, 91, 255, 0.12), transparent 42%),
        #f1f4ff;
}

.blog-card-art::before,
.blog-card-art::after,
.blog-card-art span {
    content: "";
    position: absolute;
    display: block;
}

.blog-card-art::before {
    inset: auto -8% -28% auto;
    width: 46%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
}

.blog-card-art::after {
    left: 9%;
    top: 20%;
    width: 42%;
    height: 42%;
    border: 2px solid rgba(15, 23, 42, 0.12);
    border-radius: 18px;
    transform: rotate(-8deg);
}

.blog-card-art span:nth-child(1) {
    right: 16%;
    top: 20%;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
    transform: rotate(7deg);
}

.blog-card-art span:nth-child(2) {
    left: 15%;
    bottom: 19%;
    width: 34%;
    height: 10px;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.16);
}

.blog-card-art span:nth-child(3) {
    left: 15%;
    bottom: 30%;
    width: 24%;
    height: 10px;
    border-radius: var(--radius-pill);
    background: rgba(99, 91, 255, 0.5);
}

.blog-card-art-recovery { background: linear-gradient(135deg, #fff7ed, #eef2ff); }
.blog-card-art-ops { background: linear-gradient(135deg, #f8fafc, #e0e7ff); }
.blog-card-art-warmup { background: linear-gradient(135deg, #ecfdf5, #eef2ff); }
.blog-card-art-compare { background: linear-gradient(135deg, #fef2f2, #eef2ff); }
.blog-card-art-limit { background: linear-gradient(135deg, #eff6ff, #f8fafc); }
.blog-card-art-pricing { background: linear-gradient(135deg, #f5f3ff, #ecfdf5); }

.blog-index-page .blog-card-featured-content,
.blog-index-page .blog-card .blog-date,
.blog-index-page .blog-card h2,
.blog-index-page .blog-card p,
.blog-index-page .blog-card .blog-read {
    margin-inline: 0.15rem;
}

.blog-index-page .blog-card-featured-content,
.blog-index-page .blog-card-link > .blog-date {
    margin-top: 1.15rem;
}

.blog-index-page .blog-card-label {
    margin-bottom: 0.75rem;
    background: var(--text-main);
}

.blog-index-page .blog-card h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.blog-index-page .blog-card p {
    margin-bottom: 1.05rem;
    font-size: 0.98rem;
    line-height: 1.55;
}

.blog-index-page .blog-grid-heading {
    margin-top: clamp(4rem, 7vw, 6rem);
    margin-bottom: 1.35rem;
}

.blog-index-page .blog-grid-heading h3 {
    white-space: nowrap;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-index-page .blog-grid-line {
    background: var(--border);
}

.blog-index-page .blog-grid-compact .blog-card {
    padding: 1.3rem;
    border: 1px solid var(--border);
}

.blog-index-page .blog-grid-compact .blog-card-link {
    height: 100%;
}

.blog-index-page .blog-grid-compact .blog-card:hover {
    border-color: rgba(99, 91, 255, 0.24);
}

.faq h2 { text-align: center; }
.faq-list { max-width: 840px; margin: 2rem auto 0; padding-inline: 1.4rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 64px;
    padding: 1.25rem 0;
    border: 0;
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-align: left;
}
.faq-trigger:hover { color: var(--primary); }
.faq-icon { position: relative; width: 24px; height: 24px; flex: 0 0 24px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 15px; height: 2px; border-radius: 2px; background: currentColor; transform: translate(-50%, -50%); transition: transform 0.22s var(--ease), opacity 0.22s var(--ease); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%); opacity: 0; }
.faq-answer { display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-answer-inner { padding: 0 2rem 1.4rem 0; color: var(--text-sec); opacity: 0; transform: translateY(-4px); transition: opacity 0.22s var(--ease), transform 0.22s var(--ease); }
.faq-item.open .faq-answer-inner { opacity: 1; transform: translateY(0); }
.faq-answer a { font-weight: 800; }

.contact {
    position: relative;
    width: 100%;
    margin: 0;
    padding: clamp(108px, 12vw, 168px) 0 clamp(96px, 10vw, 140px);
    border-radius: 0;
    border: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 50% 70%, rgba(99, 91, 255, 0.46), transparent 34%),
        radial-gradient(circle at 18% 18%, rgba(255, 184, 107, 0.12), transparent 24%),
        linear-gradient(180deg, #050510 0%, #070715 46%, #100a3b 100%);
    background-size: 96px 96px, 96px 96px, auto, auto, auto;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 5, 16, 0.78) 0%, rgba(5, 5, 16, 0.12) 34%, rgba(5, 5, 16, 0.66) 100%),
        radial-gradient(ellipse at center, transparent 0%, transparent 45%, rgba(5, 5, 16, 0.72) 100%);
}

.contact::after {
    content: "";
    position: absolute;
    right: -3vw;
    bottom: 0;
    width: min(28vw, 430px);
    height: min(25vw, 350px);
    background: #090816;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    opacity: 0.74;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-inner {
    position: relative;
    isolation: isolate;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.contact-inner::before {
    display: none;
}
.contact-badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; padding: 0.4rem 0.8rem; border: 1px solid rgba(134, 239, 172, 0.22); border-radius: var(--radius-pill); background: rgba(34,197,94,0.1); color: #b7f7cd; font-family: var(--font-heading); font-size: 0.84rem; font-weight: 800; }
.contact-badge-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #22c55e; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.65; transform: scale(1.25); } }
.contact h2 { max-width: 760px; margin-inline: auto; color: #ffffff; font-size: clamp(3rem, 6.4vw, 5rem); line-height: 1; letter-spacing: -0.04em; }
.contact-lead { max-width: 640px; margin: 1.35rem auto 2rem; color: rgba(255,255,255,0.84); font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.55; }
.blog-cta-inner { max-width: 820px; }
.trust-boundary {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.trust-boundary span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.44rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.contact-options { display: flex; justify-content: center; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.15rem; }
.contact-btn, .contact-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.72rem;
    min-height: 58px;
    padding: 1rem 1.4rem;
    border-radius: var(--radius-pill);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: none;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
    transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.contact-btn svg, .contact-btn-primary svg {
    width: 20px;
    height: 20px;
    padding: 0;
    color: currentColor;
}
.contact-btn-primary {
    position: relative;
    min-width: auto;
    justify-content: center;
    padding-inline: 1.7rem;
    background: #050510;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 42px -24px rgba(0, 0, 0, 0.92);
}

.contact-btn-primary svg {
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.contact-btn-primary::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0.8;
    transform: rotate(45deg);
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.contact-btn:hover { border-color: rgba(255,255,255,0.24); background-color: rgba(255,255,255,0.09); color: #ffffff; transform: translateY(-1px); }
.contact-btn-primary:hover {
    background: #111126;
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 20px 44px -24px rgba(0, 0, 0, 0.95);
}
.contact-btn-primary:hover::after { opacity: 1; transform: translateX(2px) rotate(45deg); }
.contact-trust { display: flex; justify-content: center; gap: 0.6rem 1.1rem; flex-wrap: wrap; padding-top: 0; border-top: 0; }
.contact-trust-item { display: inline-flex; align-items: center; gap: 0.45rem; color: #ffffff; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; }
.contact-trust-item svg { color: #86efac; }

.footer-cta {
    position: relative;
    width: 100%;
    margin: 0;
    padding: clamp(72px, 10vw, 120px) 0 clamp(64px, 8vw, 100px);
    border-radius: 28px 28px 0 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, rgba(99, 91, 255, 0.55), transparent 40%),
        radial-gradient(circle at 20% 20%, rgba(255, 184, 107, 0.1), transparent 24%),
        linear-gradient(180deg, #0a0a1a 0%, #0f0f2e 46%, #1a1040 100%);
    background-size: 96px 96px, 96px 96px, auto, auto, auto;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}
.footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 5, 16, 0.85) 0%, rgba(5, 5, 16, 0.15) 40%, rgba(5, 5, 16, 0.75) 100%),
        radial-gradient(ellipse at center, transparent 0%, transparent 45%, rgba(5, 5, 16, 0.8) 100%);
}
.footer-cta .container { position: relative; z-index: 1; }
.footer-cta-inner { max-width: 800px; margin: 0 auto; }
.footer-cta h2 { max-width: 720px; margin-inline: auto; color: #ffffff; font-size: clamp(2.5rem, 5.4vw, 4.2rem); line-height: 1.05; letter-spacing: -0.04em; }
.footer-cta-lead { max-width: 620px; margin: 1.25rem auto 2rem; color: rgba(255,255,255,0.82); font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.55; }
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.72rem;
    min-height: 56px;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    color: #ffffff;
    background: var(--surface-cta-button);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-cta);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-cta-btn:hover { background: var(--surface-cta-button-hover); border-color: rgba(255, 255, 255, 0.25); color: #ffffff; box-shadow: var(--shadow-cta-hover); transform: translateY(-1px); }
.footer-cta-trust {
    display: flex;
    justify-content: center;
    gap: 0.6rem 1.4rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
}
.footer-cta-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-cta-trust span::before { content: "•"; color: rgba(255,255,255,0.45); }
.footer-cta-trust span:first-child::before { display: none; }

.footer { padding: clamp(3rem, 6vw, 5rem) 0 3rem; background: #050510; color: var(--text-light-muted); }
.footer-layout { display: grid; grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: start; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { max-width: 34ch; margin: 1rem 0 0; color: var(--text-light-muted); font-size: 0.95rem; line-height: 1.7; }
.footer-logo { display: inline-flex; align-items: center; gap: 0.7rem; color: #ffffff; font-family: var(--font-heading); font-size: 1.08rem; font-weight: 800; letter-spacing: -0.03em; }
.footer-logo img { width: 38px; height: 38px; border-radius: 10px; background: var(--primary); }
.footer-nav { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.footer-nav-simple { display: block; margin-bottom: 1.5rem; }
.footer-nav-simple ul { display: flex; justify-content: center; gap: 0.45rem 1.5rem; flex-wrap: wrap; padding: 0; margin: 0; }
.footer-nav-label { margin-bottom: 0.8rem; color: #ffffff; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; letter-spacing: -0.01em; }
.footer-nav ul { display: grid; gap: 0.28rem; list-style: none; }
.footer-nav.footer-nav-simple ul { display: flex; gap: 0.45rem 1.5rem; }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; padding-block: 0.35rem; color: var(--text-light-muted); font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; }
.footer-nav a:hover { color: #ffffff; }
.footer-bottom { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 2rem; align-items: start; padding-top: 1.5rem; }
.footer-copy { margin: 0; color: var(--text-light); white-space: nowrap; }
.footer-disclaimer { max-width: 860px; margin: 0; color: var(--text-light-muted); font-size: 0.82rem; line-height: 1.62; }
.footer-disclaimer-centered { margin: 0.65rem auto 0; text-align: center; }

.intro-block h2 { margin-bottom: 1rem; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.intro-block p { max-width: 70ch; color: var(--text-sec); line-height: 1.75; }
.what-you-get .use-cases-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.before-after-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto 2rem; }
.before-card { border-color: rgba(220, 38, 38, 0.28); background: #fffafa; }
.after-card { border-color: rgba(99, 91, 255, 0.34); background: #f8faff; }
.before-card ul, .after-card ul { list-style: none; margin-top: 1rem; }
.before-card li, .after-card li { padding: 0.5rem 0; border-bottom: 1px solid var(--border-light); }
.before-after-cta { text-align: center; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); animation: reveal-fallback 0s 3s forwards; }
.reveal.visible { opacity: 1; transform: translateY(0); animation: none; }
@keyframes reveal-fallback { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1180px) {
    .hero, .hero-product, .facts-strip, .belief-statement, .problem, .process-visual, .what-you-get, .safety-protocol, .comparison, .built-for, .before-after, .pricing, .blog-list, .faq, .intro-block, .contact, .footer-cta { width: min(100%, calc(100% - 2rem)); }
    .contact { width: 100%; }
    .blog-index-page .blog-list { width: 100%; }
}

@media (max-width: 992px) {
    .problem-layout, .deliverables-layout, .protocol-layout, .comparison-grid, .audience-split, .pricing-grid, .before-after-grid, .proof-panel { grid-template-columns: 1fr; }
    .deliverables-copy { position: static; }
    .ops-walkthrough { grid-template-columns: 1fr 1fr; }
    .ops-walkthrough-copy { grid-column: 1 / -1; grid-row: auto; min-height: auto; }
    .ops-walkthrough-copy h3 { max-width: none; }
    .ops-panel-safety { grid-column: 1 / -1; }
    .footer-layout, .footer-bottom { grid-template-columns: 1fr; }
    .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-flow { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(1), .process-step:nth-child(3), .process-step:nth-child(5), .process-step:nth-child(7) { grid-column: auto; }
    .console-grid { grid-template-columns: 1fr; }
    .console-inbox { grid-column: auto; }
    .pricing-card-inner.winner { transform: none; }
    .hero, .hero-product { width: min(100%, calc(100% - 2rem)); }
    .blog-index-page .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .blog-hero-clean h1 { max-width: 12.5ch; }
}


@media (max-width: 900px) {
    .navbar, .navbar.scrolled { min-height: 72px; padding: 8px 0.75rem; }
    .nav-container, .navbar.scrolled .nav-container { width: 100%; min-height: 56px; }
    .logo span { display: inline; }
    .nav-toggle { display: grid; }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0.75rem;
        right: 0.75rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        padding: 0.8rem;
        border-radius: var(--radius-lg);
        background: var(--bg-ink);
        box-shadow: var(--shadow-nav);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.22s var(--ease), opacity 0.22s var(--ease), visibility 0.22s var(--ease);
    }
    .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-links a, .btn-nav, .nav-links .btn-nav { width: 100%; }
}

@media (max-width: 768px) {
    body { font-size: 1.05rem; }
    .hero { margin-top: -72px; padding: 124px 0 54px; min-height: auto; }
    .hero-product { padding: 1rem 0 2rem; }
    .hero h1 { font-size: clamp(2.55rem, 12vw, 4.1rem); line-height: 1.04; }
    .blog-nav-inner, .blog-wrap { padding-inline: 1rem; }
    .blog-nav-inner { min-height: 68px; }
    .blog-brand span { font-size: 1rem; }
    .blog-brand img { width: 30px; height: 30px; }
    .blog-nav-actions { gap: 0.55rem; }
    .blog-search { width: 44px; height: 44px; }
    .blog-contact { min-height: 44px; padding: 0.65rem 0.82rem; font-size: 0.86rem; }
    .blog-hero-clean { padding: 2rem 0 1.75rem; }
    .blog-hero-clean h1 { max-width: 10.8ch; font-size: clamp(3rem, 16vw, 4.65rem); }
    .blog-hero-clean p { font-size: 1.05rem; line-height: 1.55; }
    .blog-index-page .blog-list { padding-bottom: 4rem; }
    .blog-index-page .blog-grid { grid-template-columns: 1fr; }
    .blog-card-art { height: 176px; }
    .hero-cta, .hero-proof, .contact-options { flex-direction: column; }
    .hero-proof { text-align: center; }
    .facts-list { align-items: flex-start; text-align: left; }
    .facts-list li:not(:last-child)::after { display: none; }
    .belief-statement p { font-size: clamp(2.25rem, 10vw, 3.6rem); }
    .process-flow { grid-template-columns: 1fr; }
    .ops-walkthrough { grid-template-columns: 1fr; }
    .deliverables-list, .proof-dashboard-grid, .inbox-preview { grid-template-columns: 1fr; }
    .deliverable-row:nth-child(1), .deliverable-row:nth-child(6), .proof-metric-dark { grid-column: auto; }
    .ops-panel { min-height: auto; }
    .specialist-row { grid-template-columns: auto 1fr; }
    .status-pill { grid-column: 2; justify-self: start; }
    .console-topbar { align-items: flex-start; flex-direction: column; }
    .faq-list { padding-inline: 1rem; }
    .protocol-row { grid-template-columns: 1fr; }
    .contact-btn, .contact-btn-primary, .btn-primary, .btn-pricing, .btn-text, .footer-cta-btn { width: 100%; }
    .outreach-paths { grid-template-columns: 1fr; }
    .hub-tree-lines { display: none; }
    .navbar.scrolled,
    .blog-index-page .blog-nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@media (max-width: 480px) {
    .container, .container-wide, .container-narrow { padding-inline: 1rem; }
    .hero, .hero-product { width: calc(100% - 1rem); }
    .hero h1 { font-size: clamp(2.35rem, 12.8vw, 3.25rem); }
    .hero-kicker { font-size: 0.82rem; }
    .belief-statement, .problem, .process-visual, .what-you-get, .safety-protocol, .comparison, .built-for, .before-after, .pricing, .blog-list, .faq, .intro-block, .contact, .footer-cta { width: calc(100% - 1rem); border-radius: 20px; }
    .contact { width: 100%; border-radius: 0; }
    .blog-index-page .blog-list { width: 100%; border-radius: 0; }
    .blog-index-page .blog-card-link { padding: 0; }
    .problem-item, .feature, .use-case, .audience-panel, .pricing-card-inner, .before-card, .after-card, .process-step, .comparison-column, .blog-card-link, .ops-panel { padding: 1.35rem; }
    .deliverables-list { padding: 0.4rem; }

    .console-dark strong { font-size: 3.2rem; }
    .footer-nav { grid-template-columns: 1fr; }
    .footer-copy { white-space: normal; }
}

/* === Homepage pivot additions === */

.hero-proof { max-width: 34rem; }
.hero-proof .proof-faces { display: none; }

.profile-card-mockup {
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(1rem, 2.5vw, 1.4rem);
    border: 1px solid rgba(219, 228, 238, 0.92);
    border-radius: 22px;
    background:
        linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.88)),
        radial-gradient(circle at 18% 12%, rgba(99,91,255,0.14), transparent 30%),
        #ffffff;
    box-shadow: 0 24px 54px -40px rgba(15, 23, 42, 0.44);
}

.profile-mockup-top,
.profile-health-row,
.tool-badges-grid,
.calc-type-switch,
.calc-stepper,
.calc-output,
.support-stats,
.support-stat,
.resource-grid,
.profiles-grid,
.pain-compare-grid {
    display: grid;
}

.profile-mockup-top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.profile-mockup-body {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1rem;
    padding-top: 1rem;
}

.profile-mockup-main,
.profile-mockup-panel,
.profile-type-card,
.pain-compare-card,
.support-stat,
.use-case-card,
.resource-card,
.calc-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #ffffff;
}

.profile-mockup-main,
.profile-mockup-panel {
    padding: clamp(1.25rem, 2.6vw, 1.8rem);
}

.profile-mockup-main {
    background:
        radial-gradient(circle at top left, rgba(99,91,255,0.12), transparent 28%),
        #ffffff;
}

.profile-avatar-stack {
    display: flex;
    margin-bottom: 1.1rem;
}

.profile-avatar-stack .avatar {
    margin-right: -0.55rem;
    border: 3px solid #ffffff;
}

.profile-mockup-main h2 {
    max-width: 16ch;
    margin-bottom: 0.85rem;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.profile-mockup-main p {
    max-width: 48ch;
    margin: 0 0 1.2rem;
    color: var(--text-sec);
    line-height: 1.68;
}

.profile-health-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.profile-health-row span,
.profile-tier-label,
.tool-badges-grid span,
.use-case-card > span,
.calc-discount-note,
.calc-output span {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
}

.profile-health-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-pill);
    background: var(--primary-soft);
    color: var(--primary);
    text-align: center;
}

.profile-mockup-panel span:first-child {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 800;
}

.profile-mockup-panel ul,
.profile-type-card ul,
.pain-compare-card ul {
    list-style: none;
}

.profile-mockup-panel li,
.profile-type-card li,
.pain-compare-card li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.98rem;
}

.profile-mockup-panel li:last-child,
.profile-type-card li:last-child,
.pain-compare-card li:last-child {
    border-bottom: 0;
}

.profile-mockup-panel strong,
.pain-compare-card h3,
.support-stat strong,
.resource-card h3,
.use-case-card h3,
.profile-type-card h3,
.calc-output strong {
    color: var(--text-main);
}

.overview-grid .feature { min-height: 100%; }

/* ── #what-is: "What is LinkedRental?" ─────────────────────────────────────
   Timeline race panel + asymmetric Day-1 / notes layout. All scoped to
   #what-is so nothing on other pages is touched. */

/* ── Timeline panel ── */
#what-is .timeline-panel {
    max-width: 62rem;
    margin: 0 auto 1.5rem;
    padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    background: #23252f;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 28px -16px rgba(0, 0, 0, 0.6);
}
#what-is .timeline-heading {
    margin: 0 0 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--surface-dark-muted);
}
#what-is .timeline-axis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 0 0.6rem 6rem;
    padding-right: 0.5rem;
}
#what-is .timeline-axis span {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.04em;
}
#what-is .timeline-tracks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Each track: label | bar | text outcome+caption */
#what-is .timeline-track {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.5rem;
    align-items: start;
}
#what-is .track-label {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding-top: 0.35rem;
    color: var(--surface-dark-muted);
}
#what-is .track-bar-wrap {
    grid-column: 2;
    grid-row: 1;
    height: 28px;
    border-radius: 4px;
    overflow: visible;
    position: relative;
}
#what-is .track-bar {
    height: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.5rem;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.72s var(--ease);
    position: relative;
    overflow: visible;
}
/* Bars grow in when reveal fires */
#what-is .timeline-panel.visible .track-buy .track-bar {
    transform: scaleX(1);
    transition-delay: 0.05s;
}
#what-is .timeline-panel.visible .track-build .track-bar {
    transform: scaleX(1);
    transition-delay: 0.2s;
}
#what-is .timeline-panel.visible .track-rent .track-bar {
    transform: scaleX(1);
    transition-delay: 0.35s;
}

/* Track widths (proportional to wk3 ban / full 12wk / full+arrow) */
#what-is .track-buy .track-bar-wrap { width: 100%; }
#what-is .track-buy .track-bar {
    width: 24%;
    background: rgba(252, 165, 165, 0.18);
    border: 1px solid rgba(252, 165, 165, 0.35);
}
#what-is .track-build .track-bar-wrap { width: 100%; }
#what-is .track-build .track-bar {
    width: 100%;
    background: rgba(252, 211, 77, 0.12);
    border: 1px solid rgba(252, 211, 77, 0.28);
}
#what-is .track-rent .track-bar-wrap { width: 100%; }
#what-is .track-rent .track-bar {
    width: 100%;
    background: rgba(99, 91, 255, 0.22);
    border: 1px solid rgba(99, 91, 255, 0.55);
    box-shadow: 0 0 18px -4px rgba(99, 91, 255, 0.45);
}

#what-is .track-label-inside {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}
#what-is .track-build .track-label-inside { color: rgba(252, 211, 77, 0.65); }
#what-is .track-rent .track-label-inside { color: rgba(199, 210, 254, 0.85); }

#what-is .track-terminus {
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}
#what-is .track-terminus-ban { color: #fca5a5; }
#what-is .track-terminus-end { color: rgba(252, 211, 77, 0.65); }
#what-is .track-terminus-arrow { color: #c7d2fe; font-size: 0.75rem; }

#what-is .track-text {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}
#what-is .track-outcome {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
}
#what-is .track-buy .track-outcome { color: #fca5a5; }
#what-is .track-build .track-outcome { color: #fcd34d; }
#what-is .track-rent .track-outcome { color: #c7d2fe; }

#what-is .track-caption {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--surface-dark-muted);
}

/* ── Support: asymmetric Day-1 panel + quiet notes ── */
#what-is .support-grid-v2 {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1.25rem;
    max-width: 62rem;
    margin: 0 auto;
    align-items: stretch;
}
#what-is .support-card {
    display: flex;
    flex-direction: column;
    padding: clamp(1.6rem, 3vw, 2.2rem);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    background: #23252f;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 28px -16px rgba(0, 0, 0, 0.6);
    transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
#what-is .support-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 36px -18px rgba(0, 0, 0, 0.72);
}
#what-is .support-card h3 { font-size: 1.28rem; margin: 0 0 0.75rem; color: #ffffff; }
#what-is .support-card p { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--surface-dark-muted); }
#what-is .support-card.is-featured {
    border-color: rgba(99, 91, 255, 0.45);
    background: linear-gradient(180deg, rgba(99, 91, 255, 0.1), rgba(99, 91, 255, 0.02)), #23252f;
}
#what-is .support-card.is-featured:hover { border-color: rgba(99, 91, 255, 0.65); }

#what-is .support-tag {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(99, 91, 255, 0.18);
    color: #c7d2fe;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
#what-is .support-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}
#what-is .support-checklist li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 0.96rem;
    line-height: 1.5;
    color: var(--surface-dark-muted);
}
#what-is .support-checklist strong { color: #ffffff; font-weight: 600; }
#what-is .support-check {
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: #4ade80;
    font-weight: 700;
}
#what-is .support-foot { margin-top: 0.25rem; font-size: 0.92rem; color: var(--surface-dark-muted); opacity: 0.9; }

/* Quiet notes column — no card chrome */
#what-is .support-notes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: clamp(1.2rem, 2.5vw, 1.75rem) clamp(1rem, 2vw, 1.5rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
}
#what-is .support-note { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0.75rem 0; }
#what-is .support-note h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}
#what-is .support-note p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--surface-dark-muted);
}
#what-is .support-note-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
}

/* Price foot */
#what-is .what-is-foot {
    text-align: center;
    margin-top: 2rem;
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 760px) {
    #what-is .timeline-axis { margin-left: 4.5rem; }
    #what-is .timeline-track { grid-template-columns: 4rem 1fr; }
    #what-is .support-grid-v2 { grid-template-columns: 1fr; max-width: 32rem; }
}

/* Fallback: if observer never fires, bars grow in after 3.5s */
@keyframes bar-grow { to { transform: scaleX(1); } }
#what-is .track-bar { animation: bar-grow 0s 3.5s forwards; }
#what-is .timeline-panel.visible .track-bar { animation: none; }

@media (prefers-reduced-motion: reduce) {
    #what-is .track-bar { transform: scaleX(1); transition: none; animation: none; }
    #what-is .support-card { transition: none; }
    #what-is .support-card:hover { transform: none; }
}

.profiles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.profile-type-card {
    padding: clamp(1.4rem, 2.8vw, 2rem);
    box-shadow: var(--shadow-sm);
}

.profile-type-card-featured {
    border-color: rgba(99, 91, 255, 0.42);
    background: linear-gradient(180deg, #ffffff 0%, #f4f6ff 100%);
}

.profile-tier-label,
.use-case-card > span {
    display: inline-flex;
    width: fit-content;
    min-height: 32px;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-pill);
    background: var(--primary-soft);
    color: var(--primary);
}

.profile-type-card h3 {
    margin: 0.9rem 0 0.8rem;
    font-size: 1.6rem;
}

.profile-type-card p,
.use-case-card p,
.resource-card p,
.support-stat span,
.pain-compare-card li,
.calc-copy p {
    color: var(--text-sec);
}

.tool-badges-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
    align-content: start;
}

.tool-badges-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    color: var(--text-main);
    text-align: center;
}

.pain-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.pain-compare-card { padding: clamp(1.4rem, 2.8vw, 2rem); }

.pain-compare-card h3 {
    margin-bottom: 0.9rem;
    color: var(--surface-dark-text);
    font-size: 1.32rem;
}

.pain-compare-card li {
    position: relative;
    justify-content: flex-start;
    padding-left: 1.2rem;
    color: var(--surface-dark-muted);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pain-compare-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--primary);
}

.comparison-table-wrapper {
    margin-top: 2rem;
    overflow-x: auto;
    border: 1px solid var(--surface-dark-border);
    border-radius: 24px;
    background: var(--surface-dark-panel);
    background-size: var(--surface-dark-panel-size);
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.comparison-table thead th {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    background: rgba(17, 17, 17, 0.44);
}

.comparison-table tbody th {
    width: 22%;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
}

.comparison-table td {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.58;
}

.support-layout { align-items: stretch; }

.support-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.support-stat { padding: clamp(1.25rem, 2.4vw, 1.7rem); }

.support-stat strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--surface-dark-text);
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    line-height: 1;
}

.support-stat span {
    display: block;
    color: var(--surface-dark-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.use-case-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.5rem, 3vw, 2.1rem);
    box-shadow: var(--shadow-sm);
}

.use-case-card h3 {
    margin: 1rem 0 0.8rem;
    font-size: 1.35rem;
}

.use-case-card p {
    flex: 1;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.64;
}

.use-case-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 800;
}

.use-case-card a:hover { color: var(--primary); }

.calc-card {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    margin-top: 1.4rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    box-shadow: var(--shadow-sm);
}

/* #customer-support: metric-led facts, no nested cards.
   Hairline dividers between cells instead of boxes. */
#customer-support .support-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 58rem;
    margin: 0 auto;
}
#customer-support .support-fact {
    padding: clamp(1.5rem, 3vw, 2.25rem);
}
/* top row → bottom rule; left column → right rule */
#customer-support .support-fact:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
#customer-support .support-fact:nth-child(odd) { border-right: 1px solid var(--border); }
#customer-support .support-fact-metric {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text-main);
    margin-bottom: 0.7rem;
}
#customer-support .support-fact-lead {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
}
#customer-support .support-fact-body {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--text-sec);
    max-width: 30ch;
}
@media (max-width: 600px) {
    #customer-support .support-facts { grid-template-columns: 1fr; max-width: 26rem; }
    #customer-support .support-fact { border-right: none; border-bottom: 1px solid var(--border); }
    #customer-support .support-fact:last-child { border-bottom: none; }
}

.calc-copy h3 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.calc-copy p {
    margin: 0 0 0.9rem;
    line-height: 1.64;
}

.calc-discount-note { color: var(--text-muted); }

.calc-controls { display: grid; gap: 1rem; }

.calc-type-switch {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.calc-type-btn,
.calc-step-btn,
.calc-stepper input {
    min-height: 54px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #ffffff;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
}

.calc-type-btn {
    padding: 0.9rem 1rem;
    cursor: pointer;
    transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.calc-type-btn:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary);
}

.calc-type-btn.active {
    border-color: var(--primary-active);
    background: var(--primary-active);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.calc-stepper {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 0.75rem;
    align-items: center;
}

.calc-step-btn {
    cursor: pointer;
    transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.calc-step-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}

.calc-stepper input {
    width: 100%;
    padding: 0.9rem 1rem;
    text-align: center;
}

.calc-output {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.calc-output div {
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: #f8fafc;
}

.calc-output span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text-muted);
}

.calc-output strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    line-height: 1.2;
}

.resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.resource-card {
    overflow: hidden;
    border-radius: 24px;
}

.resource-card .blog-card-link { padding: 1.65rem; }
.resource-card .blog-date { color: rgba(255, 255, 255, 0.56); }
.resource-card h3 { color: var(--surface-dark-text); font-size: 1.24rem; }
.resource-card p { color: var(--surface-dark-muted); font-size: 0.98rem; }
.resource-card .blog-read { color: #7ddbd1; }

.dashboard-example.profile-card-mockup {
    max-width: 1240px;
    padding: 0;
    overflow: hidden;
    border-color: rgba(219, 228, 238, 0.9);
    border-radius: 28px;
    background:
        linear-gradient(rgba(255,255,255,0.74), rgba(255,255,255,0.92)),
        radial-gradient(circle at 50% -10%, rgba(99, 91, 255, 0.14), transparent 34%),
        #ffffff;
    box-shadow: 0 28px 68px -46px rgba(15, 23, 42, 0.44);
}

.dashboard-browser-bar,
.dashboard-layout,
.dashboard-sidebar-nav,
.dashboard-main,
.dashboard-header,
.dashboard-chip-row,
.dashboard-tabs,
.dashboard-panels,
.dashboard-lead-list,
.dashboard-side-stack,
.dashboard-panel-top {
    display: grid;
}

.dashboard-browser-bar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    min-height: 68px;
    padding: 1rem 1.35rem;
    border-bottom: 1px solid rgba(219, 228, 238, 0.82);
    background: rgba(255, 255, 255, 0.92);
}

.dashboard-window-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.dashboard-window-controls span {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
}

.window-red { background: #fb7185; }
.window-yellow { background: #fbbf24; }
.window-green { background: #4ade80; }

.dashboard-url {
    justify-self: end;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(219, 228, 238, 0.82);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-sec);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
}

.dashboard-layout {
    grid-template-columns: minmax(220px, 0.24fr) minmax(0, 0.76fr);
    min-height: 640px;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.75rem 1.35rem;
    border-right: 1px solid rgba(219, 228, 238, 0.82);
    background:
        linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.92)),
        radial-gradient(circle at 10% 10%, rgba(99, 91, 255, 0.12), transparent 28%),
        #f9fbff;
}

.dashboard-sidebar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
}

.dashboard-sidebar-brand strong {
    font-size: 1.08rem;
}

.dashboard-brand-mark {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 0.45rem;
    background:
        linear-gradient(135deg, rgba(99, 91, 255, 0.95), rgba(168, 85, 247, 0.78));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.dashboard-sidebar-nav {
    gap: 0.4rem;
}

.dashboard-sidebar-nav span {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    color: var(--text-sec);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
}

.dashboard-sidebar-nav span.active {
    background: var(--primary-soft);
    color: var(--primary);
}

.dashboard-main {
    gap: 1.25rem;
    padding: 1.75rem;
    background:
        linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,91,255,0.03) 1px, transparent 1px),
        #ffffff;
    background-size: 32px 32px;
}

.dashboard-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
}

.dashboard-header h2,
.dashboard-panel-top strong,
.dashboard-lead-row strong,
.dashboard-support-card strong {
    color: var(--text-main);
}

.dashboard-header h2 {
    margin-bottom: 0.3rem;
    font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.dashboard-header p,
.dashboard-panel p,
.dashboard-lead-row span,
.dashboard-support-card p,
.dashboard-support-card li {
    color: var(--text-sec);
}

.dashboard-chip-row {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 0.65rem;
    justify-content: end;
    align-content: start;
}

.dashboard-chip,
.dashboard-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(219, 228, 238, 0.86);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.dashboard-chip-soft {
    background: rgba(99, 91, 255, 0.12);
    color: var(--primary);
    border-color: rgba(99, 91, 255, 0.14);
}

.dashboard-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.35rem;
    border: 1px solid rgba(219, 228, 238, 0.82);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
}

.dashboard-tabs span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 18px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.96rem;
    font-weight: 700;
}

.dashboard-tabs span.active {
    background: rgba(99, 91, 255, 0.12);
    color: var(--primary);
}

.dashboard-panels {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 1.25rem;
    align-items: start;
}

.dashboard-panel,
.dashboard-support-card {
    border: 1px solid rgba(219, 228, 238, 0.9);
    border-radius: 24px;
}

.dashboard-panel {
    padding: 1.45rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.dashboard-panel-top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: start;
    margin-bottom: 1.15rem;
}

.dashboard-panel-top p {
    margin-top: 0.2rem;
    font-size: 1rem;
}

.dashboard-lead-list,
.dashboard-side-stack {
    gap: 0.8rem;
}

.dashboard-lead-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(219, 228, 238, 0.82);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
}

.dashboard-lead-row strong {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.98rem;
}

.dashboard-lead-row span {
    display: block;
    font-size: 0.96rem;
}

.dashboard-status-pill {
    min-width: 108px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.dashboard-reply-panel {
    min-height: 220px;
}

.dashboard-reply-metric {
    margin-bottom: 0.45rem;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
}

.dashboard-support-card {
    padding: 1.45rem;
    background:
        radial-gradient(circle at 80% 10%, rgba(99, 91, 255, 0.28), transparent 26%),
        linear-gradient(135deg, rgba(11, 17, 32, 0.98), rgba(23, 31, 54, 0.98));
}

.dashboard-support-card strong,
.dashboard-support-card p,
.dashboard-support-card li {
    color: #ffffff;
}

.dashboard-support-card strong {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 1.1rem;
}

.dashboard-support-card p {
    margin: 0 0 1rem;
    color: var(--text-light);
    line-height: 1.64;
}

.dashboard-support-card ul {
    list-style: none;
}

.dashboard-support-card li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.15rem;
    color: var(--text-light-muted);
    font-size: 0.96rem;
}

.dashboard-support-card li::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: #7ddbd1;
}

/* Unified inbox mockup (support section) */
.inbox-mockup {
    overflow: hidden;
    border: 1px solid rgba(219, 228, 238, 0.9);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 28px 68px -46px rgba(15, 23, 42, 0.55);
}

.inbox-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    border-bottom: 1px solid rgba(219, 228, 238, 0.82);
    background: rgba(249, 251, 255, 0.9);
}

.inbox-head strong {
    display: block;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
}

.inbox-head span {
    display: block;
    margin-top: 0.15rem;
    color: var(--text-sec);
    font-size: 0.92rem;
}

.inbox-head-chip {
    flex-shrink: 0;
    padding: 0.42rem 0.85rem;
    border: 1px solid rgba(99, 91, 255, 0.14);
    border-radius: var(--radius-pill);
    background: rgba(99, 91, 255, 0.12);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.inbox-body {
    display: grid;
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
}

.inbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.7rem;
    border-right: 1px solid rgba(219, 228, 238, 0.82);
    background: rgba(249, 251, 255, 0.55);
}

.inbox-conv {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: start;
    padding: 0.7rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 16px;
    transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.inbox-conv.active {
    border-color: rgba(99, 91, 255, 0.2);
    background: var(--primary-soft);
}

.inbox-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.92), rgba(168, 85, 247, 0.78));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.inbox-conv-main { min-width: 0; }

.inbox-conv-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}

.inbox-conv-top strong {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.inbox-time {
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.inbox-conv-main p {
    margin: 0.15rem 0 0.4rem;
    overflow: hidden;
    color: var(--text-sec);
    font-size: 0.86rem;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.inbox-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border: 1px solid rgba(219, 228, 238, 0.9);
    border-radius: var(--radius-pill);
    background: #ffffff;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.74rem;
    font-weight: 600;
    white-space: nowrap;
}

.inbox-dot {
    margin-top: 0.4rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary);
}

.inbox-thread {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem 1.1rem 1.1rem;
    background: #ffffff;
}

.inbox-thread-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(219, 228, 238, 0.82);
}

.inbox-thread-head strong {
    display: block;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
}

.inbox-thread-head > div span {
    display: block;
    margin-top: 0.12rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.inbox-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: var(--radius-pill);
    background: rgba(245, 158, 11, 0.1);
    color: #9a6700;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.inbox-status-dot {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: #f59e0b;
}

.inbox-messages {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.inbox-bubble {
    max-width: 86%;
    padding: 0.65rem 0.85rem;
    border-radius: 16px;
    font-size: 0.86rem;
    line-height: 1.45;
}

.inbox-bubble.in {
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    background: #f1f5f9;
    color: var(--text-main);
}

.inbox-bubble.out {
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    background: var(--primary);
    color: #ffffff;
}

.inbox-composer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.45rem 0.45rem 0.45rem 0.95rem;
    border: 1px solid rgba(219, 228, 238, 0.9);
    border-radius: var(--radius-pill);
    background: rgba(249, 251, 255, 0.7);
}

.inbox-composer span {
    color: var(--text-muted);
    font-size: 0.86rem;
}

.inbox-reply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.5rem 1.05rem;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: default;
}

@media (max-width: 992px) {
    .profile-mockup-body,
    .profiles-grid,
    .pain-compare-grid,
    .calc-card,
    .resource-grid { grid-template-columns: 1fr; }

    .support-stats,
    .calc-output { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .profile-health-row { grid-template-columns: 1fr; }

    .dashboard-layout,
    .dashboard-panels { grid-template-columns: 1fr; }

    .dashboard-layout { min-height: auto; }
    .dashboard-sidebar { gap: 1.2rem; border-right: 0; border-bottom: 1px solid rgba(219, 228, 238, 0.82); }
    .dashboard-sidebar-nav { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .dashboard-sidebar-nav span { justify-content: center; min-height: 46px; padding-inline: 0.75rem; text-align: center; }
    .dashboard-header,
    .dashboard-chip-row { grid-template-columns: 1fr; }
    .dashboard-chip-row { grid-auto-flow: row; justify-content: start; }
}

@media (max-width: 768px) {
    .profile-mockup-top,
    .support-stats,
    .calc-output { grid-template-columns: 1fr; }

    .tool-badges-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .comparison-table-wrapper {
        overflow: visible;
        padding: 0.85rem;
    }
    .comparison-table {
        min-width: 0;
    }
    .comparison-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0 0 0 0);
        border: 0;
        white-space: nowrap;
    }
    .comparison-table tbody {
        display: grid;
        gap: 0.9rem;
    }
    .comparison-table tr {
        display: grid;
        gap: 0.8rem;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: #ffffff;
    }
    .comparison-table tbody th,
    .comparison-table td {
        width: auto;
        padding: 0;
        border-bottom: 0;
    }
    .comparison-table tbody th {
        padding-bottom: 0.65rem;
        border-bottom: 1px solid var(--border-light);
        font-size: 1rem;
    }
    .comparison-table td {
        display: grid;
        gap: 0.22rem;
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .comparison-table td + td {
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-light);
    }
    .comparison-table td::before {
        content: attr(data-label);
        color: var(--text-muted);
        font-family: var(--font-heading);
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 0.01em;
    }
    .calc-type-switch { grid-template-columns: 1fr; }
    .calc-stepper { grid-template-columns: 48px minmax(0, 1fr) 48px; }
    .resource-card .blog-card-link { padding: 1.35rem; }

    .dashboard-browser-bar,
    .dashboard-sidebar-nav,
    .dashboard-tabs,
    .dashboard-panel-top { grid-template-columns: 1fr; }

    .dashboard-browser-bar,
    .dashboard-main,
    .dashboard-sidebar,
    .dashboard-panel,
    .dashboard-support-card { padding: 1.1rem; }

    .dashboard-url,
    .dashboard-window-controls { justify-self: start; }

    .dashboard-sidebar-nav span,
    .dashboard-tabs span { justify-content: flex-start; }

    .dashboard-lead-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-status-pill { min-width: 0; }

    .inbox-body { grid-template-columns: 1fr; }
    .inbox-list {
        border-right: 0;
        border-bottom: 1px solid rgba(219, 228, 238, 0.82);
    }
    .inbox-bubble { max-width: 92%; }
}

@media (max-width: 480px) {
    .tool-badges-grid { grid-template-columns: 1fr; }
    .profile-mockup-main h2 { font-size: clamp(1.75rem, 10vw, 2.3rem); }
    .calc-output strong { font-size: 1.08rem; }

    .dashboard-sidebar-nav { grid-template-columns: 1fr; }
    .dashboard-chip,
    .dashboard-status-pill,
    .dashboard-url { width: 100%; justify-content: flex-start; }
    .dashboard-tabs span { min-height: 44px; }
}

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


/* Added trust, author, and contact page styles */

.footer-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.footer-cta-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}
.footer-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.16);
}
.customer-snapshots {
    width: min(1376px, calc(100% - 8rem));
    margin: 0 auto;
    padding: clamp(4rem, 7vw, 6rem) 0;
    border-inline: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(241,244,255,0.72));
}
.customer-snapshots-header {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}
.customer-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.customer-snapshot-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255,255,255,0.92);
    box-shadow: var(--shadow-sm);
}
.customer-snapshot-top {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.customer-snapshot-top img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    background: var(--bg-soft);
}
.customer-snapshot-top h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}
.customer-snapshot-top p {
    font-size: 0.96rem;
    color: var(--text-muted);
}
.customer-snapshot-points {
    display: grid;
    gap: 0.75rem;
    padding-left: 1.15rem;
    color: var(--text-sec);
}
.blog-author-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin-top: 1.4rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,0.9);
}
.blog-author-badge {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
}
.blog-author-copy h2 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}
.blog-author-label,
.blog-author-role {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
}
.blog-author-note {
    margin-top: 0.45rem;
    font-size: 0.96rem;
    color: var(--text-sec);
}
.legal-page-main {
    padding-bottom: 0;
}
.legal-hero {
    width: min(1376px, calc(100% - 8rem));
    margin: -78px auto 0;
    padding: clamp(6rem, 9vw, 8rem) 0 3rem;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-bottom: 0;
    border-radius: var(--radius-section) var(--radius-section) 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(241,244,255,0.82));
}
.legal-hero-inner {
    max-width: 860px;
    text-align: center;
}
.legal-hero-lead {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--text-sec);
}
.legal-page-section {
    width: min(1376px, calc(100% - 8rem));
    margin: 0 auto;
    padding: 0 0 4rem;
    border-inline: 1px solid rgba(15,23,42,0.08);
    background: rgba(255,255,255,0.74);
}
.legal-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}
.legal-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255,255,255,0.94);
    box-shadow: var(--shadow-sm);
}
.legal-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}
.legal-card-full {
    grid-column: 1 / -1;
}
.legal-actions,
.contact-action-grid {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.contact-action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.contact-action-card {
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--bg-soft);
    color: var(--text-main);
}
.contact-action-card:hover {
    border-color: var(--primary);
    background: #ffffff;
}
.legal-list {
    display: grid;
    gap: 0.6rem;
    padding-left: 1.2rem;
}
.contact-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}
.contact-form[hidden] {
    display: none;
}
.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.contact-form label {
    display: grid;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-main);
}
.contact-form input,
.contact-form textarea {
    font: inherit;
    font-weight: 400;
    color: var(--text-main);
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.18);
}
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-form-hp {
    display: none;
}
.contact-form-submit {
    justify-self: start;
    cursor: pointer;
    font-weight: 700;
}
.contact-form-success {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(34, 168, 110, 0.4);
    border-radius: var(--radius-md);
    background: rgba(34, 168, 110, 0.1);
    color: #14794c;
    font-weight: 600;
}
@media (max-width: 1180px) {
    .customer-snapshots,
    .legal-hero,
    .legal-page-section { width: min(100%, calc(100% - 2rem)); }
    .customer-snapshot-grid,
    .contact-action-grid,
    .legal-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .customer-snapshots,
    .legal-hero,
    .legal-page-section { width: calc(100% - 1rem); }
    .customer-snapshot-top,
    .blog-author-card { grid-template-columns: 1fr; display: grid; }
    .customer-snapshot-top { justify-items: start; }
    .footer-cta-actions { flex-direction: column; }
    .contact-form-row { grid-template-columns: 1fr; }
}

/* Explicit homepage section themes keep the dashboard follow-on rhythm intentional
   instead of inheriting from component-type defaults. */
.section-theme-light {
    border: 1px solid rgba(219, 228, 238, 0.86);
    box-shadow: var(--shadow-panel);
    background:
        radial-gradient(circle at 16% 18%, rgba(99, 91, 255, 0.075), transparent 28%),
        linear-gradient(rgba(99, 91, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 91, 255, 0.028) 1px, transparent 1px),
        #ffffff;
    background-size: auto, 44px 44px, 44px 44px, auto;
    color: var(--text-main);
}

.section-theme-dark {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(var(--ops-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--ops-grid) 1px, transparent 1px),
        radial-gradient(circle at 16% 16%, rgba(99, 91, 255, 0.25), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(255, 184, 107, 0.08), transparent 22%),
        linear-gradient(135deg, #171717 0%, #202020 58%, #14151f 100%);
    background-size: 44px 44px, 44px 44px, auto, auto;
    color: var(--text-light);
}

.section-theme-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(32, 32, 32, 0.92) 0%, rgba(32, 32, 32, 0.62) 46%, rgba(32, 32, 32, 0.28) 100%);
}

.section-theme-light::before { display: none; }

.section-theme-dark > .container,
.section-theme-light > .container {
    position: relative;
    z-index: 1;
}

.section-theme-dark h2,
.section-theme-dark h3 { color: #ffffff; }

.section-theme-dark p,
.section-theme-dark .process-lead,
.section-theme-dark .comparison-footnote { color: var(--text-light-muted); }

.section-theme-dark .feature,
.section-theme-dark .tool-badges-grid span {
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        #2a2d3a;
    background-size: 34px 34px, 34px 34px, auto, auto;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 28px -14px rgba(0,0,0,0.55);
}

.section-theme-dark .pricing-card-inner,
.section-theme-dark .calc-card {
    border-color: var(--surface-dark-border);
    background: var(--surface-dark-card);
    box-shadow: 0 20px 46px -30px rgba(0, 0, 0, 0.85);
}

.section-theme-dark .feature:hover,
.section-theme-dark .tool-badges-grid span:hover {
    border-color: var(--surface-dark-border-hover);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 36px -16px rgba(0,0,0,0.72);
}

.section-theme-dark .feature-num {
    background: rgba(99, 91, 255, 0.14);
    color: #a5b4fc;
    border: 1px solid rgba(99, 91, 255, 0.22);
}

.section-theme-dark .pricing-card-inner:hover,
.section-theme-dark .calc-card:hover {
    border-color: var(--surface-dark-border-hover);
    box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.9);
}

.section-theme-dark .feature h3,
.section-theme-dark .pricing-card h3,
.section-theme-dark .calc-copy h3,
.section-theme-dark .price,
.section-theme-dark .calc-output strong { color: #ffffff; }

.section-theme-dark .feature p,
.section-theme-dark .deliverables-copy p,
.section-theme-dark .price span,
.section-theme-dark .price-note,
.section-theme-dark .pricing-card li,
.section-theme-dark .calc-copy p,
.section-theme-dark .calc-output span,
.section-theme-dark .tool-badges-grid span { color: var(--surface-dark-muted); }

.section-theme-dark .pricing-card li { border-bottom-color: rgba(255, 255, 255, 0.08); }

.section-theme-dark .pricing-card-inner.winner {
    background: linear-gradient(180deg, rgba(99, 91, 255, 0.24) 0%, rgba(26, 28, 38, 0.94) 100%);
    box-shadow: 0 18px 56px -34px rgba(99, 91, 255, 0.72), 0 0 0 6px rgba(99, 91, 255, 0.08);
}

.section-theme-dark .btn-pricing-outline {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.section-theme-dark .btn-pricing-outline:hover {
    border-color: var(--primary);
    background: rgba(99, 91, 255, 0.18);
    color: #ffffff;
}

.section-theme-dark .calc-type-btn,
.section-theme-dark .calc-step-btn,
.section-theme-dark .calc-stepper input,
.section-theme-dark .calc-output div {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.section-theme-dark .calc-type-btn:hover,
.section-theme-dark .calc-step-btn:hover {
    border-color: var(--primary);
    background: rgba(99, 91, 255, 0.18);
    color: #ffffff;
}

.section-theme-dark .calc-type-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 28px -20px rgba(99, 91, 255, 0.9);
}

.section-theme-light.comparison-section .process-lead,
.section-theme-light.comparison-section .comparison-footnote { color: var(--text-sec); }

.section-theme-light.comparison-section h2,
.section-theme-light.comparison-section h3 { color: var(--text-main); }


.section-theme-light.profiles-section .profiles-hub-title { color: var(--text-main); }
.section-theme-light.profiles-section .profiles-hub-sub { color: var(--text-sec); }
.section-theme-light.profiles-section .outreach-path strong { color: var(--text-main); }
.section-theme-light.profiles-section .outreach-path p { color: var(--text-sec); }
.section-theme-light.profiles-section .outreach-path-link { color: var(--primary); }

.section-theme-light.comparison-section .comparison-table-wrapper {
    border-color: var(--border);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.section-theme-light.comparison-section .comparison-table th,
.section-theme-light.comparison-section .comparison-table td { border-bottom-color: var(--border-light); }

.section-theme-light.comparison-section .comparison-table thead th {
    color: var(--text-main);
    background: var(--bg-card-alt);
}

.section-theme-light.comparison-section .comparison-table tbody th { color: var(--text-main); }
.section-theme-light.comparison-section .comparison-table td { color: var(--text-sec); }

@media (max-width: 768px) {
    .section-theme-light.comparison-section .comparison-table-wrapper {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .section-theme-light.comparison-section .comparison-table tr {
        border-color: var(--border);
        background: #ffffff;
        box-shadow: var(--shadow-sm);
    }
}

/* iPad-class tablets (768-820px): Chromium's `max-width: 768px` excludes exactly 768,
   so the comparison table kept its desktop min-width and internal-scrolled here.
   Mirror the mobile card conversion across this range so it stacks cleanly. */
@media (min-width: 768px) and (max-width: 821px) {
    .comparison-table-wrapper {
        overflow: visible;
        padding: 0.85rem;
    }
    .comparison-table {
        min-width: 0;
    }
    .comparison-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0 0 0 0);
        border: 0;
        white-space: nowrap;
    }
    .comparison-table tbody {
        display: grid;
        gap: 0.9rem;
    }
    .comparison-table tr {
        display: grid;
        gap: 0.8rem;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: #ffffff;
    }
    .comparison-table tbody th,
    .comparison-table td {
        width: auto;
        padding: 0;
        border-bottom: 0;
    }
    .comparison-table tbody th {
        padding-bottom: 0.65rem;
        border-bottom: 1px solid var(--border-light);
        font-size: 1rem;
    }
    .comparison-table td {
        display: grid;
        gap: 0.22rem;
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .comparison-table td + td {
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-light);
    }
    .comparison-table td::before {
        content: attr(data-label);
        color: var(--text-muted);
        font-family: var(--font-heading);
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 0.01em;
    }
    .section-theme-light.comparison-section .comparison-table-wrapper {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }
    .section-theme-light.comparison-section .comparison-table tr {
        border-color: var(--border);
        background: #ffffff;
        box-shadow: var(--shadow-sm);
    }
}

/* === Profile Example Cards === */
.profile-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.profile-example-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
    cursor: pointer;
}

.profile-example-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 91, 255, 0.34);
    box-shadow: var(--shadow-lift);
}

.profile-example-thumb {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 62.5%; /* force exact 16:10 aspect ratio */
    border: 0;
    background:
        linear-gradient(135deg, rgba(99, 91, 255, 0.08), rgba(168, 85, 247, 0.05)),
        linear-gradient(rgba(99, 91, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 91, 255, 0.015) 1px, transparent 1px),
        #f8faff;
    background-size: auto, 24px 24px, 24px 24px, auto;
    cursor: pointer;
    transition: background-color 0.2s var(--ease);
    overflow: hidden;
}

.profile-example-thumb:hover {
    background-color: #f1f4ff;
}

.profile-example-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
}

.profile-example-thumb-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    height: 100%;
    color: var(--text-muted);
}

.profile-example-thumb-inner svg {
    color: var(--primary);
    opacity: 0.6;
}

.profile-example-thumb-inner span {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.profile-example-body {
    padding: 1.15rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 10.5rem;
}

.profile-example-body h3 {
    margin-bottom: 0.65rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
    min-height: 3.1em;
}

.profile-example-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
    min-height: 4.5rem;
}

.profile-example-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.28rem 0.65rem;
    border-radius: var(--radius-pill);
    background: var(--primary-soft);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* === Profile Lightbox === */
.profile-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.profile-lightbox[hidden] {
    display: none;
}

.profile-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 32, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.profile-lightbox-content {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    max-height: calc(100svh - 3rem);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 28px 72px -48px rgba(15, 23, 42, 0.55);
    overflow: hidden;
    animation: lightbox-in 0.28s var(--ease) forwards;
}

@keyframes lightbox-in {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.profile-lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #ffffff;
    color: var(--text-main);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.profile-lightbox-close:hover {
    background: var(--danger);
    color: #ffffff;
    border-color: var(--danger);
    transform: rotate(90deg);
}

.profile-lightbox-body {
    padding: 0;
    overflow: auto;
    max-height: calc(100svh - 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightboxImage {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100svh - 4rem);
    object-fit: contain;
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .profile-lightbox-content {
        width: 100%;
        max-height: calc(100svh - 2rem);
    }
    .profile-lightbox-body {
        padding: 1rem;
        max-height: calc(100svh - 2rem);
    }
    .profile-lightbox-placeholder {
        min-height: 220px;
    }
}
