/*
 Theme Name:   Chameleon Hive
 Theme URI:    https://chameleonhive.com
 Description:  GeneratePress child theme for chameleonhive.com
 Author:       CHAMELEON MODE LTD
 Author URI:   https://chameleonhive.com
 Template:     generatepress
 Version:      2.14.2
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  chameleonhive
*/

/* =============================================
   FONTS
   ============================================= */
@font-face {
    font-family: 'Noah';
    src: url('fonts/Noah-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Noah';
    src: url('fonts/Noah-RegularItalic.ttf') format('truetype');
    font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Noah';
    src: url('fonts/Noah-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Noah';
    src: url('fonts/Noah-BoldItalic.ttf') format('truetype');
    font-weight: 700; font-style: italic; font-display: swap;
}

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
    /* Darks — near-black with cool character, never #000 */
    --c-primary-dark:   #0e1116;
    --c-secondary-dark: #161b22;

    /* Accent — restrained green, used sparingly */
    --c-accent:         #1a7a52;
    --c-accent-hover:   #145f40;
    --c-accent-pale:    #e9f4ef;

    /* Backgrounds — cool off-whites, never pure #fff for the page */
    --c-bg-body:        #fbfcfd;
    --c-bg-section:     #f4f6f8;
    --c-bg-section-alt: #eef1f4;
    --c-white:          #ffffff;

    /* Text — dark but not black */
    --c-text:           #1a1f26;
    --c-text-mid:       #4a5560;
    --c-text-light:     #6b7480;

    /* Structural */
    --c-rule:           #e3e8ee;
    --c-rule-dark:      rgba(255,255,255,0.1);

    /* Type */
    --f-body: 'Noah', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --f-mono: 'JetBrains Mono', 'Consolas', monospace;

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

    /* Widths — slightly narrower for a sharper, more editorial column */
    --w-wide:    1120px;
    --w-content: 720px;
    --w-narrow:  560px;

    /* Radius — restrained */
    --radius-sm: 5px;
    --radius:    7px;
    --radius-lg: 10px;

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   BASE
   ============================================= */
html { overflow-x: hidden; }
body {
    font-family: var(--f-body);
    background: var(--c-bg-body);
    color: var(--c-text);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#page { max-width: 100%; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: var(--f-body); font-weight: 700; color: var(--c-primary-dark); }

::selection { background: var(--c-accent-pale); color: var(--c-primary-dark); }

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-accent-hover); }

/* Tabular numbers everywhere numbers matter */
.ch-price, .ch-price-anchor, .ch-stat-num, .ch-tier-price { font-variant-numeric: tabular-nums; }

/* =============================================
   SHARED LABEL (mono eyebrow) — core texture element
   ============================================= */
.ch-label {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--c-accent);
    margin-bottom: var(--space-sm);
}

/* =============================================
   HEADER / NAV — clean, mono nav items
   ============================================= */
.site-header { background: var(--c-white); border-bottom: 1px solid var(--c-rule); }
.inside-header { padding: var(--space-sm) var(--space-lg); }
.main-navigation { margin-left: auto; }
.main-navigation .main-nav > ul { display: flex; align-items: center; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.main-navigation .main-nav > ul > li > a {
    font-family: var(--f-mono);
    font-size: 0.76rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-text-mid);
    padding: 0.5rem 0.85rem;
}
.main-navigation .main-nav > ul > li > a:hover { color: var(--c-accent) !important; }
.main-navigation .main-nav > ul > li.ch-nav-cta > a {
    background: var(--c-accent);
    color: var(--c-white) !important;
    border-radius: var(--radius-sm);
    padding: 0.5rem 1.1rem !important;
    margin-left: var(--space-xs);
}
.main-navigation .main-nav > ul > li.ch-nav-cta > a:hover { background: var(--c-accent-hover); }

/* =============================================
   BUTTONS
   ============================================= */
.ch-btn {
    display: inline-block;
    background: var(--c-accent);
    color: var(--c-white) !important;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: background var(--transition);
    border: none;
    cursor: pointer;
}
.ch-btn:hover { background: var(--c-accent-hover); color: var(--c-white) !important; }
.ch-btn-dark { background: var(--c-primary-dark); }
.ch-btn-dark:hover { background: #1e2530; }
.ch-btn-ghost {
    background: transparent;
    color: var(--c-primary-dark) !important;
    border: 1px solid var(--c-rule);
}
.ch-btn-ghost:hover { background: var(--c-bg-section); color: var(--c-primary-dark) !important; }

/* CTA microcopy — rides with buttons */
.ch-cta-micro {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    color: var(--c-text-light);
    letter-spacing: 0.02em;
    margin: var(--space-sm) 0 0;
}

/* =============================================
   SECTION SCAFFOLD — varied rhythm, not mechanical alternation
   ============================================= */
.ch-section { padding: var(--space-2xl) var(--space-lg); }
.ch-section-tight { padding: var(--space-xl) var(--space-lg); }
.ch-inner { max-width: var(--w-wide); margin: 0 auto; }
.ch-inner-narrow { max-width: var(--w-content); margin: 0 auto; }
.ch-bg-section { background: var(--c-bg-section); }
.ch-bg-dark { background: var(--c-primary-dark); position: relative; }
.ch-rule-top { border-top: 1px solid var(--c-rule); }

/* Dark section noise */
.ch-bg-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}
.ch-bg-dark > * { position: relative; z-index: 1; }

/* Section headings — left-aligned by default with accent bar */
.ch-section-head { margin-bottom: var(--space-xl); }
.ch-section-head h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    line-height: 1.25;
    margin: 0;
    position: relative;
    padding-top: var(--space-md);
}
.ch-section-head h2::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 36px; height: 2px;
    background: var(--c-accent);
}
.ch-bg-dark .ch-section-head h2 { color: var(--c-white); }

/* Prose */
.ch-prose p { font-size: 1rem; line-height: 1.75; color: var(--c-text-mid); margin: 0 0 var(--space-md); }
.ch-prose p:last-child { margin-bottom: 0; }
.ch-prose strong { color: var(--c-primary-dark); }
.ch-bg-dark .ch-prose p { color: rgba(255,255,255,0.7); }
.ch-bg-dark .ch-prose strong { color: #fff; }

/* =============================================
   HERO — left-aligned, confident not oversized
   ============================================= */
.ch-hero {
    background: var(--c-white);
    padding: var(--space-2xl) var(--space-lg);
    border-bottom: 1px solid var(--c-rule);
}
.ch-hero-inner {
    max-width: var(--w-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-2xl);
    align-items: center;
}
.ch-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin: 0 0 var(--space-md);
}
.ch-hero-sub {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--c-text-mid);
    margin: 0 0 var(--space-lg);
}
.ch-hero-visual {
    aspect-ratio: 4 / 3;
    background: var(--c-primary-dark);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ch-hero-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}
.ch-hero-visual span {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    position: relative;
    z-index: 1;
}

/* =============================================
   REAL-BROWSER STRIP — the homepage visual anchor
   ============================================= */
.ch-browsers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--c-rule);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    overflow: hidden;
    margin: var(--space-lg) 0;
}
.ch-browser-cell {
    background: var(--c-white);
    padding: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}
.ch-browser-check { color: var(--c-accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.ch-browser-cell strong { display: block; font-size: 0.92rem; color: var(--c-primary-dark); margin-bottom: 2px; }
.ch-browser-cell span { font-family: var(--f-mono); font-size: 0.7rem; color: var(--c-text-light); letter-spacing: 0.02em; }

/* =============================================
   ARCHITECTURAL FEATURE GRID — 1px borders, no shadows
   ============================================= */
.ch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--c-rule);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    overflow: hidden;
}
.ch-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ch-grid-cell {
    background: var(--c-white);
    padding: var(--space-lg);
    transition: background var(--transition);
}
.ch-grid-cell:hover { background: var(--c-bg-section); }
.ch-grid-num {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: var(--space-sm);
}
.ch-grid-cell h3 { font-size: 1.05rem; margin: 0 0 var(--space-xs); color: var(--c-primary-dark); }
.ch-grid-cell p { font-size: 0.9rem; line-height: 1.6; color: var(--c-text-mid); margin: 0; }

/* =============================================
   AUDIENCE BLOCKS — asymmetric editorial, left border
   ============================================= */
.ch-audiences { display: grid; gap: 0; }
.ch-audience {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--c-rule);
}
.ch-audience:last-child { border-bottom: none; }
.ch-audience-label {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-accent);
    padding-top: 3px;
}
.ch-audience-body p { margin: 0; font-size: 0.98rem; line-height: 1.7; color: var(--c-text-mid); }

/* =============================================
   PRICING
   ============================================= */
.ch-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: start;
}
.ch-tier {
    background: var(--c-white);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
}
.ch-tier-featured { border-color: var(--c-accent); border-width: 2px; position: relative; }
.ch-tier-badge {
    position: absolute;
    top: -11px; left: var(--space-lg);
    background: var(--c-accent);
    color: var(--c-white);
    font-family: var(--f-mono);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 100px;
}
.ch-tier-name { font-size: 1.1rem; margin: 0 0 var(--space-xs); color: var(--c-primary-dark); }
.ch-tier-price { font-size: 2.2rem; font-weight: 700; color: var(--c-primary-dark); line-height: 1; }
.ch-tier-price span { font-size: 0.9rem; font-weight: 400; color: var(--c-text-light); }
.ch-tier-annual { font-family: var(--f-mono); font-size: 0.7rem; color: var(--c-text-light); margin: var(--space-xs) 0 0; letter-spacing: 0.02em; }
.ch-tier-desc { font-size: 0.88rem; color: var(--c-text-mid); margin: var(--space-sm) 0 var(--space-md); line-height: 1.5; }
.ch-tier-features { list-style: none; padding: 0; margin: 0 0 var(--space-lg); flex-grow: 1; }
.ch-tier-features li {
    position: relative;
    padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--c-text-mid);
    border-bottom: 1px solid var(--c-rule);
}
.ch-tier-features li:last-child { border-bottom: none; }
.ch-tier-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--c-accent); font-weight: 700; }
.ch-tier-btn { text-align: center; }

