/* ══════════════════════════════════════════════════════════════════════════════
   Billy Landing Page — Dark Raccoon Theme
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #1D2730;
    --bg-card: #24303c;
    --bg-card-hover: #2a3845;
    --primary: #209397;
    --primary-glow: rgba(32, 147, 151, 0.3);
    --primary-soft: rgba(32, 147, 151, 0.12);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dim: rgba(255, 255, 255, 0.35);
    --border: #525252;
    --border-subtle: rgba(82, 82, 82, 0.5);
    --danger: #e74c3c;
    --success: #2ecc71;
    --warning: #f7c873;
    --finance-accent: #209397;
    --fitness-accent: #e74c8b;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #28b5b9;
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Navbar ────────────────────────────────────────────────────────────────── */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(29, 39, 48, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s;
}

.lp-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    text-decoration: none;
}

.lp-nav-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.lp-nav-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    text-decoration: none;
}

.lp-nav-links a:hover {
    color: var(--text);
}

.lp-nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
}

.lp-nav-cta:hover {
    background: #28b5b9;
    box-shadow: 0 4px 20px var(--primary-glow);
    transform: translateY(-1px);
}

.lp-nav-burger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

/* ── Mobile Nav ───────────────────────────────────────────────────────────── */
.lp-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(29, 39, 48, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}

.lp-mobile-menu.open {
    display: flex;
}

.lp-mobile-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    text-decoration: none;
}

.lp-mobile-menu a:hover {
    color: var(--text);
    background: var(--primary-soft);
}

/* ── Section Base ─────────────────────────────────────────────────────────── */
.lp-section {
    padding: 100px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--primary-soft);
    border-radius: var(--radius-xl);
}

.lp-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.lp-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.lp-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 32px 80px;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 50% 30%, rgba(32, 147, 151, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(231, 76, 139, 0.04) 0%, transparent 50%);
    animation: heroGlow 12s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-2%, 3%) scale(1.05);
    }
}

.lp-hero>* {
    position: relative;
    z-index: 1;
}

.lp-hero-logo {
    width: 180px;
    height: 180px;
    border-radius: 32px;
    margin-bottom: 40px;
    filter: drop-shadow(0 8px 40px var(--primary-glow));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.lp-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.lp-hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, #28b5b9 50%, var(--fitness-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.lp-hero-why {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-hero-why:hover {
    color: var(--primary);
}

.lp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.lp-btn-primary {
    background: var(--primary);
    color: white;
}

.lp-btn-primary:hover {
    background: #28b5b9;
    box-shadow: 0 6px 30px var(--primary-glow);
    transform: translateY(-2px);
    color: white;
}

.lp-btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

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

.lp-btn-fin {
    background: var(--finance-accent);
    color: white;
}

.lp-btn-fin:hover {
    box-shadow: 0 6px 30px rgba(32, 147, 151, 0.3);
    transform: translateY(-2px);
    color: white;
}

.lp-btn-fit {
    background: var(--fitness-accent);
    color: white;
}

.lp-btn-fit:hover {
    box-shadow: 0 6px 30px rgba(231, 76, 139, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* ── USP / Household Section ──────────────────────────────────────────────── */
.lp-usp {
    text-align: center;
}

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

.lp-usp-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
}

.lp-usp-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.lp-usp-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    background: var(--primary-soft);
    color: var(--primary);
}

.lp-usp-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.lp-usp-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── What's Inside / Scope Section ───────────────────────────────────────── */
.lp-scope {
    text-align: center;
}

.lp-scope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
    text-align: left;
}

.lp-scope-col {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s;
}

.lp-scope-col:hover {
    border-color: var(--border);
}

.lp-scope-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lp-scope-col-header.fin {
    background: rgba(32, 147, 151, 0.1);
    color: var(--finance-accent);
    border-bottom: 1px solid rgba(32, 147, 151, 0.15);
}

