/* ============================================
   SATORI DEFENSE — LANDING PAGE STYLES
   Shared styles for Houston & Schools landers
   Uses V006 design tokens (framework.css + custom.css)
   ============================================ */

:root {
    --lp-green: #10b981;
    --lp-red: #ef4444;
    --lp-amber: #f59e0b;
    --lp-purple: #a78bfa;
    --lp-max-w: 1300px;
    --lp-transition: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── HERO ─────────────────────────────── */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 2rem 80px;
}

.lp-hero-scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.lp-hero-scene-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 900px 500px at 65% 75%, rgba(212, 175, 55, 0.10), transparent),
        radial-gradient(ellipse 600px 400px at 25% 60%, rgba(245, 158, 11, 0.05), transparent);
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(21, 30, 38, 0.7) 0%, rgba(21, 30, 38, 0.4) 40%, rgba(21, 30, 38, 0.85) 80%, var(--color-primary) 100%);
}

.lp-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: lpGridPulse 8s ease-in-out infinite;
}

@keyframes lpGridPulse {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: .6;
    }
}

.lp-hero-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 2;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
    animation: lpScanDown 6s linear infinite;
}

@keyframes lpScanDown {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.lp-hero-content {
    max-width: var(--lp-max-w);
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--lp-green);
    margin-bottom: 24px;
    animation: lpFadeUp .6s ease-out;
}

.lp-hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--lp-green);
    border-radius: 50%;
    animation: lpPulse 2s infinite;
}

@keyframes lpPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

@keyframes lpFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 1.07;
    margin-bottom: 22px;
    color: #e0e0e0;
    animation: lpFadeUp .6s ease-out .1s both;
}

.lp-hero-title em {
    font-style: italic;
    color: var(--color-accent);
}

.lp-hero-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(224, 224, 224, 0.6);
    max-width: 540px;
    margin-bottom: 36px;
    animation: lpFadeUp .6s ease-out .2s both;
}

.lp-hero-ctas {
    display: flex;
    gap: 16px;
    animation: lpFadeUp .6s ease-out .3s both;
}

/* ── BUTTONS ──────────────────────────── */
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--color-accent);
    transform: translateX(-101%);
    transition: transform 0.4s var(--lp-transition);
    z-index: -1;
}

.lp-btn-primary:hover {
    color: #151e26;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.lp-btn-primary:hover::before {
    transform: translateX(0);
}

.lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(224, 224, 224, 0.3);
    transform: translateY(-2px);
}

/* ── STATS PANEL (HERO) ───────────────── */
.lp-stats-panel {
    background: rgba(11, 15, 19, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 32px;
    animation: lpFadeUp .6s ease-out .4s both;
    position: relative;
    overflow: hidden;
}

.lp-stats-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.lp-stats-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.lp-stats-hdr-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(224, 224, 224, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.lp-stats-hdr-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--lp-green);
}

.lp-stats-hdr-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--lp-green);
    border-radius: 50%;
    animation: lpPulse 2s infinite;
}

.lp-sr {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.lp-sr:last-child {
    border-bottom: none;
}

.lp-sr-l {
    font-size: 13px;
    color: rgba(224, 224, 224, 0.6);
}

.lp-sr-v {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 600;
}

.lp-sr-u {
    font-size: 12px;
    color: rgba(224, 224, 224, 0.4);
    font-weight: 400;
    margin-left: 4px;
}

/* Data color classes */
.lp-c-accent {
    color: var(--color-accent);
}

.lp-c-green {
    color: var(--lp-green);
}

.lp-c-red {
    color: var(--lp-red);
}

.lp-c-amber {
    color: var(--lp-amber);
}

.lp-c-purple {
    color: var(--lp-purple);
}

/* ── PROOF BAR ────────────────────────── */
.lp-proof-bar {
    background: rgba(11, 15, 19, 1);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 24px 2rem;
}

.lp-proof-inner {
    max-width: var(--lp-max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.lp-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(224, 224, 224, 0.4);
}

.lp-proof-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-accent);
}

.lp-proof-icon svg {
    width: 100%;
    height: 100%;
}

/* ── SECTION UTILITIES ────────────────── */
.lp-sc {
    max-width: var(--lp-max-w);
    margin: 0 auto;
}

.lp-s-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.lp-s-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 720px;
    color: #e0e0e0;
}

.lp-s-sub {
    font-size: 16px;
    color: rgba(224, 224, 224, 0.6);
    max-width: 620px;
    line-height: 1.75;
    margin-bottom: 56px;
}

/* ── PROBLEM SPLITS ───────────────────── */
.lp-problem {
    padding: 100px 2rem;
    background: var(--color-primary);
}

.lp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.lp-split.lp-rev {
    direction: rtl;
}

.lp-split.lp-rev>* {
    direction: ltr;
}

.lp-split:last-child {
    margin-bottom: 0;
}

.lp-scene-panel {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(11, 15, 19, 1);
}

.lp-scene-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.5) contrast(1.2) grayscale(60%);
    transition: filter 0.8s ease;
}

.lp-scene-panel:hover img {
    filter: brightness(0.7) contrast(1.1) grayscale(20%);
}