/* Billing toggle */
.ch-billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--c-bg-section);
    border: 1px solid var(--c-rule);
    border-radius: 100px;
    padding: 3px;
    margin-bottom: var(--space-xl);
}
.ch-billing-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.ch-billing-toggle label {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 20px;
    border-radius: 100px;
    cursor: pointer;
    color: var(--c-text-mid);
    transition: all var(--transition);
}
#ch-monthly:checked ~ label[for="ch-monthly"],
#ch-yearly:checked ~ label[for="ch-yearly"] {
    background: var(--c-white);
    color: var(--c-primary-dark);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.ch-billing-save { color: #156344 !important; font-weight: 700; }

/* =============================================
   CHECKOUT
   ============================================= */
.ch-checkout-hero { background: var(--c-primary-dark); padding: var(--space-xl) var(--space-lg) var(--space-lg); text-align: center; position: relative; }
.ch-checkout-hero-inner { max-width: var(--w-content); margin: 0 auto; position: relative; z-index: 1; }
.ch-checkout-hero h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0 0 var(--space-xs); }
.ch-checkout-hero p { color: rgba(255,255,255,0.5); margin: 0; }
.ch-checkout-body { padding: var(--space-xl) var(--space-lg); background: var(--c-bg-section); }
.ch-checkout-body-inner { max-width: var(--w-wide); margin: 0 auto; display: grid !important; grid-template-columns: 1.4fr 1fr !important; gap: var(--space-xl); align-items: start; }
.ch-checkout-form-col { background: var(--c-white); border: 1px solid var(--c-rule); border-radius: var(--radius); padding: var(--space-lg); min-height: 400px; min-width: 0; overflow: hidden; }
.ch-checkout-form-col iframe { width: 100% !important; border: none !important; display: block; }
.ch-checkout-trust-col { display: flex; flex-direction: column; gap: var(--space-md); min-width: 0; }
.ch-checkout-block { background: var(--c-white); border: 1px solid var(--c-rule); border-radius: var(--radius); padding: var(--space-md); }
.ch-checkout-block h3 { font-family: var(--f-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 var(--space-xs); color: var(--c-primary-dark); }
.ch-checkout-block p { font-size: 0.85rem; color: var(--c-text-mid); line-height: 1.6; margin: 0; }
.ch-checkout-includes { list-style: none; padding: 0; margin: 0; }
.ch-checkout-includes li { position: relative; padding: 6px 0 6px 22px; font-size: 0.85rem; color: var(--c-text-mid); border-bottom: 1px solid var(--c-rule); }
.ch-checkout-includes li:last-child { border-bottom: none; }
.ch-checkout-includes li::before { content: '\2713'; position: absolute; left: 0; color: var(--c-accent); font-weight: 700; }

/* =============================================
   FINAL CTA BAND
   ============================================= */
.ch-final { background: var(--c-primary-dark); padding: var(--space-2xl) var(--space-lg); text-align: center; position: relative; }
.ch-final-inner { max-width: var(--w-content); margin: 0 auto; position: relative; z-index: 1; }
.ch-final h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0 0 var(--space-md); line-height: 1.2; }
.ch-final p { color: rgba(255,255,255,0.6); margin: 0 0 var(--space-lg); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { display: none; }
.ch-footer { background: var(--c-primary-dark); position: relative; padding: var(--space-2xl) var(--space-lg) var(--space-lg); }
.ch-footer::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}
.ch-footer-inner {
    max-width: var(--w-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
    padding-bottom: var(--space-xl);
}
.ch-footer-logo { font-family: var(--f-mono); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; display: block; margin-bottom: var(--space-sm); }
.ch-footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin: 0; max-width: 300px; }
.ch-footer-heading { display: block; font-family: var(--f-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-accent); margin-bottom: var(--space-sm); }
.ch-footer-nav a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); padding: 4px 0; }
.ch-footer-nav a:hover { color: #fff; }
.ch-footer-legal {
    max-width: var(--w-wide);
    margin: 0 auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--c-rule-dark);
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}
.ch-footer-legal p { font-family: var(--f-mono); font-size: 0.68rem; color: rgba(255,255,255,0.35); line-height: 1.7; margin: 0; letter-spacing: 0.01em; }
.ch-footer-legal-links { display: flex; gap: var(--space-md); flex-shrink: 0; }
.ch-footer-legal-links a { font-family: var(--f-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); }
.ch-footer-legal-links a:hover { color: #fff; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .ch-grid, .ch-pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .ch-footer-inner { grid-template-columns: 1fr 1fr; }
    .ch-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .inside-header { padding: var(--space-sm); }
    .ch-hero-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
    .ch-hero-visual { display: none; }
    .ch-browsers { grid-template-columns: 1fr; }
    .ch-grid, .ch-pricing-grid { grid-template-columns: 1fr; }
    .ch-audience { grid-template-columns: 1fr; gap: var(--space-xs); }
    .ch-checkout-body-inner { grid-template-columns: 1fr !important; }
    .ch-section, .ch-section-tight { padding: var(--space-xl) var(--space-sm); }
    .ch-footer-inner { grid-template-columns: 1fr; }
    .ch-footer-legal { flex-direction: column; }

    /* Mobile nav overlay — not push-down */
    .site-header { position: sticky; top: 0; z-index: 200; }
    .inside-header { position: relative; }
    .main-navigation .main-nav > ul {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--c-white);
        border-bottom: 1px solid var(--c-rule);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        flex-direction: column;
        padding: var(--space-sm) 0;
        z-index: 200;
    }
    .main-navigation .main-nav > ul > li > a { display: block !important; width: 100%; padding: var(--space-sm) var(--space-lg) !important; }
    .main-navigation .main-nav > ul > li.ch-nav-cta > a { margin: var(--space-xs) var(--space-lg) 0; text-align: center; }
}
@media (max-width: 500px) {
    .ch-hero h1 { font-size: 2rem; }
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.ch-faq-item { border-bottom: 1px solid var(--c-rule); padding: var(--space-md) 0; }
.ch-faq-item summary {
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-primary-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: var(--space-lg);
}
.ch-faq-item summary::-webkit-details-marker { display: none; }
.ch-faq-item summary::after {
    content: '+';
    position: absolute; right: 0; top: -2px;
    font-size: 1.3rem; color: var(--c-accent); font-weight: 400;
}
.ch-faq-item[open] summary::after { content: '\2212'; }
.ch-faq-item p { margin: var(--space-sm) 0 0; font-size: 0.95rem; line-height: 1.7; color: var(--c-text-mid); }

/* =============================================
   LEARN ARTICLE + LEGAL PROSE
   ============================================= */
.ch-article { padding: var(--space-2xl) var(--space-lg); }
.ch-article-inner { max-width: var(--w-content); margin: 0 auto; }
.ch-article h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 var(--space-lg);
    letter-spacing: -0.01em;
}
.ch-article-body { font-size: 1.02rem; line-height: 1.8; color: var(--c-text-mid); }
.ch-article-body h2 {
    font-size: 1.4rem;
    color: var(--c-primary-dark);
    margin: var(--space-xl) 0 var(--space-sm);
    padding-top: var(--space-md);
    position: relative;
}
.ch-article-body h2::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 32px; height: 2px; background: var(--c-accent);
}
.ch-article-body h3 { font-size: 1.1rem; color: var(--c-primary-dark); margin: var(--space-lg) 0 var(--space-xs); }
.ch-article-body p { margin: 0 0 var(--space-md); }
.ch-article-body strong { color: var(--c-primary-dark); }
.ch-article-body ul, .ch-article-body ol { margin: 0 0 var(--space-md); padding-left: var(--space-md); }
.ch-article-body li { margin-bottom: var(--space-xs); }
.ch-article-body a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 2px; }
.ch-article-note {
    background: var(--c-bg-section);
    border-left: 3px solid var(--c-accent);
    padding: var(--space-md);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 0 0 var(--space-lg);
    font-size: 0.9rem;
    color: var(--c-text-mid);
}

/* =============================================
   THANK YOU
   ============================================= */
.ch-ty { padding: var(--space-3xl) var(--space-lg); text-align: center; }
.ch-ty-inner { max-width: var(--w-content); margin: 0 auto; }
.ch-ty-badge {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    background: var(--c-accent-pale);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: var(--space-md);
}
.ch-ty h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 var(--space-md); }
.ch-ty p { font-size: 1.05rem; color: var(--c-text-mid); line-height: 1.7; margin: 0 0 var(--space-md); }
.ch-ty .ch-btn { margin-top: var(--space-md); }

/* =============================================
   404
   ============================================= */
.ch-404 { padding: var(--space-3xl) var(--space-lg); text-align: center; }
.ch-404 h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0 0 var(--space-md); }
.ch-404 p { color: var(--c-text-mid); margin: 0 0 var(--space-md); }
.ch-404-links { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
.ch-404-links a { font-family: var(--f-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* =============================================
   AD LANDERS — minimal topbar, no nav distraction
   ============================================= */
.ch-lander-list { list-style: none; padding: 0; margin: var(--space-md) 0; }
.ch-lander-list li {
    position: relative;
    padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
    border-bottom: 1px solid var(--c-rule);
    font-size: 0.95rem;
    color: var(--c-text-mid);
    line-height: 1.6;
}
.ch-lander-list li:last-child { border-bottom: none; }
.ch-lander-list li::before {
    content: '\2192'; position: absolute; left: 0; top: var(--space-sm);
    color: var(--c-accent); font-weight: 700;
}

/* =============================================
   LEARN INDEX CARDS
   ============================================= */
.ch-learn-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.ch-learn-card h3 { color: var(--c-primary-dark); line-height: 1.3; }
.ch-learn-card p { flex-grow: 1; }
.ch-learn-more {
    display: inline-block;
    margin-top: var(--space-md);
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-accent);
}
.ch-learn-card:hover .ch-learn-more { color: var(--c-accent-hover); }

/* =============================================
   ACCESSIBILITY — focus, skip link, reduced motion
   ============================================= */

/* Visible focus on every interactive element */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
.ch-btn:focus-visible,
.main-navigation a:focus-visible,
.ch-faq-item summary:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Billing toggle keyboard focus */
.ch-billing-toggle input:focus-visible + label {
    outline: 2px solid var(--c-accent);
    outline-offset: 2px;
}

/* Button active + disabled states */
.ch-btn:active { transform: translateY(1px); }
.ch-btn:disabled,
.ch-btn[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Skip link */
.ch-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--c-primary-dark);
    color: #fff;
    padding: 12px 20px;
    z-index: 999;
    border-radius: 0 0 var(--radius-sm) 0;
    font-family: var(--f-mono);
    font-size: 0.8rem;
    text-decoration: none;
}
.ch-skip:focus { left: 0; }

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

/* Spacing grid correction — badge on even grid */
.ch-tier-badge { top: -12px; }

/* Mobile touch-target guarantees */
@media (max-width: 768px) {
    .ch-footer-nav a,
    .ch-footer-legal-links a { padding: 8px 0; display: inline-block; }
}
@media (max-width: 500px) {
    .ch-billing-toggle label { padding: 12px 24px; }
}

/* =============================================
   WORDPRESS CORE BLOCK STYLES (editor content)
   ============================================= */
.ch-article-body blockquote,
.entry-content blockquote {
    border-left: 3px solid var(--c-accent);
    padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
    margin: var(--space-lg) 0;
    font-style: italic;
    color: var(--c-text-mid);
}
.ch-article-body blockquote p,
.entry-content blockquote p { margin-bottom: var(--space-xs); }

.ch-article-body table,
.entry-content table,
.entry-content .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: 0.92rem;
}
.entry-content th, .ch-article-body th {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: left;
    background: var(--c-bg-section);
    color: var(--c-primary-dark);
    padding: var(--space-sm);
    border: 1px solid var(--c-rule);
}
.entry-content td, .ch-article-body td {
    padding: var(--space-sm);
    border: 1px solid var(--c-rule);
    color: var(--c-text-mid);
}

