/*
 * F.R.E.S.H. Landing Page Styles
 * Phase 10B - Design System + All 8 Sections
 * Mobile-first, vanilla CSS, no frameworks
 */

/* ==================== DESIGN TOKENS ==================== */
:root {
    /* Backgrounds */
    --lp-bg-hero: #050507;
    --lp-bg-section: #12121e;
    --lp-bg-card: #1a1a2e;
    --lp-bg-card-hover: #222240;

    /* Brand Colors */
    --lp-gold: #FFD700;
    --lp-gold-muted: #D4AF37;
    --lp-gold-dark: #B8960F;
    --lp-purple: #6A0DAD;
    --lp-purple-glow: rgba(106, 13, 173, 0.3);

    /* Text */
    --lp-text: #F9FAFB;
    --lp-text-muted: #D1D5DB;
    --lp-text-dim: #9CA3AF;

    /* Typography */
    --lp-font-display: 'Bebas Neue', Impact, sans-serif;
    --lp-font-body: 'Roboto Condensed', Arial, sans-serif;

    /* Spacing */
    --lp-section-pad: 5rem 1.5rem;
    --lp-section-pad-lg: 7rem 2rem;
    --lp-max-width: 1200px;
    --lp-radius: 12px;
    --lp-radius-sm: 8px;

    /* Transitions */
    --lp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--lp-font-body);
    font-weight: 400;
    color: var(--lp-text);
    background: var(--lp-bg-hero);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--lp-gold);
    text-decoration: none;
    transition: color var(--lp-transition);
}

a:hover {
    color: var(--lp-gold-muted);
}

/* ==================== NAVIGATION ==================== */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    transition: background var(--lp-transition);
}

.lp-nav--scrolled {
    background: rgba(10, 10, 18, 0.98);
    border-bottom-color: rgba(255, 215, 0, 0.15);
}

.lp-nav__inner {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-nav__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-nav__logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.lp-nav__shield-img {
    height: 38px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.25));
}

.lp-nav__wordmark-img {
    height: 24px;
    width: auto;
    display: block;
    margin-left: -2px;
}

.lp-nav__logo-text {
    font-family: var(--lp-font-display);
    font-size: 1.75rem;
    color: var(--lp-gold);
    letter-spacing: 2px;
}

.lp-nav__dot {
    color: var(--lp-purple);
    font-size: 0.6em;
    vertical-align: middle;
}

.lp-nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lp-nav__link {
    color: var(--lp-text-muted);
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color var(--lp-transition);
}

.lp-nav__link:hover {
    color: var(--lp-gold);
}

.lp-nav__cta {
    background: var(--lp-gold);
    color: var(--lp-bg-hero) !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--lp-radius-sm);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: background var(--lp-transition), transform var(--lp-transition);
}

.lp-nav__cta:hover {
    background: var(--lp-gold-muted);
    transform: translateY(-1px);
}

/* Hamburger */
.lp-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.lp-nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lp-gold);
    border-radius: 2px;
    transition: transform var(--lp-transition), opacity var(--lp-transition);
}

.lp-nav__hamburger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lp-nav__hamburger--open span:nth-child(2) {
    opacity: 0;
}

.lp-nav__hamburger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==================== SECTION UTILITY ==================== */
.lp-section {
    padding: var(--lp-section-pad);
}

.lp-section__inner {
    max-width: var(--lp-max-width);
    margin: 0 auto;
}

.lp-section__title {
    font-family: var(--lp-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--lp-text);
    text-align: center;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.lp-section__subtitle {
    color: var(--lp-text-muted);
    text-align: center;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.lp-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-gold), var(--lp-purple));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* ==================== SECTION 1: HERO ==================== */
.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 5rem;
    background: var(--lp-bg-hero);
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(106, 13, 173, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.lp-hero__content {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.lp-hero__logo {
    max-width: 680px;
    width: 95%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    animation: lp-logo-glow 3s ease-in-out infinite alternate;
}

@keyframes lp-logo-glow {
    from { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2)); }
    to { filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.45)); }
}

