/* =============================================================
   OMNIWISE — landing.css
   Standalone landing page styles. Loaded after main.css.
   All selectors prefixed lp- to avoid conflicts with main.css.
   ============================================================= */

/* ---- CONTAINER ------------------------------------------- */
.lp-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- MINIMAL HEADER ------------------------------------- */
.lp-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 62px;
    display: flex;
    align-items: center;
    padding: 0 5vw;
    background: rgba(10, 34, 64, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.lp-header__logo svg {
    height: 36px;
    width: auto;
}

/* ---- HERO ----------------------------------------------- */
.lp-hero {
    padding: 126px 24px 84px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(158deg, #0A2240 0%, #0e2f57 55%, rgba(46, 175, 160, 0.2) 100%);
}

.lp-hero__inner {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
}

.lp-hero__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-teal);
    margin-bottom: 20px;
}

.lp-hero__headline {
    font-size: 50px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1.08;
    margin-bottom: 22px;
    font-family: var(--font-primary);
}

.lp-hero__sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin-bottom: 38px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.lp-hero__ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero-specific button variants (avoid dependency on main.css btn classes) */
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    background: var(--color-white);
    color: var(--color-navy);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
    line-height: 1;
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    color: var(--color-navy);
}

.lp-btn-tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    border: 1.5px solid rgba(255, 255, 255, 0.36);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    text-decoration: none;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
    white-space: nowrap;
    line-height: 1;
}

.lp-btn-tel:hover {
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
}

/* ---- SECTION TITLE (shared) ----------------------------- */
.lp-section-title {
    font-size: 30px;
    font-weight: var(--font-weight-bold);
    color: var(--color-navy);
    margin-bottom: 36px;
    line-height: 1.2;
}

/* ---- PROBLEM -------------------------------------------- */
.lp-problem {
    background: var(--color-white);
    padding: 72px 24px;
    text-align: center;
}

.lp-problem__text {
    font-size: 21px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-navy);
    line-height: 1.45;
    margin-bottom: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lp-problem__sub {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

/* ---- DELIVERABLES --------------------------------------- */
.lp-deliverables {
    background: var(--color-gray-light);
    padding: 72px 0;
}

.lp-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-teal);
}

.lp-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-mid);
    border-radius: var(--radius-md);
    padding: 17px 22px;
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.5;
}

.lp-checklist__item--bonus {
    border-color: rgba(46, 175, 160, 0.22);
    background: rgba(46, 175, 160, 0.03);
    font-size: 14px;
    color: var(--color-text-secondary);
    font-style: italic;
}

.lp-checklist__item--bonus .lp-check {
    color: rgba(46, 175, 160, 0.45);
}

/* ---- BRAND STORY ---------------------------------------- */
.lp-story {
    background: var(--color-navy);
    padding: 72px 24px;
}

.lp-story__inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.lp-story__quote {
    font-size: 20px;
    font-weight: var(--font-weight-light);
    color: var(--color-white);
    line-height: 1.68;
    font-style: italic;
    margin-bottom: 20px;
}

.lp-story__highlight {
    font-style: normal;
    font-weight: var(--font-weight-semibold);
    color: var(--color-teal);
}

.lp-story__attribution {
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.38);
}

/* ---- HOW IT WORKS --------------------------------------- */
.lp-how {
    background: var(--color-white);
    padding: 72px 0;
}

.lp-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.lp-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid var(--color-gray-mid);
    border-radius: var(--radius-md);
    background: var(--color-gray-light);
}

.lp-step__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    flex-shrink: 0;
    font-family: var(--font-primary);
    letter-spacing: 0.05em;
}

.lp-step__body {
    flex: 1;
    min-width: 0;
}

.lp-step__title {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-navy);
    margin-bottom: 4px;
    line-height: 1.3;
}

.lp-step p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.lp-how__note {
    font-size: 15px;
    color: var(--color-text-secondary);
    font-style: italic;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-mid);
}

/* ---- FORM SECTION --------------------------------------- */
.lp-form-section {
    background: var(--color-gray-light);
    padding: 72px 0 80px;
}

.lp-form-section .lp-section-title {
    text-align: center;
}

.lp-form-section__sub {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-top: -26px;
    margin-bottom: 36px;
    line-height: 1.65;
    padding: 0 8px;
}

.lp-form-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-mid);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