.lp-scope-col-header.fit {
    background: rgba(231, 76, 139, 0.1);
    color: var(--fitness-accent);
    border-bottom: 1px solid rgba(231, 76, 139, 0.15);
}

.lp-scope-list {
    list-style: none;
    padding: 6px 0;
}

.lp-scope-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 24px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.2s;
}

.lp-scope-list li:last-child {
    border-bottom: none;
}

.lp-scope-list li:hover {
    background: var(--bg-card-hover);
}

.lp-scope-list li > span:nth-of-type(1) {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.lp-scope-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.lp-scope-icon.fin {
    background: rgba(32, 147, 151, 0.12);
    color: var(--finance-accent);
}

.lp-scope-icon.fit {
    background: rgba(231, 76, 139, 0.12);
    color: var(--fitness-accent);
}

.lp-scope-tag {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 5px;
    flex-shrink: 0;
}

.lp-scope-tag.core {
    background: var(--primary-soft);
    color: var(--primary);
}

.lp-scope-tag.ai {
    background: rgba(231, 76, 139, 0.12);
    color: var(--fitness-accent);
}

.lp-scope-tag.integration {
    background: rgba(247, 200, 115, 0.1);
    color: var(--warning);
}

/* ── AI Section ───────────────────────────────────────────────────────────── */
.lp-ai {
    text-align: center;
    position: relative;
}

.lp-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.lp-ai-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s;
}

.lp-ai-item:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.lp-ai-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-soft), rgba(231, 76, 139, 0.08));
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.lp-ai-item span {
    font-size: 0.875rem;
    font-weight: 600;
    text-align: left;
}

/* ── Tech Stack ───────────────────────────────────────────────────────────── */
.lp-tech {
    text-align: center;
}

.lp-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
}

.lp-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s;
    white-space: nowrap;
}

.lp-tech-badge:hover {
    color: var(--text);
    border-color: var(--border);
}

.lp-tech-badge i {
    color: var(--primary);
}

/* ── Developer Section ────────────────────────────────────────────────────── */
.lp-dev {
    position: relative;
}

.lp-dev::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.lp-dev-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.lp-dev-avatar {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-soft), rgba(231, 76, 139, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.lp-dev-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.lp-dev-role {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.lp-dev-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.lp-dev-info p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.lp-dev-info p a:hover {
    opacity: 0.8;
}

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

.lp-dev-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: var(--radius-xl);
    background: var(--primary-soft);
    color: var(--primary);
}

.lp-dev-tag.meta {
    background: rgba(231, 76, 139, 0.1);
    color: var(--fitness-accent);
}

.lp-disclaimer {
    text-align: center;
    margin-top: 32px;
    padding: 12px 20px;
    background: rgba(247, 200, 115, 0.08);
    border: 1px solid rgba(247, 200, 115, 0.15);
    border-radius: var(--radius-md);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.lp-disclaimer p {
    font-size: 0.8rem;
    color: var(--warning);
    font-weight: 500;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.lp-footer {
    text-align: center;
    padding: 48px 32px;
    border-top: 1px solid var(--border-subtle);
}

.lp-footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.lp-footer p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ── Scroll Animations ────────────────────────────────────────────────────── */
.lp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Divider ──────────────────────────────────────────────────────────────── */
.lp-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0 auto 24px;
}

/* ── Section Alternating Background ───────────────────────────────────────── */
.lp-section-alt {
    background: linear-gradient(180deg, rgba(36, 48, 60, 0.3) 0%, transparent 100%);
}

/* ── Story Section ───────────────────────────────────────────────────────── */
.lp-stories {
    padding: 80px 32px;
    max-width: 860px;
    margin: 0 auto;
}

.lp-stories-header {
    text-align: center;
    margin-bottom: 48px;
}

.lp-story-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-story-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 32px 32px 36px;
    /* border-left: 4px solid var(--border); */
    transition: all 0.3s;
    position: relative;
}

.lp-story-card:hover {
    border-color: var(--border);
    border-left-color: var(--border);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.lp-story-card.fin {
    /* border-left-color: var(--finance-accent); */
}

.lp-story-card.fin:hover {
    /* border-left-color: var(--finance-accent); */
}

.lp-story-card.fit {
    /* border-left-color: var(--fitness-accent); */
}

.lp-story-card.fit:hover {
    /* border-left-color: var(--fitness-accent); */
}

.lp-story-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.lp-story-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.lp-story-card.fin .lp-story-icon {
    background: rgba(32, 147, 151, 0.12);
    color: var(--finance-accent);
}

.lp-story-card.fit .lp-story-icon {
    background: rgba(231, 76, 139, 0.12);
    color: var(--fitness-accent);
}

.lp-story-title {
    font-size: 1.1rem;
    font-weight: 700;
    flex: 1;
}

.lp-story-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-xl);
    flex-shrink: 0;
}