.lp-hero__headline {
    font-family: var(--lp-font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--lp-text);
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.lp-hero__headline span {
    color: var(--lp-gold);
}

.lp-hero__subheadline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--lp-text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.lp-hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.25rem;
    border-radius: var(--lp-radius-sm);
    font-family: var(--lp-font-body);
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--lp-transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.lp-btn--gold {
    background: var(--lp-gold);
    color: var(--lp-bg-hero);
    border-color: var(--lp-gold);
}

.lp-btn--gold:hover {
    background: var(--lp-gold-muted);
    border-color: var(--lp-gold-muted);
    color: var(--lp-bg-hero);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}

.lp-btn--ghost {
    background: transparent;
    color: var(--lp-gold);
    border-color: var(--lp-gold-muted);
}

.lp-btn--ghost:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--lp-gold);
    border-color: var(--lp-gold);
}

.lp-btn--purple {
    background: var(--lp-purple);
    color: var(--lp-text);
    border-color: var(--lp-purple);
}

.lp-btn--purple:hover {
    background: #7B10C9;
    border-color: #7B10C9;
    color: var(--lp-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--lp-purple-glow);
}

/* ==================== SECTION 2: PROBLEM ==================== */
.lp-problem {
    background: var(--lp-bg-section);
    padding: var(--lp-section-pad);
}

.lp-problem__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.lp-problem__card {
    text-align: center;
    padding: 2rem;
}

.lp-problem__strike {
    font-family: var(--lp-font-display);
    font-size: 1.5rem;
    color: #EF4444;
    text-decoration: line-through;
    text-decoration-color: #EF4444;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.lp-problem__detail {
    color: var(--lp-text-dim);
    font-size: 0.9375rem;
}

.lp-problem__resolution {
    text-align: center;
    font-family: var(--lp-font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--lp-gold);
    letter-spacing: 1.5px;
}

/* ==================== SECTION 3: FEATURES ==================== */
.lp-features {
    background: var(--lp-bg-hero);
    padding: var(--lp-section-pad);
}

.lp-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.lp-feature-card {
    background: var(--lp-bg-card);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: var(--lp-radius);
    padding: 2rem;
    transition: all var(--lp-transition);
}