/* Radio options */
.lp-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text);
    cursor: pointer;
    padding: 13px 16px;
    border: 1.5px solid var(--color-gray-mid);
    border-radius: var(--radius-sm);
    transition: border-color 0.14s ease, background 0.14s ease;
    line-height: 1.4;
}

.lp-radio-label:hover {
    border-color: rgba(46, 175, 160, 0.55);
    background: rgba(46, 175, 160, 0.03);
}

.lp-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-teal);
    flex-shrink: 0;
    cursor: pointer;
}

.lp-radio-label:has(input[type="radio"]:checked) {
    border-color: var(--color-teal);
    background: rgba(46, 175, 160, 0.06);
}

.lp-radio-label:has(input[type="radio"]:checked) span {
    font-weight: var(--font-weight-semibold);
    color: var(--color-navy);
}

/* Funding checkbox */
.lp-checkbox-wrap {
    padding: 16px 18px;
    background: rgba(46, 175, 160, 0.04);
    border: 1px solid rgba(46, 175, 160, 0.2);
    border-radius: var(--radius-sm);
}

.lp-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text);
    cursor: pointer;
    line-height: 1.5;
}

.lp-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-teal);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

/* Honeypot — hidden from real users, visible to bots that parse DOM */
.lp-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
}

/* Submit button */
.lp-submit {
    width: 100%;
    padding: 17px 20px;
    background: var(--color-navy);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
    margin-top: 8px;
    min-height: 54px;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.lp-submit:hover:not(:disabled) {
    background: #0d2d52;
    transform: translateY(-1px);
}

.lp-submit:disabled {
    opacity: 0.62;
    cursor: not-allowed;
    transform: none;
}

/* Form-level error banner */
.lp-form-msg {
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    font-size: 14px;
    color: #991b1b;
    margin-bottom: 16px;
    display: none;
}

.lp-form-msg.is-visible {
    display: block;
}

/* Success state */
.lp-success {
    background: rgba(46, 175, 160, 0.06);
    border: 1px solid rgba(46, 175, 160, 0.26);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    display: none;
}

.lp-success.is-visible {
    display: block;
}

.lp-success__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    color: var(--color-teal);
}

.lp-success__title {
    font-size: 22px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.lp-success p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Reassurance copy below form */
.lp-reassurance {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-top: 18px;
    line-height: 1.55;
}

/* ---- FOOTER -------------------------------------------- */
.lp-footer {
    background: #071a30;
    padding: 44px 24px;
    text-align: center;
}

.lp-footer__logo {
    display: inline-block;
    margin-bottom: 12px;
    text-decoration: none;
}

.lp-footer__logo svg {
    height: 42px;
    width: auto;
}

.lp-footer__tagline {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.36);
    text-transform: uppercase;
    margin-bottom: 22px;
    display: block;
}

.lp-footer__links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.lp-footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.14s ease;
}

.lp-footer__links a:hover {
    color: var(--color-teal);
}

.lp-footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.22);
}

/* ---- RESPONSIVE ---------------------------------------- */
@media (max-width: 767px) {
    .lp-container { padding: 0 20px; }

    .lp-hero {
        padding: 100px 20px 64px;
        min-height: 100svh;
        align-items: flex-start;
        padding-top: 110px;
    }
    .lp-hero__headline { font-size: 32px; }
    .lp-hero__sub { font-size: 15px; }
    .lp-hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .lp-btn-primary,
    .lp-btn-tel {
        width: 100%;
        text-align: center;
    }

    .lp-problem { padding: 56px 20px; }
    .lp-problem__text { font-size: 18px; }

    .lp-deliverables { padding: 56px 0; }
    .lp-checklist__item { padding: 14px 16px; font-size: 15px; }

    .lp-story { padding: 56px 20px; }
    .lp-story__quote { font-size: 18px; }

    .lp-how { padding: 56px 0; }
    .lp-step { padding: 18px 20px; }

    .lp-form-section { padding: 56px 0 64px; }
    .lp-form-card { padding: 28px 20px; border-radius: var(--radius-md); }
    .lp-section-title { font-size: 26px; }

    .lp-success { padding: 28px 20px; }
    .lp-success__title { font-size: 20px; }
}

@media (max-width: 480px) {
    .lp-hero__headline { font-size: 27px; }
    .lp-problem__text { font-size: 17px; }
    .lp-submit { font-size: 15px; padding: 16px; }
}