.lp-story-card.fin .lp-story-tag {
    background: rgba(32, 147, 151, 0.12);
    color: var(--finance-accent);
}

.lp-story-card.fit .lp-story-tag {
    background: rgba(231, 76, 139, 0.12);
    color: var(--fitness-accent);
}

.lp-story-problem {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
    font-style: normal;
}

.lp-story-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-dim);
}

.lp-story-divider::before,
.lp-story-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.lp-story-divider i {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.lp-story-solution {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
}

.lp-story-solution strong {
    color: var(--primary);
    font-weight: 700;
}

.lp-story-card.fit .lp-story-solution strong {
    color: var(--fitness-accent);
}

.lp-story-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    letter-spacing: -0.02em;
    pointer-events: none;
    transition: color 0.3s;
}

.lp-story-card:hover .lp-story-number {
    color: rgba(255, 255, 255, 0.08);
}

.lp-story-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 1.3rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-story-card:hover .lp-story-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.lp-story-problem {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.lp-story-divider i {
    font-size: 0.85rem;
    color: var(--primary);
    filter: drop-shadow(0 0 6px var(--primary-glow));
    transition: filter 0.3s;
}

.lp-story-card.fit .lp-story-divider i {
    color: var(--fitness-accent);
    filter: drop-shadow(0 0 6px rgba(231, 76, 139, 0.3));
}

.lp-story-card:hover .lp-story-divider i {
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.lp-story-solution {
    background: rgba(32, 147, 151, 0.06);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 18px 22px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
}

.lp-story-card.fit .lp-story-solution {
    background: rgba(231, 76, 139, 0.05);
    border-left-color: var(--fitness-accent);
}

.lp-hl-bad {
    color: #e2736a;
    background: rgba(231, 76, 60, 0.08);
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
}

.lp-hl-good {
    color: var(--primary);
    background: rgba(32, 147, 151, 0.1);
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
}

.lp-story-number {
    font-size: 1.5rem;
    top: 12px;
    right: 14px;
}


@media (max-width: 900px) {
    .lp-nav-links {
        display: none;
    }
    .lp-nav-burger {
        display: block;
    }

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

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

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

    .lp-section {
        padding: 60px 20px;
    }

    .lp-usp-card {
        padding: 28px 20px;
    }

    .lp-stories {
        padding: 60px 20px;
    }

    .lp-story-card {
        padding: 24px 20px 24px 24px;
    }

    .lp-dev-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 20px;
        gap: 20px;
    }

    .lp-dev-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .lp-dev-info p {
        text-align: left;
    }

    .lp-disclaimer {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 480px) {
    .lp-hero-title {
        font-size: 1.8rem;
    }

    .lp-hero-logo {
        width: 110px;
        height: 110px;
    }

    .lp-nav {
        padding: 0 16px;
    }

    .lp-btn {
        width: 100%;
        justify-content: center;
    }

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