.lp-feature-card:hover {
    background: var(--lp-bg-card-hover);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.lp-feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lp-feature-card__title {
    font-family: var(--lp-font-display);
    font-size: 1.375rem;
    color: var(--lp-gold);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.lp-feature-card__desc {
    color: var(--lp-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==================== SECTION 4: SOCIAL PROOF ==================== */
.lp-story {
    background: var(--lp-bg-section);
    padding: var(--lp-section-pad);
}

.lp-story__content {
    max-width: 800px;
    margin: 0 auto;
}

.lp-story__legacy {
    text-align: center;
    margin-bottom: 3rem;
}

.lp-story__acronym {
    font-family: var(--lp-font-display);
    font-size: 1.125rem;
    color: var(--lp-text-dim);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.lp-story__acronym-highlight {
    color: var(--lp-gold);
}

.lp-story__text {
    color: var(--lp-text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

.lp-story__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 0;
}

.lp-story__badge-img {
    max-width: 260px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.25));
}

.lp-story__badge-text {
    font-family: var(--lp-font-display);
    color: var(--lp-gold);
    font-size: 1rem;
    letter-spacing: 1.5px;
}

/* ==================== SECTION 5: PRICING ==================== */
.lp-pricing {
    background: var(--lp-bg-hero);
    padding: var(--lp-section-pad);
}

.lp-pricing__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.lp-pricing__toggle-label {
    font-size: 0.9375rem;
    color: var(--lp-text-dim);
    transition: color var(--lp-transition);
}

.lp-pricing__toggle-label--active {
    color: var(--lp-gold);
    font-weight: 700;
}

.lp-pricing__toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: var(--lp-bg-card);
    border: 2px solid var(--lp-gold-muted);
    border-radius: 14px;
    cursor: pointer;
    transition: all var(--lp-transition);
}

.lp-pricing__toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--lp-gold);
    border-radius: 50%;
    transition: transform var(--lp-transition);
}

.lp-pricing__toggle-switch--annual::after {
    transform: translateX(24px);
}

.lp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.lp-price-card {
    background: var(--lp-bg-card);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: var(--lp-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--lp-transition);
}

.lp-price-card--popular {
    border-color: var(--lp-gold);
    box-shadow: 0 0 32px rgba(255, 215, 0, 0.1);
}

.lp-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-gold);
    color: var(--lp-bg-hero);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lp-price-card__tier {
    font-family: var(--lp-font-display);
    font-size: 1.5rem;
    color: var(--lp-text);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.lp-price-card__price {
    font-family: var(--lp-font-display);
    font-size: 3rem;
    color: var(--lp-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.lp-price-card__price-suffix {
    font-family: var(--lp-font-body);
    font-size: 1rem;
    color: var(--lp-text-dim);
    font-weight: 300;
}

.lp-price-card__annual-note {
    font-size: 0.8125rem;
    color: var(--lp-purple);
    margin-bottom: 1.5rem;
    min-height: 1.25rem;
}

.lp-price-card__features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.lp-price-card__features li {
    padding: 0.5rem 0;
    color: var(--lp-text-muted);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-left: 1.25rem;
    position: relative;
}

.lp-price-card__features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--lp-gold-muted);
    font-weight: 700;
}

.lp-price-card__cta {
    width: 100%;
    text-align: center;
}

/* Enterprise row below grid */
.lp-pricing__enterprise {
    text-align: center;
    padding: 2rem;
    background: var(--lp-bg-card);
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: var(--lp-radius);
    max-width: 600px;
    margin: 0 auto;
}

.lp-pricing__enterprise-title {
    font-family: var(--lp-font-display);
    font-size: 1.375rem;
    color: var(--lp-text);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.lp-pricing__enterprise-desc {
    color: var(--lp-text-dim);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.lp-pricing__badge-note {
    text-align: center;
    color: var(--lp-text-dim);
    font-size: 0.8125rem;
    margin-top: 2rem;
}

/* ==================== SECTION 6: FAQ ==================== */
.lp-faq {
    background: var(--lp-bg-section);
    padding: var(--lp-section-pad);
}

.lp-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.lp-faq__item {
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.lp-faq__question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.25rem 0;
    font-family: var(--lp-font-body);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lp-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color var(--lp-transition);
}

.lp-faq__question:hover {
    color: var(--lp-gold);
}

.lp-faq__icon {
    color: var(--lp-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform var(--lp-transition);
}

.lp-faq__item--open .lp-faq__icon {
    transform: rotate(45deg);
}

.lp-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.lp-faq__answer-inner {
    padding: 0 0 1.25rem;
    color: var(--lp-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.lp-faq__item--open .lp-faq__answer {
    max-height: 500px;
}

/* ==================== SECTION 7: FINAL CTA ==================== */
.lp-final-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(106, 13, 173, 0.1) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: var(--lp-section-pad);
    text-align: center;
}

.lp-final-cta__headline {
    font-family: var(--lp-font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--lp-gold);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.lp-final-cta__sub {
    color: var(--lp-text-dim);
    font-size: 1rem;
    margin-top: 1.25rem;
}

/* ==================== SECTION 8: FOOTER ==================== */
.lp-footer {
    background: var(--lp-bg-hero);
    padding: 3rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
}

.lp-footer__inner {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-footer__logo {
    font-family: var(--lp-font-display);
    font-size: 1.5rem;
    color: var(--lp-gold);
    letter-spacing: 2px;
}

.lp-footer__logo-img {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.lp-footer__shield-img {
    height: 48px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.lp-footer__wordmark-img {
    height: 30px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.lp-footer__acronym {
    color: var(--lp-text-dim);
    font-size: 0.8125rem;
    margin-top: 0.375rem;
    letter-spacing: 0.5px;
}

.lp-footer__tagline {
    color: var(--lp-gold-muted);
    font-family: var(--lp-font-display);
    font-size: 0.9375rem;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

.lp-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-footer__col h4 {
    font-family: var(--lp-font-display);
    font-size: 0.875rem;
    color: var(--lp-text);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.lp-footer__col a {
    display: block;
    color: var(--lp-text-dim);
    font-size: 0.875rem;
    padding: 0.25rem 0;
    transition: color var(--lp-transition);
}

.lp-footer__col a:hover {
    color: var(--lp-gold);
}

.lp-footer__bottom {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lp-footer__bottom p {
    font-size: 0.8125rem;
    color: var(--lp-text-dim);
}

.lp-footer__badge {
    font-family: var(--lp-font-display);
    color: var(--lp-gold-muted) !important;
    letter-spacing: 1px;
    font-size: 0.75rem !important;
}

/* ==================== ANIMATIONS ==================== */
.lp-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 768px) {
    .lp-section {
        padding: var(--lp-section-pad-lg);
    }

    .lp-footer__inner {
        grid-template-columns: 1.5fr 2fr;
    }
}

@media (max-width: 767px) {
    .lp-nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 18, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .lp-nav__links--open {
        display: flex;
    }

    .lp-nav__hamburger {
        display: flex;
    }

    .lp-nav__cta {
        width: 100%;
        text-align: center;
    }

    .lp-nav__logo-img {
        height: 34px;
    }

    .lp-nav__shield-img {
        height: 30px;
    }

    .lp-nav__wordmark-img {
        height: 18px;
        margin-left: 0;
    }

    .lp-hero__logo {
        max-width: 520px;
    }

    .lp-story__badge-img {
        max-width: 200px;
    }

    .lp-footer__logo-img {
        height: 52px;
    }

    .lp-footer__shield-img {
        height: 38px;
    }

    .lp-footer__wordmark-img {
        height: 24px;
    }

    .lp-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .lp-footer__links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lp-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* ==========================================
   NEW SECTIONS - March 2026
   ARIA, Agent-Ready, Blog
   ========================================== */

/* ARIA Section */
.lp-aria {
    background: linear-gradient(180deg, var(--lp-black) 0%, #0d0d0d 100%);
}

.lp-aria__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.lp-aria__headline {
    font-family: var(--lp-font-display);
    font-size: 3rem;
    color: var(--lp-gold);
    margin-bottom: 0.5rem;
}

.lp-aria__acronym {
    color: var(--lp-white);
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.lp-aria__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lp-aria__feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.lp-aria__feature-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.lp-aria__feature strong {
    color: var(--lp-gold);
    display: block;
    margin-bottom: 0.25rem;
}

.lp-aria__feature p {
    color: var(--lp-white);
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
}

.lp-aria__mockup {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lp-aria__mockup-header {
    background: #2a2a2a;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
}

.lp-aria__mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
}

.lp-aria__mockup-dot:nth-child(1) { background: #ff5f57; }
.lp-aria__mockup-dot:nth-child(2) { background: #ffbd2e; }
.lp-aria__mockup-dot:nth-child(3) { background: #28ca42; }

.lp-aria__mockup-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-aria__chat-bubble {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.lp-aria__chat-bubble--user {
    background: rgba(212, 175, 55, 0.15);
    color: var(--lp-gold);
    align-self: flex-end;
    max-width: 85%;
}

.lp-aria__chat-bubble--aria {
    background: #2a2a2a;
    color: var(--lp-white);
    align-self: flex-start;
    max-width: 85%;
}

.lp-aria__chat-bubble--aria strong {
    color: var(--lp-purple);
}

/* Agent-Ready Section */
.lp-agent {
    background: var(--lp-black);
}

.lp-agent__content {
    max-width: 900px;
    margin: 0 auto;
}

.lp-agent__explanation {
    text-align: center;
    margin-bottom: 3rem;
}

.lp-agent__explanation p {
    color: var(--lp-white);
    opacity: 0.85;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.lp-agent__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.lp-agent__card {
    background: rgba(106, 13, 173, 0.1);
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.lp-agent__card:hover {
    transform: translateY(-4px);
    border-color: var(--lp-purple);
}

.lp-agent__card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lp-agent__card h4 {
    color: var(--lp-gold);
    font-family: var(--lp-font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.lp-agent__card p {
    color: var(--lp-white);
    opacity: 0.75;
    font-size: 0.9rem;
    margin: 0;
}

.lp-agent__footnote {
    text-align: center;
    color: var(--lp-purple);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 2rem;
}

/* Blog Section */
.lp-blog {
    background: linear-gradient(180deg, #0d0d0d 0%, var(--lp-black) 100%);
}

.lp-blog__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.lp-blog__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: block;
}

.lp-blog__card:hover {
    transform: translateY(-4px);
    border-color: var(--lp-gold);
}

.lp-blog__date {
    color: var(--lp-purple);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-blog__title {
    color: var(--lp-gold);
    font-family: var(--lp-font-display);
    font-size: 1.4rem;
    margin: 0.75rem 0;
}

.lp-blog__excerpt {
    color: var(--lp-white);
    opacity: 0.75;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.lp-blog__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 900px) {
    .lp-aria__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lp-aria__visual {
        order: -1;
    }
    
    .lp-agent__grid {
        grid-template-columns: 1fr;
    }
    
    .lp-blog__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .lp-aria__headline {
        font-size: 2.2rem;
    }
}

/* ARIA Hero Image */
.lp-aria__image {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(106, 13, 173, 0.3), 0 0 40px rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

/* ARIA Wordmark */
.lp-aria__wordmark {
    width: 100%;
    max-width: 320px;
    margin-bottom: 0.75rem;
    border-radius: 8px;
}
