/* LOAR - Landing Page CSS */
:root {
    --lp-bg: #fdfbf7;
    --lp-dark: #2A2834;
    --lp-text: #5A5864;
    --lp-primary: #87A898;
    --lp-primary-light: #A5C1B1;
    --lp-accent: #D6B782;
    --lp-accent-light: #e8dbbc;
    --lp-pink: #EDBCC2;
    --lp-white: #ffffff;
    --lp-border: rgba(42, 40, 52, 0.08);
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--lp-bg);
    color: var(--lp-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--lp-border);
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--lp-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

.btn-primary {
    background: var(--lp-dark);
    color: var(--lp-white);
    box-shadow: 0 8px 20px rgba(42, 40, 52, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(42, 40, 52, 0.25);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(237, 188, 194, 0.25) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(165, 193, 177, 0.2) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(214, 183, 130, 0.15);
    color: #b08e51;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(214, 183, 130, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--lp-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--lp-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Features */
.features {
    padding: 6rem 2rem;
    background: var(--lp-white);
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.features-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.1rem;
    color: var(--lp-text);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--lp-bg);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--lp-border);
    transition: all 0.4s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 40, 52, 0.08);
    border-color: rgba(214, 183, 130, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--lp-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(42, 40, 52, 0.05);
    color: var(--lp-primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.feature-card p {
    color: var(--lp-text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Workflow Section */
.workflow {
    padding: 8rem 2rem;
    background: var(--lp-bg);
    position: relative;
    text-align: center;
}

.workflow-container {
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-title {
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.workflow-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.workflow-step {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--lp-accent);
    color: var(--lp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(214, 183, 130, 0.3);
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--lp-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--lp-dark);
    color: var(--lp-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(214, 183, 130, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3.5rem;
    color: var(--lp-white);
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-btn {
    background: var(--lp-accent);
    color: var(--lp-dark);
}

.cta-btn:hover {
    background: #e8dbbc;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(214, 183, 130, 0.3);
}

/* Footer */
.footer {
    background: #1a1824;
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--lp-white);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-links a:hover {
    color: var(--lp-white);
}

.footer-copyright {
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; }
    .cta-title { font-size: 2.5rem; }
    .features-title { font-size: 2.2rem; }
    .workflow-title { font-size: 2.2rem; }
    .nav-actions { display: none; } /* Could add a hamburger menu */
}