.lp-scene-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(11, 15, 19, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 12px 18px;
    z-index: 2;
}

.lp-scene-badge-v {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 700;
}

.lp-scene-badge-l {
    font-size: 11px;
    color: rgba(224, 224, 224, 0.4);
    margin-top: 2px;
}

.lp-split-text h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.2;
    margin-bottom: 16px;
    color: #e0e0e0;
}

.lp-split-text h3 em {
    font-style: italic;
    color: var(--color-accent);
}

.lp-split-text p {
    font-size: 15px;
    color: rgba(224, 224, 224, 0.6);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ── VISUAL BREAK ─────────────────────── */
.lp-vis-break {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    background-size: cover;
    background-position: center;
}

.lp-vis-break-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, var(--color-primary) 0%, rgba(21, 30, 38, 0.55) 30%, rgba(21, 30, 38, 0.55) 70%, rgba(11, 15, 19, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-vis-break-content {
    text-align: center;
    z-index: 2;
}

.lp-vis-break-stat {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.lp-vis-break-label {
    font-size: 18px;
    color: rgba(224, 224, 224, 0.6);
    max-width: 500px;
}

/* ── INDUSTRY TABS ────────────────────── */
.lp-industries {
    padding: 100px 2rem;
    background: rgba(11, 15, 19, 1);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.lp-tab-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 56px;
    padding: 4px;
    background: rgba(21, 30, 38, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    width: fit-content;
}

.lp-tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: rgba(224, 224, 224, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.lp-tab-btn:hover {
    color: #e0e0e0;
}

.lp-tab-btn.active {
    background: var(--color-accent);
    color: #151e26;
    font-weight: 600;
}

.lp-tab-content {
    display: none;
}

.lp-tab-content.active {
    display: block;
    animation: lpFadeIn .4s ease-out;
}

@keyframes lpFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-ind-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.lp-ind-main-img {
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    aspect-ratio: 16 / 11;
    position: relative;
    background: rgba(11, 15, 19, 1);
}

.lp-ind-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.5) contrast(1.2) grayscale(60%);
    transition: filter 0.8s ease;
}

.lp-ind-main-img:hover img {
    filter: brightness(0.7) contrast(1.1) grayscale(20%);
}

.lp-ind-float {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.lp-ifm {
    background: rgba(21, 30, 38, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 16px;
    text-align: center;
}

.lp-ifm-v {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 3px;
}

.lp-ifm-l {
    font-size: 11px;
    color: rgba(224, 224, 224, 0.4);
    line-height: 1.3;
}

.lp-ind-text {
    padding-top: 8px;
}

.lp-ind-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    margin-bottom: 20px;
}

.lp-tag-ins {
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    color: #a78bfa;
}

.lp-tag-dry {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--lp-amber);
}

.lp-tag-ems {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--lp-red);
}

.lp-tag-pet {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--lp-green);
}

.lp-ind-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.2;
    margin-bottom: 18px;
    color: #e0e0e0;
}

.lp-ind-title em {
    font-style: italic;
    color: var(--color-accent);
}

.lp-ind-desc {
    font-size: 15px;
    color: rgba(224, 224, 224, 0.6);
    line-height: 1.8;
    margin-bottom: 28px;
}

.lp-ind-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    padding: 0;
}

.lp-ind-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(224, 224, 224, 0.6);
    line-height: 1.65;
}