.ch-article-body pre,
.entry-content pre,
.entry-content .wp-block-code {
    background: var(--c-primary-dark);
    color: rgba(255,255,255,0.9);
    font-family: var(--f-mono);
    font-size: 0.85rem;
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: var(--space-lg) 0;
}
.entry-content code, .ch-article-body code {
    font-family: var(--f-mono);
    font-size: 0.88em;
    background: var(--c-bg-section);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--c-accent);
}
.entry-content pre code { background: none; padding: 0; color: inherit; }

.entry-content figure.wp-caption,
.entry-content .wp-block-image figcaption,
.ch-article-body figcaption {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    color: var(--c-text-light);
    margin-top: var(--space-xs);
    letter-spacing: 0.02em;
}

.entry-content .wp-block-pullquote {
    border-top: 2px solid var(--c-accent);
    border-bottom: 2px solid var(--c-accent);
    padding: var(--space-lg) 0;
    margin: var(--space-xl) 0;
    text-align: center;
}
.entry-content .wp-block-pullquote p {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--c-primary-dark);
}

/* alignwide / alignfull support in article context */
.ch-article-body .alignwide { width: min(var(--w-wide), 100%); margin-left: 50%; transform: translateX(-50%); }
.ch-article-body .alignfull { width: 100vw; margin-left: 50%; transform: translateX(-50%); }

/* =============================================
   HERO PRODUCT MOCKUP — CSS, no image needed
   ============================================= */
.ch-mock {
    width: 88%;
    max-width: 420px;
    background: var(--c-secondary-dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.ch-mock-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ch-mock-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.ch-mock-title {
    font-family: var(--f-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-left: auto;
}
.ch-mock-rows { padding: 6px 0; }
.ch-mock-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ch-mock-row:last-child { border-bottom: none; }
.ch-mock-badge {
    font-family: var(--f-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.07);
    padding: 3px 8px;
    border-radius: 4px;
    min-width: 52px;
    text-align: center;
}
.ch-mock-name { font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.ch-mock-status {
    margin-left: auto;
    font-family: var(--f-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}
.ch-mock-status::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
}
.ch-mock-live { color: #4ade80; }
.ch-mock-live::before { background: #4ade80; }

/* =============================================
   SPLIT LINKS (homepage privacy/structure)
   ============================================= */
.ch-split-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--c-rule);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: var(--space-xl);
}
.ch-split-link {
    background: var(--c-white);
    padding: var(--space-lg);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: background var(--transition);
}
.ch-split-link:hover { background: var(--c-bg-section); }
.ch-split-link strong {
    display: block;
    font-size: 1.02rem;
    color: var(--c-primary-dark);
    margin: var(--space-xs) 0 var(--space-md);
    line-height: 1.4;
    flex-grow: 1;
}

/* =============================================
   COMPARISON / DATA TABLES
   ============================================= */
.ch-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0 var(--space-lg);
    font-size: 0.9rem;
    background: var(--c-white);
    border: 1px solid var(--c-rule);
    border-radius: var(--radius);
    overflow: hidden;
}
.ch-compare-table th {
    font-family: var(--f-mono);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    background: var(--c-bg-section);
    color: var(--c-primary-dark);
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--c-rule);
}
.ch-compare-table td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--c-rule);
    color: var(--c-text-mid);
}
.ch-compare-table tr:last-child td { border-bottom: none; }
.ch-compare-table .ch-yes { color: var(--c-accent); font-weight: 700; }
.ch-compare-table .ch-no { color: var(--c-text-light); }

/* =============================================
   LEGAL PAGE DETAILS
   ============================================= */
.ch-legal-date {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-light);
    margin: calc(var(--space-lg) * -1 + var(--space-sm)) 0 var(--space-lg);
}
.ch-footer-disclaimer { max-width: 720px; }
.ch-footer-disclaimer p {
    font-family: var(--f-mono);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin: 0 0 var(--space-sm);
    letter-spacing: 0.01em;
}
.ch-footer-disclaimer p:last-child { margin-bottom: 0; }
.ch-footer-legal-links { flex-wrap: wrap; }

@media (max-width: 768px) {
    .ch-split-links { grid-template-columns: 1fr; }
    .ch-compare-table { display: block; overflow-x: auto; }
}

/* =============================================
   PRODUCT TRANSPARENCY BLOCK (compliance s.3B)
   ============================================= */
.ch-transparency {
    background: var(--c-bg-section);
    border-top: 1px solid var(--c-rule);
    border-bottom: 1px solid var(--c-rule);
}
.ch-transparency .ch-grid-num {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.ch-transparency .ch-grid-cell p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}
.ch-transparency-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin: var(--space-lg) 0 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--c-rule);
}
.ch-transparency-links a {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-accent);
}
.ch-transparency-links a:hover { color: var(--c-accent-hover); text-decoration: underline; }

/* =============================================
   HERO ARTWORK
   ============================================= */
.ch-hero-art {
    aspect-ratio: auto;
    background: none;
    border-radius: 0;
    display: block;
}
.ch-hero-art img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 560px;
    margin-left: auto;
}
@media (max-width: 768px) {
    /* hero art stays visible on mobile, centred and capped */
    .ch-hero-art { display: block !important; }
    .ch-hero-art img { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 500px) {
    .ch-hero-art img { max-width: 320px; }
}

/* =============================================================
   LAUNCH HOMEPAGE  (page-home-launch.php)  — all classes lh-*
   Chivo is enqueued for this template only. Everything else on
   the site keeps Noah.
   ============================================================= */
.lh-page{
  --lh-s0:#DCE7F0;--lh-s1:#9FB8CC;--lh-s2:#4F7590;--lh-s3:#1E3E58;--lh-s4:#0B2034;--lh-s5:#03070D;
  --lh-ink:#03070D;--lh-paper:#EAF1F7;--lh-amber:#F2B233;--lh-red:#FF4D3D;--lh-sonar:#38E0C8;
  --lh-sans:'Chivo',sans-serif;--lh-mono:'Chivo Mono',monospace;
  background:var(--lh-s0)}
.lh-page #content{display:none!important}
.lh-wrap{max-width:1200px;margin:0 auto;padding:0 40px}
.lh-btn{display:inline-block;background:var(--lh-ink);color:var(--lh-paper)!important;padding:14px 26px;text-decoration:none!important;font-family:var(--lh-sans);font-weight:900;font-size:14px;letter-spacing:.04em;border-radius:3px;white-space:nowrap;transition:background .2s}
.lh-btn:hover{background:var(--lh-s3)} .lh-btn:focus-visible{outline:3px solid var(--lh-amber);outline-offset:3px}
.lh-btn.amber{background:var(--lh-amber);color:var(--lh-ink)!important;width:100%;text-align:center}.lh-btn.amber:hover{background:#f7c65a}
.lh-pre{font-family:var(--lh-mono);font-size:12px;letter-spacing:.14em;color:var(--lh-s3);margin-bottom:22px}

/* hero */
.lh-intro{position:relative;z-index:2;padding-top:32px;font-family:var(--lh-sans);color:var(--lh-ink)}
.lh-hero{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center;padding:24px 40px 72px}
.lh-hcopy h1{font-family:var(--lh-sans);font-weight:900;font-size:clamp(42px,5.6vw,80px);line-height:.95;letter-spacing:-.035em;margin:0 0 22px;max-width:13ch;color:var(--lh-ink)}
.lh-hcopy p{font-size:19px;line-height:1.6;max-width:48ch;margin:0 0 28px}
.lh-ctas{display:flex;align-items:center;gap:22px;flex-wrap:wrap;margin-bottom:22px}
.lh-ctas .lh-btn{padding:17px 28px}
.lh-link{font-weight:700;font-size:14px;color:var(--lh-ink)!important;text-decoration:none!important;border-bottom:2px solid var(--lh-ink)}
.lh-link:hover,.lh-link:focus-visible{color:var(--lh-red)!important;border-color:var(--lh-red);outline:none}
.lh-trust{list-style:none;display:flex;gap:18px;flex-wrap:wrap;margin:0;padding:0;font-family:var(--lh-mono);font-size:11px;letter-spacing:.06em;color:var(--lh-s3)}
.lh-trust li::before{content:'✓ ';color:#0f6b4a}
.lh-hscope{background:var(--lh-s5);border-radius:8px;padding:18px 18px 16px;box-shadow:0 30px 70px rgba(3,7,13,.35);color:#DCE6F0;font-family:var(--lh-mono)}
.lh-hs-top{display:flex;justify-content:space-between;font-size:10px;letter-spacing:.14em;color:#7F93AA;margin-bottom:12px}
.lh-hscope canvas{display:block;width:100%;height:260px;border:1px solid rgba(56,224,200,.18);border-radius:4px;background:#050B12}
.lh-hs-leg{display:flex;gap:22px;margin-top:14px;font-size:11px;letter-spacing:.06em}
.lh-hs-leg i{display:inline-block;width:18px;height:3px;border-radius:2px;vertical-align:middle;margin-right:8px}
.lh-hs-leg .b{color:var(--lh-amber)}.lh-hs-leg .b i{background:var(--lh-amber)}.lh-hs-leg .a{color:var(--lh-red)}.lh-hs-leg .a i{background:var(--lh-red)}
.lh-hs-note{margin-top:12px;font-family:var(--lh-sans);font-size:13px;color:#9FB2C6;line-height:1.5}
.lh-waterline{position:relative;z-index:2;border-top:2px solid var(--lh-ink);border-bottom:2px solid var(--lh-ink);background:rgba(255,255,255,.35);font-family:var(--lh-sans)}
.lh-waterline .lh-wrap{display:flex;justify-content:space-between;align-items:center;padding-top:16px;padding-bottom:16px;gap:16px;flex-wrap:wrap}
.lh-waterline span{font-weight:900;font-size:clamp(18px,2.2vw,26px);letter-spacing:-.02em;color:var(--lh-ink)}
.lh-waterline a{font-family:var(--lh-mono);font-size:12px;letter-spacing:.12em;color:var(--lh-ink)!important;text-decoration:none!important;border:1px solid var(--lh-ink);padding:9px 14px;border-radius:3px}
.lh-waterline a:hover,.lh-waterline a:focus-visible{background:var(--lh-ink);color:var(--lh-paper)!important;outline:none}

/* fixed instruments */
.lh-snow{position:fixed;inset:0;z-index:0;pointer-events:none;opacity:0}.lh-snow.on{opacity:1;transition:opacity .8s}
.lh-snd{position:fixed;right:32px;top:88px;z-index:70;font-family:var(--lh-mono);font-size:11px;letter-spacing:.14em;background:transparent;color:var(--lh-ink);border:1px solid currentColor;padding:8px 12px;cursor:pointer;border-radius:3px;opacity:0;transition:opacity .4s,color .3s}
.lh-snd.on{opacity:1}.lh-snd.dark{color:#DCE6F0}.lh-snd[aria-pressed="true"]{background:var(--lh-sonar);color:var(--lh-ink);border-color:var(--lh-sonar)}.lh-snd:focus-visible{outline:3px solid var(--lh-amber);outline-offset:3px}
.lh-rail{position:fixed;left:32px;top:50%;transform:translateY(-50%);height:62vh;width:52px;z-index:50;font-family:var(--lh-mono);opacity:0;transition:opacity .4s;pointer-events:none}
.lh-rail.on{opacity:1}
.lh-rail .line{position:absolute;left:24px;top:0;bottom:0;width:2px;background:rgba(255,255,255,.25)}
.lh-rail .tick{position:absolute;left:14px;width:22px;height:2px;background:rgba(255,255,255,.35)}
.lh-rail .tick span{position:absolute;left:32px;top:-9px;font-size:11px;color:rgba(255,255,255,.7);white-space:nowrap}
.lh-rail .crush{position:absolute;left:0;right:-90px;height:0;border-top:2px dashed var(--lh-red)}
.lh-rail .crush span{position:absolute;left:0;top:6px;font-size:10px;color:var(--lh-red);letter-spacing:.1em;white-space:nowrap}
.lh-rail .mark{position:absolute;left:12px;width:26px;height:26px;border-radius:50%;background:var(--lh-amber);border:3px solid var(--lh-ink);transform:translateY(-50%);transition:top .5s cubic-bezier(.2,.8,.2,1);box-shadow:0 0 0 6px rgba(242,178,51,.25)}
.lh-hud{position:fixed;left:0;right:0;bottom:0;z-index:50;background:rgba(3,7,13,.92);backdrop-filter:blur(8px);border-top:1px solid rgba(56,224,200,.25);color:#DCE6F0;font-family:var(--lh-mono);transform:translateY(100%);transition:transform .45s cubic-bezier(.2,.8,.2,1)}
.lh-hud.on{transform:none}.lh-hud.surfaced{border-top-color:var(--lh-amber)}
.lh-hud .in{max-width:1200px;margin:0 auto;padding:14px 40px;display:grid;grid-template-columns:260px 1fr 260px;gap:28px;align-items:center}
.lh-hud .v{display:grid;grid-template-columns:auto 1fr;gap:12px 14px;align-items:center;transition:transform .5s}
.lh-hud .v .id{grid-row:span 3;width:52px;height:52px;border-radius:50%;border:2px solid currentColor;display:grid;place-items:center;font-weight:700;font-size:16px;position:relative;overflow:visible}
.lh-hud .v.a .id{color:var(--lh-red)}.lh-hud .v.b .id{color:var(--lh-amber)}
.lh-hud .v .id::after{content:'';position:absolute;inset:-8px;border-radius:50%;border:2px solid currentColor;opacity:0;transform:scale(.6)}
.lh-hud .v.a.contact .id::after{animation:lh-ring 1.4s ease-out infinite}
@keyframes lh-ring{0%{opacity:.9;transform:scale(.6)}100%{opacity:0;transform:scale(1.7)}}
.lh-hud .v.a.stress{animation:lh-stress .18s steps(2) infinite}@keyframes lh-stress{50%{transform:translate(1px,-1px)}}
.lh-hud .v .id .frag{position:absolute;inset:-2px;border-radius:50%;border:2px solid currentColor;display:grid;place-items:center;font-weight:700;font-size:16px;background:rgba(3,7,13,.92);transition:transform .9s cubic-bezier(.3,.7,.2,1),opacity .9s}
.lh-hud .v .id .frag:nth-child(1){clip-path:polygon(0 0,50% 0,50% 50%,0 50%)}.lh-hud .v .id .frag:nth-child(2){clip-path:polygon(50% 0,100% 0,100% 50%,50% 50%)}.lh-hud .v .id .frag:nth-child(3){clip-path:polygon(0 50%,50% 50%,50% 100%,0 100%)}.lh-hud .v .id .frag:nth-child(4){clip-path:polygon(50% 50%,100% 50%,100% 100%,50% 100%)}
.lh-hud .v.a.lost .id .frag:nth-child(1){transform:translate(-14px,-12px) rotate(-22deg);opacity:0}.lh-hud .v.a.lost .id .frag:nth-child(2){transform:translate(14px,-10px) rotate(18deg);opacity:0}.lh-hud .v.a.lost .id .frag:nth-child(3){transform:translate(-12px,14px) rotate(16deg);opacity:0}.lh-hud .v.a.lost .id .frag:nth-child(4){transform:translate(12px,12px) rotate(-20deg);opacity:0}
.lh-hud .v.a.lost .id{border-style:dashed;opacity:.5}
.lh-hud .v .k{font-size:10px;letter-spacing:.12em;color:#7F93AA}.lh-hud .v .nm{font-weight:700;font-size:13px;color:#DCE6F0}.lh-hud .v .st{font-size:12px;font-weight:700}
.lh-hud .v.a .st{color:var(--lh-red)}.lh-hud .v.b .st{color:var(--lh-amber)}
.lh-hud .v .hull{display:flex;gap:2px}.lh-hud .v .hull i{flex:1;height:5px;background:#1B2A3B;border-radius:2px;transition:background .4s,opacity .4s}
.lh-hud .v.a .hull i.on{background:var(--lh-red)}.lh-hud .v.b .hull i.on{background:var(--lh-amber)}
.lh-hud .v.a .hull i.crack{animation:lh-crack .4s steps(3) both}@keyframes lh-crack{from{opacity:1}to{opacity:.12}}
.lh-hud .scope{position:relative;height:72px;border:1px solid rgba(56,224,200,.2);border-radius:4px;background:#050B12;overflow:hidden}
.lh-hud .scope canvas{display:block;width:100%;height:100%}
.lh-hud .scope .dep,.lh-hud .scope .pr{position:absolute;top:8px;font-size:10px;letter-spacing:.12em;color:#7F93AA}
.lh-hud .scope .dep{left:12px}.lh-hud .scope .pr{right:12px;text-align:right}
.lh-hud .scope b{display:block;font-family:var(--lh-sans);font-weight:900;font-size:26px;color:#DCE6F0;letter-spacing:-.02em;line-height:1;margin-top:2px;font-variant-numeric:tabular-nums}
.lh-hud .scope .pr b{color:var(--lh-sonar)}.lh-hud.surfaced .scope .dep b{color:var(--lh-sonar)}
.lh-hud .scope b small{font-family:var(--lh-mono);font-size:10px;font-weight:400;color:#7F93AA;letter-spacing:.1em}

/* layers */
.lh-layers{position:relative;z-index:1}
.lh-layer{position:sticky;top:0;min-height:100vh;display:flex;align-items:center;overflow:hidden;font-family:var(--lh-sans);color:var(--lh-ink)}
.lh-layer::before{content:'';position:absolute;inset:0;background:var(--lh-bg)}
.lh-layer .caustic{position:absolute;inset:0;pointer-events:none;opacity:.55;background:radial-gradient(60% 40% at 30% 0%,rgba(255,255,255,.45),transparent 70%),radial-gradient(40% 30% at 70% 0%,rgba(255,255,255,.3),transparent 70%);animation:lh-caustic 9s ease-in-out infinite alternate}
.lh-layer.L2 .caustic{opacity:.22}@keyframes lh-caustic{from{transform:translateX(-3%) scaleX(1)}to{transform:translateX(3%) scaleX(1.08)}}
.lh-layer .ping{position:absolute;left:18%;top:50%;width:0;height:0;pointer-events:none}
.lh-layer .ping i{position:absolute;left:0;top:0;width:12px;height:12px;margin:-6px 0 0 -6px;border-radius:50%;border:1.5px solid var(--lh-sonar);opacity:0;animation:lh-ping var(--lh-pd) ease-out infinite}
.lh-layer .ping i:nth-child(2){animation-delay:calc(var(--lh-pd)/3)}.lh-layer .ping i:nth-child(3){animation-delay:calc(var(--lh-pd)*2/3)}
@keyframes lh-ping{0%{transform:scale(1);opacity:.7}100%{transform:scale(140);opacity:0}}
.lh-layer .lh-wrap{position:relative;display:grid;grid-template-columns:.85fr 1.15fr;gap:64px;align-items:center;width:100%;padding-left:120px}
.lh-layer .d{font-weight:900;font-size:clamp(34px,5.4vw,78px);line-height:.93;letter-spacing:-.035em}
.lh-layer .d small{display:block;font-family:var(--lh-mono);font-weight:400;font-size:11px;letter-spacing:.16em;margin-bottom:14px;opacity:.65}
.lh-layer .t p{font-size:18px;line-height:1.6;margin:0 0 16px;max-width:52ch}
.lh-layer .t .res{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px;font-family:var(--lh-mono);font-size:12px}
.lh-layer .t .res div{padding:12px 14px;border-radius:4px;border:1px solid currentColor}
.lh-layer .t .res b{display:block;font-weight:700;margin-bottom:4px;font-size:10px;letter-spacing:.14em;opacity:.7}
.lh-layer .res .ok{color:#0f6b4a;border-color:#0f6b4a!important}.lh-layer .res .no{color:#B8321C;border-color:#B8321C!important}
.lh-layer.L1{--lh-bg:var(--lh-s1);--lh-pd:5.5s}.lh-layer.L2{--lh-bg:var(--lh-s2);--lh-pd:4.5s;color:var(--lh-paper)}.lh-layer.L3{--lh-bg:var(--lh-s3);--lh-pd:3.2s;color:var(--lh-paper)}.lh-layer.L4{--lh-bg:var(--lh-s4);--lh-pd:2.2s;color:var(--lh-paper)}.lh-layer.L5{--lh-bg:var(--lh-s5);--lh-pd:1.4s;color:var(--lh-paper)}
.lh-layer.L2 .res .ok,.lh-layer.L3 .res .ok,.lh-layer.L4 .res .ok,.lh-layer.L5 .res .ok{color:var(--lh-amber);border-color:var(--lh-amber)!important}
.lh-layer.L2 .res .no,.lh-layer.L3 .res .no,.lh-layer.L4 .res .no,.lh-layer.L5 .res .no{color:var(--lh-red);border-color:var(--lh-red)!important}
.lh-layer.L5 .d{color:var(--lh-sonar)}
.lh-layer.L3::after,.lh-layer.L4::after,.lh-layer.L5::after{content:'CROSSOVER';position:absolute;right:40px;top:40px;font-family:var(--lh-mono);font-size:11px;letter-spacing:.2em;color:var(--lh-red);border:1px solid var(--lh-red);padding:6px 10px;animation:lh-flash 1.2s steps(2) infinite}
.lh-layer.L5::after{content:'CONTEXTS MIXED · ONE SHARED BROWSER'}@keyframes lh-flash{50%{opacity:.25}}

/* surface + offer + pricing */
.lh-surface{position:relative;z-index:5;background:var(--lh-paper);padding:140px 0 120px;border-top:2px solid var(--lh-ink);font-family:var(--lh-sans);color:var(--lh-ink)}
.lh-surface h2,.lh-pricing h2{font-family:var(--lh-sans);font-weight:900;font-size:clamp(40px,6.4vw,92px);line-height:.93;letter-spacing:-.035em;max-width:14ch;margin:0 0 26px;color:var(--lh-ink)}
.lh-surface h2 span{color:var(--lh-red)}
.lh-lead{font-size:20px;line-height:1.6;max-width:56ch;margin:0}
.lh-two{display:grid;grid-template-columns:1fr 1fr;gap:56px;margin-top:44px}
.lh-two b{display:block;font-family:var(--lh-mono);font-size:11px;letter-spacing:.14em;margin-bottom:10px;color:var(--lh-s3)}
.lh-two p{font-size:17px;line-height:1.6;margin:0}
.lh-offer{position:relative;z-index:5;background:var(--lh-s5);color:#DCE6F0;padding:110px 0;font-family:var(--lh-sans)}
.lh-ob{display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:start}
.lh-ol h2{font-family:var(--lh-sans);font-weight:900;font-size:clamp(34px,4.6vw,62px);line-height:.95;letter-spacing:-.035em;margin:18px 0 22px;max-width:16ch;color:#fff}
.lh-ol p{font-size:18px;line-height:1.6;color:#B8C6D6;max-width:56ch;margin:0 0 24px}
.lh-oli{list-style:none;margin:0 0 28px;padding:0;border-top:1px solid rgba(255,255,255,.12)}
.lh-oli li{display:flex;align-items:baseline;gap:12px;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.12);font-size:17px;flex-wrap:wrap}
.lh-oli b{width:60px;font-weight:900}.lh-oli s{color:#7F93AA}.lh-oli em{font-style:normal;font-weight:900;font-size:24px;color:var(--lh-amber);letter-spacing:-.02em}
.lh-oc,.lh-code{display:inline-flex;align-items:center;gap:16px;border:1px solid var(--lh-amber);border-radius:4px;padding:14px 18px;margin:0 12px 18px 0;font-family:var(--lh-mono);background:rgba(242,178,51,.1)}
.lh-oc .k,.lh-code .k{font-size:10px;letter-spacing:.14em;color:var(--lh-amber)}
.lh-oc b,.lh-code b{font-family:var(--lh-sans);font-weight:900;font-size:22px;letter-spacing:-.02em;color:#fff}
.lh-oc b small{font-family:var(--lh-mono);font-size:11px;font-weight:400;color:#7F93AA;letter-spacing:.1em}
.lh-code b{font-family:var(--lh-mono);letter-spacing:.06em;color:var(--lh-amber)}
.lh-ofine{font-size:13px!important;color:#7F93AA!important;max-width:60ch}
.lh-pro{background:#0F1E30;border:1px solid var(--lh-amber);border-radius:8px;padding:32px;position:relative}
.lh-pro::before{content:'';position:absolute;inset:-1px;border-radius:8px;box-shadow:0 0 0 6px rgba(242,178,51,.12);pointer-events:none}
.lh-pro .pk{font-family:var(--lh-mono);font-size:10px;letter-spacing:.14em;color:var(--lh-amber);margin-bottom:14px}
.lh-pro h3{font-family:var(--lh-sans);font-weight:900;font-size:26px;line-height:1.05;letter-spacing:-.03em;margin:0 0 14px;color:#fff}
.lh-pro p{font-size:16px;line-height:1.6;color:#B8C6D6;margin:0 0 18px}
.lh-pro ul{list-style:none;margin:0 0 24px;padding:0}.lh-pro li{padding:8px 0;border-top:1px solid rgba(255,255,255,.1);font-size:15px}.lh-pro li::before{content:'✓ ';color:var(--lh-amber)}
.lh-pricing{position:relative;z-index:5;background:var(--lh-paper);padding:110px 0 200px;font-family:var(--lh-sans);color:var(--lh-ink)}
.lh-bands{border-top:2px solid var(--lh-ink)}
.lh-bands .band{display:grid;grid-template-columns:150px 200px 1fr auto;gap:28px;align-items:center;padding:28px 0;border-bottom:1px solid var(--lh-s1)}
.lh-bands .n{font-weight:900;font-size:30px;letter-spacing:-.02em}
.lh-bands .pr{font-weight:900;font-size:44px;line-height:1;letter-spacing:-.03em;font-variant-numeric:tabular-nums}
.lh-bands .pr s{font-size:22px;color:var(--lh-s3);margin-right:8px;font-weight:700}
.lh-bands .pr small{font-family:var(--lh-mono);font-size:11px;font-weight:400;color:var(--lh-s3);letter-spacing:.06em}
.lh-bands .band.rec{background:#fff;margin:0 -40px;padding:28px 40px}.lh-bands .band.rec .pr{color:var(--lh-red)}
.lh-fine{color:var(--lh-s3);margin:20px 0 0;font-size:15px}.lh-fine b{font-family:var(--lh-mono);color:var(--lh-ink)}
/* the transparency block sits between offer and pricing; give it the launch page's type */
.lh-page .ch-transparency{position:relative;z-index:5}

@media(prefers-reduced-motion:reduce){.lh-layer .ping,.lh-layer .caustic{display:none}.lh-layer.L3::after,.lh-layer.L4::after,.lh-layer.L5::after,.lh-hud .v.a.contact .id::after,.lh-hud .v.a.stress,.lh-hud .v.a .hull i.crack{animation:none}.lh-hud .v .id .frag{transition:none}}
@media(max-width:1000px){
  .lh-wrap{padding:0 20px}.lh-hero{grid-template-columns:1fr;gap:32px;padding:16px 20px 48px}.lh-hcopy h1{font-size:clamp(38px,10vw,56px)}.lh-hcopy p{font-size:17px}.lh-ctas .lh-btn{width:100%;text-align:center}.lh-hscope canvas{height:180px}
  .lh-rail{display:none}.lh-snd{right:16px;top:74px;font-size:10px;padding:6px 10px}
  .lh-hud .in{grid-template-columns:1fr;gap:10px;padding:10px 20px}.lh-hud .scope{height:56px}.lh-hud .v .id{width:40px;height:40px;font-size:13px}
  .lh-layer .lh-wrap{padding-left:20px;grid-template-columns:1fr;gap:24px}.lh-layer{min-height:auto;padding:80px 0 140px;position:relative}
  .lh-layer.L3::after,.lh-layer.L4::after,.lh-layer.L5::after{top:20px;right:20px;font-size:9px}
  .lh-two,.lh-ob{grid-template-columns:1fr}.lh-offer,.lh-surface{padding:70px 0}.lh-oli b{width:auto}
  .lh-bands .band{grid-template-columns:1fr 1fr}.lh-bands .band>*:nth-child(3){grid-column:1/-1}.lh-bands .band .lh-btn{grid-column:1/-1;text-align:center;padding:14px}.lh-bands .band.rec{margin:0 -20px;padding:28px 20px}
}


/* ── launch-style landers (no JS) ── */
.lh-static svg{display:block;width:100%;height:auto;aspect-ratio:600/160;border:1px solid rgba(56,224,200,.18);border-radius:4px}
.lh-sec{position:relative;z-index:2;padding:96px 0;font-family:var(--lh-sans);color:var(--lh-ink)}
.lh-sec.dark{background:var(--lh-s5);color:#DCE6F0}.lh-sec.mid{background:var(--lh-s1)}
.lh-sec h2{font-family:var(--lh-sans);font-weight:900;font-size:clamp(34px,5vw,64px);line-height:.95;letter-spacing:-.035em;max-width:16ch;margin:0 0 22px}
.lh-sec.dark h2{color:#fff}.lh-sec p{font-size:18px;line-height:1.6;max-width:56ch;margin:0 0 18px}.lh-sec.dark p{color:#B8C6D6}
.lh-sec .lh-pre{margin-bottom:16px}
.lh-ctx{border-top:2px solid currentColor;margin-top:28px;font-family:var(--lh-mono);font-size:14px}
.lh-ctx .row{display:grid;grid-template-columns:70px 1fr 170px 170px;gap:18px;padding:16px 0;border-bottom:1px solid rgba(0,0,0,.15);align-items:center}
.lh-sec.dark .lh-ctx .row{border-bottom-color:rgba(255,255,255,.12)}
.lh-ctx .row.h{font-size:10px;letter-spacing:.14em;opacity:.6;padding:10px 0}
.lh-ctx .row b{font-family:var(--lh-sans);font-weight:900;font-size:28px;letter-spacing:-.03em}
.lh-ctx .row span:nth-child(2){font-family:var(--lh-sans);font-size:16px}
.lh-ctx .ok{color:#0f6b4a}.lh-sec.dark .lh-ctx .ok{color:var(--lh-amber)}
.lh-ctx .bad{color:#B8321C;font-weight:700}.lh-sec.dark .lh-ctx .bad{color:var(--lh-red)}
.lh-ctx .row.no b{color:#B8321C}.lh-sec.dark .lh-ctx .row.no b{color:var(--lh-red)}
.lh-plans{width:100%;border-collapse:collapse;font-family:var(--lh-mono);font-size:14px;margin-top:22px;border-top:2px solid var(--lh-ink)}
.lh-plans th,.lh-plans td{text-align:left;padding:14px 12px;border-bottom:1px solid var(--lh-s1);vertical-align:top}
.lh-plans th{font-size:10px;letter-spacing:.14em;color:var(--lh-s3);font-weight:400}
.lh-plans td b{font-family:var(--lh-sans);font-weight:900;font-size:18px}
.lh-plans td s{color:var(--lh-s3);margin-right:6px}.lh-plans td em{font-style:normal;font-weight:900;color:var(--lh-red)}
.lh-two.tight{margin-top:28px;gap:36px}
@media(max-width:1000px){.lh-sec{padding:64px 0}.lh-ctx .row{grid-template-columns:50px 1fr;gap:8px 14px}.lh-ctx .row span:nth-child(3),.lh-ctx .row span:nth-child(4){grid-column:2;font-size:12px}.lh-ctx .row.h span:nth-child(3),.lh-ctx .row.h span:nth-child(4){display:none}.lh-plans{display:block;overflow-x:auto}}


/* =============================================================
   SCANNABLE COPY SYSTEM + LONGFORM CALLOUTS  (v2.12)
   ============================================================= */
.lh-q{font-family:var(--lh-mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--lh-s3);margin-bottom:12px}
.lh-sec.dark .lh-q{color:var(--lh-amber)}
.lh-lines{list-style:none;margin:0 0 22px;padding:0;max-width:56ch}
.lh-lines li{font-size:18px;line-height:1.5;padding:6px 0;color:var(--lh-ink)}
.lh-lines li.k{font-weight:900;font-size:19px;padding-top:18px}
.lh-lines li.t{font-family:var(--lh-mono);font-size:13px;color:var(--lh-s3);padding:10px 14px;background:rgba(0,0,0,.05);border-radius:4px;margin-top:6px}
.lh-lines li.t::before{content:'TEST IT  ';font-weight:700;letter-spacing:.12em;color:var(--lh-red)}
.lh-sec.dark .lh-lines li{color:#DCE6F0}.lh-sec.dark .lh-lines li.t{color:#9FB2C6;background:rgba(255,255,255,.06)}
.lh-lines li.hold{padding:14px 0 6px;font-size:17px;color:var(--lh-s3);border-top:1px solid rgba(0,0,0,.12);margin-top:8px}
.lh-sec.dark .lh-lines li.hold{color:#9FB2C6;border-top-color:rgba(255,255,255,.14)}
.lh-lines li code{font-family:var(--lh-mono);font-weight:700}
.lh-hcopy .lh-lines{margin-bottom:26px}.lh-hcopy .lh-lines li{font-size:17px;padding:4px 0}
.lh-deck{font-size:22px;line-height:1.4;font-weight:400;font-style:italic;color:var(--lh-s3);max-width:44ch;margin:0 0 26px}
.lh-callout{border:2px solid var(--lh-ink);border-radius:6px;padding:22px 26px;margin:34px 0;max-width:720px;background:rgba(255,255,255,.4);position:relative}
.lh-callout .cl{position:absolute;top:-11px;left:20px;background:var(--lh-amber);color:var(--lh-ink);font-family:var(--lh-mono);font-size:10px;font-weight:700;letter-spacing:.16em;padding:4px 10px;border-radius:3px}
.lh-callout p{font-size:18px;line-height:1.5;margin:0;font-weight:700;color:var(--lh-ink)}
.lh-callout p+p{font-weight:400;margin-top:10px;color:var(--lh-s3);font-size:16px}
.lh-sec.dark .lh-callout{border-color:var(--lh-amber);background:rgba(242,178,51,.06)}.lh-sec.dark .lh-callout p{color:#fff}.lh-sec.dark .lh-callout p+p{color:#B8C6D6}
.lh-pull{font-weight:900;font-size:clamp(26px,3.6vw,40px);line-height:1.1;letter-spacing:-.03em;border-left:4px solid var(--lh-red);padding-left:22px;margin:40px 0;max-width:22ch;color:var(--lh-ink)}
.lh-sec.dark .lh-pull{color:#fff;border-color:var(--lh-amber)}
.lh-story{background:var(--lh-s5);color:#DCE6F0;border-radius:8px;padding:28px 30px;margin:34px 0;max-width:720px;font-size:17px;line-height:1.6}
.lh-story .sl{font-family:var(--lh-mono);font-size:10px;letter-spacing:.16em;color:var(--lh-red);margin-bottom:14px;display:block}
.lh-story p{margin:0 0 12px;color:#DCE6F0;font-size:17px;max-width:none}.lh-story p:last-child{margin:0;color:var(--lh-amber);font-weight:700}
.lh-side{font-family:var(--lh-mono);font-size:12.5px;line-height:1.7;color:var(--lh-s3);border-top:1px dashed rgba(0,0,0,.25);border-bottom:1px dashed rgba(0,0,0,.25);padding:14px 0;margin:26px 0;max-width:52ch}
.lh-sec.dark .lh-side{color:#9FB2C6;border-color:rgba(255,255,255,.25)}.lh-side b{color:var(--lh-red);letter-spacing:.1em}
.lh-bonus{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:8px}
.lh-bcard{border:1px solid rgba(255,255,255,.14);border-radius:8px;padding:26px;background:rgba(255,255,255,.04)}
.lh-bcard .bk{font-family:var(--lh-mono);font-size:10px;letter-spacing:.16em;color:var(--lh-amber);margin-bottom:10px}
.lh-bcard h3{font-family:var(--lh-sans);font-weight:900;font-size:22px;letter-spacing:-.02em;line-height:1.1;color:#fff;margin:0 0 14px}
.lh-bcard .lh-lines{max-width:none;margin:0}.lh-bcard .lh-lines li{font-size:15px;padding:4px 0;color:#B8C6D6}
.lh-bcard .lh-lines li.k{color:#fff;font-size:15px;padding-top:12px}.lh-bcard .lh-lines li.t{color:#9FB2C6;background:rgba(255,255,255,.06)}
.lh-bcard .lh-lines li.t::before{content:'YOU APPROVE  ';color:var(--lh-amber)}
.lh-bcard .lh-lines li.cmd{font-family:var(--lh-mono);font-size:13px;color:var(--lh-amber)}
.lh-ps{max-width:720px;margin:70px auto 0;padding:40px 0 0;border-top:2px solid var(--lh-ink)}
.lh-ps .pk{font-weight:900;font-size:20px;letter-spacing:-.01em;margin-right:8px}
.lh-ps p{font-size:18px;line-height:1.6;margin:0 0 14px;max-width:none}
/* checkout + thank-you in the launch palette */
.lh-page .ch-checkout-hero{background:var(--lh-s5);padding:56px 20px 44px;text-align:center;font-family:var(--lh-sans)}
.lh-page .ch-checkout-hero h1{font-family:var(--lh-sans);font-weight:900;font-size:clamp(30px,4.6vw,52px);letter-spacing:-.03em;line-height:.98;color:#fff;margin:0 0 10px}
.lh-page .ch-checkout-hero p{color:#9FB2C6;font-size:16px;margin:0}
.lh-page .ch-checkout-hero .ch-label{font-family:var(--lh-mono);color:var(--lh-amber);letter-spacing:.16em}
.lh-page .ch-checkout-body{background:var(--lh-s0);padding:56px 20px 90px;font-family:var(--lh-sans)}
.lh-page .ch-checkout-body-inner{max-width:1200px;margin:0 auto;display:grid!important;grid-template-columns:1.4fr 1fr!important;gap:36px;align-items:start}
.lh-page .ch-checkout-form-col{background:#fff;border:1px solid rgba(14,17,22,.14);border-radius:8px;padding:28px;min-width:0;overflow:hidden}
.lh-page .ch-checkout-form-col iframe{width:100%!important;border:0!important;display:block}
.lh-page .ch-checkout-trust-col{display:flex;flex-direction:column;gap:14px;min-width:0}
.lh-page .ch-checkout-block{background:#fff;border:1px solid rgba(14,17,22,.14);border-radius:8px;padding:22px}
.lh-page .ch-checkout-block h3{font-family:var(--lh-mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--lh-s3);margin:0 0 10px}
.lh-page .ch-checkout-block p{font-size:15px;color:var(--lh-ink);line-height:1.6;margin:0}
.lh-page .ch-checkout-includes{list-style:none;margin:0;padding:0}
.lh-page .ch-checkout-includes li{padding:7px 0;border-top:1px solid rgba(14,17,22,.1);font-size:15px}.lh-page .ch-checkout-includes li:first-child{border-top:0}
.lh-page .ch-checkout-includes li::before{content:'✓ ';color:var(--lh-red);font-weight:700}
.lh-code-checkout{background:var(--lh-amber);color:var(--lh-ink);border-radius:6px;padding:16px 20px;text-align:center;margin-bottom:18px;font-family:var(--lh-sans)}
.lh-code-checkout .k{display:block;font-family:var(--lh-mono);font-size:10px;letter-spacing:.16em;margin-bottom:4px;opacity:.75}
.lh-code-checkout p{margin:0;font-weight:900;font-size:18px;letter-spacing:-.01em}
.lh-code-checkout b{font-family:var(--lh-mono);font-size:22px;background:rgba(0,0,0,.12);padding:2px 12px;border-radius:4px;margin:0 4px}
.lh-page .ch-ty{background:var(--lh-s0);padding:110px 20px;text-align:center;font-family:var(--lh-sans)}
.lh-page .ch-ty h1{font-family:var(--lh-sans);font-weight:900;font-size:clamp(34px,5.4vw,64px);letter-spacing:-.03em;line-height:.96;color:var(--lh-ink)}
.lh-page .ch-ty p{font-size:18px;color:var(--lh-s3);max-width:52ch;margin:14px auto 0}
.lh-page .ch-ty-badge{display:inline-block;font-family:var(--lh-mono);font-size:11px;letter-spacing:.16em;color:var(--lh-red);border:1px solid var(--lh-red);padding:6px 12px;border-radius:3px;margin-bottom:22px}
.lh-page .ch-ty .lh-btn{margin-top:26px}
.lh-plans-tbl{width:100%;border-collapse:collapse;font-family:var(--lh-mono);font-size:14px;margin-top:22px;border-top:2px solid var(--lh-ink)}
.lh-plans-tbl th,.lh-plans-tbl td{text-align:left;padding:14px 12px;border-bottom:1px solid var(--lh-s1);vertical-align:top}
.lh-plans-tbl th{font-size:10px;letter-spacing:.14em;color:var(--lh-s3);font-weight:400}
.lh-plans-tbl td b{font-family:var(--lh-sans);font-weight:900;font-size:18px}.lh-plans-tbl td s{color:var(--lh-s3);margin-right:6px}.lh-plans-tbl td em{font-style:normal;font-weight:900;color:var(--lh-red)}
.lh-compare{width:100%;border-collapse:collapse;font-family:var(--lh-mono);font-size:14px;margin-top:26px;background:rgba(255,255,255,.35);border:1px solid rgba(0,0,0,.12);border-radius:6px;overflow:hidden}
.lh-compare th,.lh-compare td{text-align:left;padding:14px;border-bottom:1px solid rgba(0,0,0,.1)}
.lh-compare th{font-size:10px;letter-spacing:.14em;color:var(--lh-s3);font-weight:400;background:rgba(0,0,0,.04)}
.lh-compare td b{font-family:var(--lh-sans);font-weight:900}.lh-compare .y{color:#0f6b4a;font-weight:700}.lh-compare .n{color:var(--lh-s3)}
@media(max-width:1000px){.lh-lines li{font-size:16px}.lh-bonus{grid-template-columns:1fr}.lh-callout{padding:18px}.lh-story{padding:20px}.lh-page .ch-checkout-body-inner{grid-template-columns:1fr!important}.lh-plans-tbl,.lh-compare{display:block;overflow-x:auto}}


/* =============================================================
   v2.13 — READABILITY (no reverse-type reading sections, amber buttons,
   real italic, bigger small text) + GRAPHICS LIBRARY (gx-*)
   ============================================================= */
.lh-btn{background:var(--lh-amber)!important;color:var(--lh-ink)!important;border:2px solid var(--lh-ink);box-shadow:0 4px 0 var(--lh-ink);border-radius:4px}
.lh-btn:hover{background:#FFD24D!important}.lh-btn.amber{background:var(--lh-amber)!important}
.lh-pre{font-size:12px;letter-spacing:.08em}.lh-hcopy h1{margin-bottom:18px}.lh-hcopy .lh-ctas{margin:0 0 22px}
.lh-deck{font-style:italic;font-size:20px;color:#2A4560;max-width:46ch}
.lh-q{font-size:12px;letter-spacing:.12em}.lh-lines li{font-size:18px}.lh-lines li.k{font-size:20px}
.lh-lines li.t{font-size:14px;color:#2A4560;background:rgba(30,62,88,.08)}.lh-side{font-size:14px;color:#2A4560}
.lh-sec.tint{background:var(--lh-s1);color:var(--lh-ink)}
.lh-sec.tint .lh-q{color:#2A4560}.lh-sec.tint .lh-lines li{color:var(--lh-ink)}.lh-sec.tint .lh-lines li.t{color:#2A4560;background:rgba(3,7,13,.06)}
.lh-sec.tint .lh-pull{color:var(--lh-ink);border-color:var(--lh-red)}.lh-sec.tint .lh-side{color:#2A4560;border-color:rgba(3,7,13,.25)}
.lh-sec.tint .lh-callout{border-color:var(--lh-ink);background:rgba(255,255,255,.55)}.lh-sec.tint .lh-callout p{color:var(--lh-ink)}.lh-sec.tint .lh-callout p+p{color:#2A4560}
.lh-sec.tint .lh-ctx .row{border-bottom-color:rgba(3,7,13,.14)}.lh-sec.tint .lh-ctx .ok{color:#0f6b4a}.lh-sec.tint .lh-ctx .bad,.lh-sec.tint .lh-ctx .row.no b{color:#B8321C}
.lh-story{background:#fff;color:var(--lh-ink);border:2px solid var(--lh-ink)}.lh-story p{color:var(--lh-ink)}.lh-story p:last-child{color:#B8321C}.lh-story .sl{color:#B8321C}
.lh-bonus .lh-bcard{background:#fff;border:1px solid rgba(3,7,13,.14)}.lh-bcard h3{color:var(--lh-ink)}.lh-bcard .bk{color:#B8321C}
.lh-bcard .lh-lines li{color:#2A4560}.lh-bcard .lh-lines li.k{color:var(--lh-ink)}.lh-bcard .lh-lines li.t{color:#2A4560;background:rgba(3,7,13,.06)}.lh-bcard .lh-lines li.t::before{color:#B8321C}.lh-bcard .lh-lines li.cmd{color:#B8321C}
.lh-offer{background:#fff;color:var(--lh-ink);border-top:4px solid var(--lh-amber);border-bottom:4px solid var(--lh-amber)}
.lh-ol h2{color:var(--lh-ink)}.lh-ol p,.lh-offer .lh-lines li{color:#2A4560!important}
.lh-oli{border-top-color:rgba(3,7,13,.14)}.lh-oli li{border-bottom-color:rgba(3,7,13,.14);color:var(--lh-ink)}.lh-oli s{color:#7A8794}.lh-oli em{color:#B8321C}
.lh-oc,.lh-code{background:rgba(242,178,51,.18);border-color:var(--lh-amber);display:flex;flex-wrap:wrap;max-width:100%;gap:8px 16px}.lh-oc .k,.lh-code .k{color:#8A5A00}.lh-oc b{color:var(--lh-ink)}.lh-code b{color:#8A5A00}
.lh-ofine{color:#2A4560!important}
.lh-pro{background:var(--lh-s1);border:2px solid var(--lh-ink)}.lh-pro::before{display:none}.lh-pro .pk{color:#B8321C}.lh-pro h3{color:var(--lh-ink)}.lh-pro p,.lh-pro li{color:#2A4560}.lh-pro li{border-top-color:rgba(3,7,13,.12)}.lh-pro li::before{color:#B8321C}
.lh-ps{border-top-color:var(--lh-ink)}
.lh-ob>*,.lh-two>*,.lh-bonus>*,.lh-hero>*{min-width:0}.lh-lines li,.lh-callout p,.lh-story p,.lh-ofine{overflow-wrap:anywhere}
.lh-pro,.lh-bcard,.lh-callout,.lh-story,.lh-ctx{max-width:100%;box-sizing:border-box}.lh-page{overflow-x:hidden}
.lh-story.side{margin:0}.lh-storyrow{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start;margin:34px 0}
.lh-gx-wrap{margin:26px 0 8px}
/* ── browser icons incl. Edge ── */
.bi{display:inline-block;width:16px;height:16px;border-radius:50%;vertical-align:middle;position:relative}
.bi.ch{background:conic-gradient(#EA4335 0 33%,#FBBC05 0 66%,#34A853 0)}.bi.ch::after{content:'';position:absolute;inset:4.5px;border-radius:50%;background:#4285F4}
.bi.ff{background:radial-gradient(circle at 35% 35%,#FFD86B,#FF7139 55%,#E33B2E)}.bi.bv{background:#FB542B}
.bi.ed{background:conic-gradient(from 200deg,#0C59A4,#33C481,#7FE0A6,#0C59A4)}.bi.ed::after{content:'';position:absolute;inset:5px;border-radius:50%;background:#fff}
/* ── 01 dashboard ── */
.gx-dash{background:#1C1F24;border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:14px 16px 10px;color:#E8EAEE;font-size:13px;box-shadow:0 30px 60px rgba(3,7,13,.25);font-family:var(--lh-sans)}
.gx-dash .top{display:flex;align-items:center;gap:12px;padding-bottom:12px;border-bottom:1px solid rgba(255,255,255,.08);margin-bottom:12px}
.gx-dash .lg{display:flex;align-items:center;gap:7px;font-weight:600}.gx-dash .lg i{width:16px;height:16px;border-radius:50%;background:conic-gradient(from 200deg,#0c6c54,#60c024,#fcfc00,#f0cc48,#f0a848,#f06c3c,#e43c30,#8424f0,#543c84,#3090f0,#18c0f0,#0c6c54);-webkit-mask:radial-gradient(circle,transparent 42%,#000 44%);mask:radial-gradient(circle,transparent 42%,#000 44%)}
.gx-dash .srch{margin-left:auto;background:#2A2E35;border-radius:6px;padding:6px 12px;font-size:12px;color:#8A919C;width:44%}
.gx-dash .h{font-weight:600;font-size:17px;margin:2px 0 10px}
.gx-dash .tags{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:12px}.gx-dash .tags span{background:#2A2E35;border-radius:5px;padding:4px 9px;font-size:11px;color:#C9CED6}.gx-dash .tags span.on{background:var(--lh-amber);color:#1C1F24;font-weight:700}
.gx-dash .sub{display:flex;justify-content:space-between;font-weight:600;font-size:12.5px;margin-bottom:6px}.gx-dash .sub span+span{font-weight:400;color:#8A919C;font-size:11px}
.gx-dash .row{display:flex;align-items:center;gap:10px;padding:9px 8px;border-radius:6px;background:#23272E;margin-bottom:5px}
.gx-dash .row b{width:24px;height:24px;border-radius:50%;background:var(--av);color:#fff;display:grid;place-items:center;font-size:11px;font-weight:700;flex-shrink:0}
.gx-dash .nm{flex:1;font-size:12.5px;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.gx-dash .br{display:flex;gap:5px}.gx-dash .br .bi{width:14px;height:14px}
.gx-dash .st{font-family:var(--lh-mono);font-size:10px;color:#6FCF97;width:52px;text-align:right}.gx-dash .st.i{color:#8A919C}
/* ── 02/03 chat ── */
.gx-chat{background:#F7F9FB;border:1px solid rgba(3,7,13,.14);border-radius:12px;overflow:hidden;font-size:13.5px;box-shadow:0 20px 50px rgba(3,7,13,.12);font-family:var(--lh-sans);color:var(--lh-ink);margin-top:18px}
.gx-chat .h{display:flex;align-items:center;gap:12px;padding:12px 16px;background:#fff;border-bottom:1px solid rgba(3,7,13,.08)}
.gx-chat .av{width:32px;height:32px;border-radius:50%;background:conic-gradient(from 200deg,#0c6c54,#60c024,#fcfc00,#f0cc48,#f0a848,#f06c3c,#e43c30,#8424f0,#543c84,#3090f0,#18c0f0,#0c6c54);position:relative;flex-shrink:0}.gx-chat .av::after{content:'';position:absolute;inset:8px;border-radius:50%;background:#fff}
.gx-chat .h b{display:block;font-size:14px;line-height:1.2}.gx-chat .h span{font-size:11.5px;color:#6B7A8A;font-family:var(--lh-mono)}
.gx-chat .body{padding:14px 12px;display:flex;flex-direction:column;gap:8px}
.gx-chat .m{max-width:90%;padding:9px 12px 7px;border-radius:12px;line-height:1.45;font-size:13.5px}
.gx-chat .m.in{background:#fff;border:1px solid rgba(3,7,13,.1);align-self:flex-start;border-bottom-left-radius:4px}
.gx-chat .m.out{background:var(--lh-ink);color:#fff;align-self:flex-end;border-bottom-right-radius:4px}
.gx-chat .m .t{display:block;text-align:right;font-size:10.5px;color:#8A97A6;margin-top:3px;font-family:var(--lh-mono)}.gx-chat .m.out .t{color:#9FB2C6}
.gx-chat .m b{font-weight:700}.gx-chat .m code{font-family:var(--lh-mono);font-size:12px;color:#B8321C}.gx-chat .m.out code{color:var(--lh-amber)}
.gx-chat .m .ok{color:#0f6b4a;font-weight:700}
.gx-chat .m ul{list-style:none;margin:4px 0 0;padding:0}.gx-chat .m li{padding:1px 0;font-size:13px}.gx-chat .m li::before{content:'• ';color:#8A97A6}
.gx-chat .in2{display:flex;gap:10px;padding:10px 12px;background:#fff;border-top:1px solid rgba(3,7,13,.08);font-size:13px;color:#8A97A6}
.gx-chat .lnk{display:block;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);border-radius:8px;padding:8px 10px;margin-top:4px;font-size:12px}
.gx-chat .lnk b{display:block;font-size:12.5px}.gx-chat .lnk span{color:#9FB2C6;font-family:var(--lh-mono);font-size:11px}
/* ── 04 pile vs boxes ── */
.gx-pvb{display:grid;grid-template-columns:1fr auto 1fr;gap:20px;align-items:center;margin:30px 0 40px;font-family:var(--lh-sans)}
.gx-pile{position:relative;height:250px}
.gx-pile .tab{position:absolute;width:68%;background:#fff;border:1.5px solid var(--lh-s3);border-radius:8px;padding:10px 12px;font-size:12px;box-shadow:0 8px 18px rgba(3,7,13,.12)}
.gx-pile .tab b{display:block;font-size:11px;font-family:var(--lh-mono);color:#B8321C;letter-spacing:.06em}.gx-pile .tab span{color:#2A4560}
.gx-pile .tab:nth-child(1){left:2%;top:6%;transform:rotate(-7deg)}.gx-pile .tab:nth-child(2){left:26%;top:22%;transform:rotate(5deg)}.gx-pile .tab:nth-child(3){left:8%;top:44%;transform:rotate(-3deg)}.gx-pile .tab:nth-child(4){left:30%;top:60%;transform:rotate(8deg)}.gx-pile .tab:nth-child(5){left:14%;top:76%;transform:rotate(-5deg)}
.gx-pile .cap{position:absolute;bottom:-26px;left:0;font-family:var(--lh-mono);font-size:11px;letter-spacing:.1em;color:#B8321C}
.gx-arrow{font-size:30px;color:var(--lh-ink);font-weight:900}
.gx-boxes{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.gx-box{background:#fff;border:2px solid var(--lh-ink);border-radius:8px;padding:12px;font-size:12px;box-shadow:4px 4px 0 var(--lh-ink)}
.gx-box b{display:block;font-family:var(--lh-mono);font-size:11px;letter-spacing:.06em;color:#0f6b4a;margin-bottom:6px}.gx-box span{display:block;color:#2A4560;line-height:1.5}
.gx-boxes .cap{grid-column:1/-1;font-family:var(--lh-mono);font-size:11px;letter-spacing:.1em;color:#0f6b4a}
/* ── 05 composer ── */
.gx-comp{background:#fff;border:1px solid rgba(3,7,13,.14);border-radius:12px;padding:16px;font-size:14px;box-shadow:0 20px 50px rgba(3,7,13,.12);font-family:var(--lh-sans);color:var(--lh-ink)}
.gx-comp .who{display:flex;align-items:center;gap:10px;padding:10px 12px;border:2px solid var(--lh-red);border-radius:8px;background:rgba(255,77,61,.06);margin-bottom:12px}
.gx-comp .who b{width:28px;height:28px;border-radius:50%;background:#8424f0;color:#fff;display:grid;place-items:center;font-size:12px;flex-shrink:0}
.gx-comp .who span{font-size:13px}.gx-comp .who .w{margin-left:auto;font-family:var(--lh-mono);font-size:10px;letter-spacing:.1em;color:#B8321C;font-weight:700}
.gx-comp .txt{width:100%;border:1px solid rgba(3,7,13,.14);border-radius:8px;padding:12px;font-size:14px;background:#FAFBFC;min-height:90px;line-height:1.5}
.gx-comp .foot{display:flex;justify-content:space-between;align-items:center;margin-top:12px}.gx-comp .foot span{font-family:var(--lh-mono);font-size:11px;color:#8A97A6}
.gx-comp .foot .b{background:var(--lh-ink);color:#fff;padding:8px 18px;border-radius:6px;font-weight:700;font-size:13px}
.gx-comp .cap{font-family:var(--lh-mono);font-size:11px;letter-spacing:.1em;color:#B8321C;margin-top:12px}
/* ── 06 switcher ── */
.gx-sw{display:flex;gap:12px;overflow-x:auto;padding:12px 2px 14px;font-family:var(--lh-sans)}
.gx-ws{flex:0 0 190px;background:#fff;border:1.5px solid rgba(3,7,13,.16);border-radius:10px;padding:14px;font-size:13px;position:relative;color:var(--lh-ink)}
.gx-ws.on{border:2px solid var(--lh-ink);box-shadow:4px 4px 0 var(--lh-ink)}
.gx-ws .tag{font-family:var(--lh-mono);font-size:10px;letter-spacing:.1em;color:var(--lh-s3);margin-bottom:6px}.gx-ws b{display:block;font-size:15px;margin-bottom:8px}
.gx-ws .row{display:flex;justify-content:space-between;font-size:11.5px;color:#2A4560;padding:3px 0;border-top:1px solid rgba(3,7,13,.08)}
.gx-ws .on-lbl{position:absolute;top:-10px;right:10px;background:var(--lh-amber);font-family:var(--lh-mono);font-size:9px;letter-spacing:.12em;padding:3px 8px;border-radius:3px;font-weight:700}
/* ── 07 two-workspace check ── */
.gx-chk{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:22px 0 8px}
.gx-pane{background:#fff;border:1.5px solid rgba(3,7,13,.16);border-radius:10px;padding:14px;font-family:var(--lh-mono);font-size:12px;color:var(--lh-ink)}
.gx-pane .hd{font-size:11px;letter-spacing:.12em;color:var(--lh-s3);margin-bottom:10px;display:flex;justify-content:space-between}.gx-pane .hd i{display:inline-block;width:8px;height:8px;border-radius:50%;background:#0f6b4a}
.gx-pane .r{display:flex;justify-content:space-between;padding:6px 0;border-top:1px solid rgba(3,7,13,.08);gap:10px}.gx-pane .r span:first-child{color:#6B7A8A}.gx-pane .r span:last-child{text-align:right}.gx-pane .r.d span:last-child{color:#B8321C;font-weight:700}
.gx-chk .cap{grid-column:1/-1;font-family:var(--lh-mono);font-size:11px;letter-spacing:.1em;color:#0f6b4a}
/* ── 08 team map ── */
.gx-team{display:grid;grid-template-columns:120px 1fr;gap:30px;align-items:center;margin:22px 0 8px;font-family:var(--lh-sans);color:var(--lh-ink)}
.gx-people{display:flex;flex-direction:column;gap:22px}.gx-pp{display:flex;align-items:center;gap:10px;font-size:13px}
.gx-pp b{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;color:#fff;font-weight:700;font-size:13px;flex-shrink:0}.gx-pp small{display:block;font-family:var(--lh-mono);font-size:10px;color:#6B7A8A;letter-spacing:.06em}
.gx-tw{display:grid;grid-template-columns:1fr 1fr;gap:10px}.gx-tw .c{background:#fff;border:1.5px solid rgba(3,7,13,.16);border-radius:8px;padding:10px 12px;font-size:12.5px}
.gx-tw .c b{display:block;font-size:13px;margin-bottom:6px}.gx-tw .c .who{display:flex;gap:4px}.gx-tw .c .who i{width:18px;height:18px;border-radius:50%;display:inline-grid;place-items:center;color:#fff;font-size:9px;font-weight:700;font-style:normal}
.gx-tw .c.l{border-color:var(--lh-ink);border-width:2px}.gx-team .cap{grid-column:1/-1;font-family:var(--lh-mono);font-size:11px;letter-spacing:.1em;color:#0f6b4a}
@media(max-width:1000px){.lh-page{font-size:17px}.lh-hcopy h1{font-size:clamp(34px,9vw,52px)}.lh-deck{font-size:18px}.lh-lines li{font-size:17px}.lh-lines li.k{font-size:18px}.lh-lines li.t{font-size:14px}.lh-hcopy .lh-lines li{font-size:16px}
  .lh-storyrow,.gx-pvb,.gx-chk,.gx-team{grid-template-columns:1fr}.gx-arrow{transform:rotate(90deg);text-align:center}.gx-pile{height:230px;margin-bottom:34px}}
/* v2.13.1 checkout tick spacing */
.lh-page .ch-checkout-includes li{position:relative;padding-left:26px}
.lh-page .ch-checkout-includes li::before{content:'✓';position:absolute;left:0;top:7px;color:var(--lh-red);font-weight:700}
.lh-page .lh-link{display:inline-block;margin-top:14px}

/* =============================================================
   LAUNCH BAR (v2.14) — hard values so it renders identically on every page
   ============================================================= */
html.ch-lb-off .lb{display:none}
.lb{position:fixed;top:0;left:0;right:0;z-index:1000;background:#F2B233;border-bottom:2px solid #03070D;font-family:'Chivo',sans-serif;color:#03070D}
body{padding-top:var(--ch-lb-h,0px)}
html.ch-lb-off body{padding-top:0}
.lb-why{position:relative;z-index:1}
.lb-in{max-width:1200px;margin:0 auto;padding:10px 20px;display:grid;grid-template-columns:auto 1fr auto auto;gap:18px;align-items:center}
.lb-k{font-family:'Chivo Mono',monospace;font-size:10px;letter-spacing:.14em;font-weight:700;white-space:nowrap}
.lb-cnt{display:inline-flex;align-items:baseline;gap:6px;background:#fff;border:2px solid #03070D;border-radius:4px;padding:4px 10px;margin-left:10px;font-family:'Chivo Mono',monospace;font-size:11px;letter-spacing:.08em;white-space:nowrap;vertical-align:middle}
.lb-cnt b{font-family:'Chivo',sans-serif;font-weight:900;font-size:18px;letter-spacing:-.02em;line-height:1}
.lb-msg{font-weight:900;font-size:16px;letter-spacing:-.01em;line-height:1.2;min-width:0}
.lb-msg small{display:block;font-weight:400;font-size:13px;color:#4A3A00;margin-top:2px}
.lb-msg button{background:none;border:0;font:inherit;font-weight:700;font-size:13px;color:#03070D;text-decoration:underline;text-underline-offset:3px;cursor:pointer;padding:0;margin-left:6px}
.lb-form{display:flex;gap:8px;align-items:stretch;flex-wrap:wrap;margin:0}
.lb-sr{position:absolute;left:-9999px}
.lb-form input[type=email]{width:230px;max-width:100%;border:2px solid #03070D;border-radius:4px;padding:9px 12px;font-family:'Chivo',sans-serif;font-size:14px;background:#fff;color:#03070D;margin:0}
.lb-form input[type=email]::placeholder{color:#7A6A3A}
.lb-form input[type=email]:focus{outline:3px solid #03070D;outline-offset:2px}
.lb-form button[type=submit]{background:#fff;color:#03070D;border:2px solid #03070D;border-radius:4px;padding:9px 16px;font-family:'Chivo',sans-serif;font-weight:900;font-size:13px;letter-spacing:.04em;cursor:pointer;white-space:nowrap;box-shadow:0 3px 0 #03070D;transition:transform .1s,box-shadow .1s;margin:0}
.lb-form button[type=submit]:hover{transform:translateY(1px);box-shadow:0 2px 0 #03070D}
.lb-form button[type=submit]:focus-visible{outline:3px solid #03070D;outline-offset:3px}
.lb-bsmsg{flex-basis:100%;font-size:12px;font-weight:700;color:#B8321C}.lb-bsmsg:empty{display:none}
.lb-x{background:none;border:0;font-size:22px;line-height:1;cursor:pointer;color:#03070D;padding:4px 6px;opacity:.7;margin:0}
.lb-x:hover{opacity:1}.lb-x:focus-visible{outline:3px solid #03070D;outline-offset:2px;border-radius:3px}
.lb-why{display:none;background:#FFF3D1;border-bottom:2px solid #03070D}.lb-why.on{display:block}
.lb-why-in{max-width:1200px;margin:0 auto;padding:18px 20px 20px;display:grid;grid-template-columns:repeat(3,1fr) auto;gap:22px;align-items:start}
.lb-r{font-size:14px;line-height:1.45}.lb-r b{display:block;font-family:'Chivo Mono',monospace;font-size:10px;letter-spacing:.14em;color:#8A5A00;margin-bottom:5px}.lb-r strong{display:block;font-weight:900;font-size:15px;margin-bottom:3px}
.lb-consent{font-family:'Chivo Mono',monospace;font-size:11px;line-height:1.6;color:#4A3A00;max-width:34ch}.lb-consent a{color:#03070D}
.lb-consent label{display:flex;gap:8px;align-items:flex-start;cursor:pointer}.lb-consent input{margin:3px 0 0;accent-color:#03070D;width:auto}
.lb-done{display:none;font-weight:900;font-size:15px}.lb.sent .lb-form{display:none}.lb.sent .lb-done{display:block}
@media(max-width:1000px){.lb-in{grid-template-columns:1fr auto;gap:10px 12px;padding:10px 16px}.lb-k{grid-column:1;font-size:9px}.lb-cnt{margin-left:8px;padding:3px 8px}.lb-cnt b{font-size:15px}.lb-x{grid-column:2;grid-row:1}.lb-msg{grid-column:1/-1;font-size:15px}.lb-form{grid-column:1/-1}.lb-form input[type=email]{flex:1;width:auto;min-width:0}.lb-why-in{grid-template-columns:1fr;gap:14px}}