.lp-ind-bullets li::before {
    content: '\2192';
    color: var(--color-accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.lp-demo-quote {
    background: rgba(21, 30, 38, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--color-accent);
    padding: 20px 24px;
    margin-bottom: 32px;
}

.lp-demo-quote .lp-dq-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(224, 224, 224, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.lp-demo-quote p {
    font-size: 14px;
    color: rgba(224, 224, 224, 0.6);
    line-height: 1.65;
    font-style: italic;
}

/* ── HOW IT WORKS ─────────────────────── */
.lp-how {
    padding: 100px 2rem;
    background: var(--color-primary);
}

.lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.lp-step {
    position: relative;
    background: rgba(21, 30, 38, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.lp-step:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.lp-step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--color-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lp-step-ico {
    width: 100%;
    height: 140px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    overflow: hidden;
    position: relative;
}

.lp-step-ico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.5s;
}

.lp-step:hover .lp-step-ico img {
    opacity: 1;
    transform: scale(1.05);
}

.lp-step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.lp-step p {
    font-size: 13px;
    color: rgba(224, 224, 224, 0.6);
    line-height: 1.65;
}

.lp-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -14px;
    width: 26px;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    z-index: 1;
}

/* ── DATA PROOF GRID ──────────────────── */
.lp-data-proof {
    padding: 100px 2rem;
    background: rgba(11, 15, 19, 1);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.lp-dp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.lp-dp-card {
    background: rgba(21, 30, 38, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}

.lp-dp-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.lp-dp-v {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.lp-dp-u {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: rgba(224, 224, 224, 0.4);
    margin-bottom: 12px;
}

.lp-dp-l {
    font-size: 13px;
    color: rgba(224, 224, 224, 0.6);
    line-height: 1.5;
}

/* ── CREDIBILITY ──────────────────────── */
.lp-cred {
    padding: 100px 2rem;
    background: var(--color-primary);
}

.lp-cred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.lp-cred-card {
    background: rgba(21, 30, 38, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.lp-cred-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.lp-cred-card.lp-cc-accent::before {
    background: var(--color-accent);
}

.lp-cred-card.lp-cc-green::before {
    background: var(--lp-green);
}

.lp-cred-card.lp-cc-amber::before {
    background: var(--lp-amber);
}

.lp-cred-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.lp-cred-card p {
    font-size: 14px;
    color: rgba(224, 224, 224, 0.6);
    line-height: 1.7;
}

.lp-cred-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.lp-cred-tag {
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(224, 224, 224, 0.4);
}

/* ── CTA / FORM SECTION ───────────────── */
.lp-cta-sec {
    padding: 100px 2rem;
    background: rgba(11, 15, 19, 1);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.lp-cta-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 60%);
    pointer-events: none;
}

.lp-cta-lay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-cta-left h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    color: #e0e0e0;
}

.lp-cta-left h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.lp-cta-left>p {
    font-size: 16px;
    color: rgba(224, 224, 224, 0.6);
    line-height: 1.75;
    margin-bottom: 32px;
}

.lp-cta-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
}

.lp-cta-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(224, 224, 224, 0.6);
}

.lp-cta-list li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    font-size: 11px;
    color: var(--lp-green);
    flex-shrink: 0;
}

.lp-demo-form {
    background: rgba(21, 30, 38, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px;
    position: relative;
}

.lp-demo-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--lp-green));
}

.lp-df-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.lp-fg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.lp-fgi {
    text-align: left;
}

.lp-fgi.lp-fw {
    grid-column: span 2;
}

.lp-fgi label {
    display: block;
    font-size: 12px;
    color: rgba(224, 224, 224, 0.4);
    font-weight: 500;
    margin-bottom: 6px;
}

.lp-fgi input,
.lp-fgi select,
.lp-fgi textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-primary);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.lp-fgi select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.lp-fgi select option {
    background: #151e26;
    color: #e0e0e0;
}

.lp-fgi input:focus,
.lp-fgi select:focus,
.lp-fgi textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.lp-fgi input::placeholder,
.lp-fgi textarea::placeholder {
    color: rgba(224, 224, 224, 0.3);
}

.lp-f-submit {
    width: 100%;
    padding: 16px;
    background: var(--color-accent);
    color: #151e26;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
}

.lp-f-submit:hover {
    background: #f5d166;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

.lp-f-note {
    font-size: 12px;
    color: rgba(224, 224, 224, 0.4);
    margin-top: 16px;
    text-align: center;
}

/* ── FLOATING CTA ─────────────────────── */
.lp-float-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    pointer-events: none;
}

.lp-float-cta.lp-vis {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.lp-float-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--color-accent);
    color: #151e26;
    border-radius: 0;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.25s;
}

.lp-float-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

/* ── SCROLL ANIMATION ─────────────────── */
.lp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease-out, transform .7s ease-out;
}

.lp-reveal.lp-vis {
    opacity: 1;
    transform: translateY(0);
}

/* ── SCHOOLS-SPECIFIC ─────────────────── */
.lp-method-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.lp-method-card {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background-size: cover;
    background-position: center;
}

.lp-method-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 30, 38, 0.95) 0%, rgba(21, 30, 38, 0.6) 40%, rgba(21, 30, 38, 0.3) 100%);
    z-index: 1;
}

.lp-method-card>* {
    position: relative;
    z-index: 2;
}

.lp-method-phase {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--color-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lp-method-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.lp-method-card p {
    font-size: 14px;
    color: rgba(224, 224, 224, 0.6);
    line-height: 1.7;
}

/* Schools-specific gradient accent bar */
.lp-urgency-box {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    padding: 24px 32px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lp-urgency-box .lp-urgency-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.lp-urgency-box p {
    font-size: 14px;
    color: rgba(224, 224, 224, 0.7);
    line-height: 1.65;
}

/* ── RESPONSIVE ───────────────────────── */
@media(max-width: 1024px) {
    .lp-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lp-split.lp-rev {
        direction: ltr;
    }

    .lp-ind-split {
        grid-template-columns: 1fr;
    }

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

    .lp-step:not(:last-child)::after {
        display: none;
    }

    .lp-dp-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lp-cred-grid {
        grid-template-columns: 1fr;
    }

    .lp-cta-lay {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lp-method-cards {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px) {
    .lp-hero {
        padding: 100px 1.5rem 60px;
    }

    .lp-tab-nav {
        overflow-x: auto;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .lp-tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

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

    .lp-steps {
        grid-template-columns: 1fr;
    }

    .lp-fg {
        grid-template-columns: 1fr;
    }

    .lp-fgi.lp-fw {
        grid-column: span 1;
    }

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

    .lp-vis-break {
        height: 280px;
    }

    .lp-proof-inner {
        gap: 24px;
    }

    .lp-proof-item {
        font-size: 12px;
    }
}