:root {
    --brand-color: rgb(40, 119, 225);
    --brand-color-light: rgba(40, 119, 225, 0.1);
    --brand-color-muted: rgba(40, 119, 225, 0.7);
    --brand-color-accent: rgba(40, 119, 225, 0.4);
    --bg-color: rgba(40, 119, 225, 0.05);
    --text-color: rgb(40, 119, 225);
    --white: #ffffff;
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--brand-color-light);
}

.nav-container {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--brand-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    color: var(--brand-color);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

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

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

.btn-primary {
    background-color: var(--brand-color);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    margin-top: 60px;
    padding: 4rem 1.5rem 6rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        margin-top: 0;
        padding: 8rem 1.5rem 10rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    max-width: 40rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--brand-color-light);
    color: var(--brand-color);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--brand-color-accent);
    border-radius: 50%;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--brand-color-accent);
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--brand-color);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

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

.hero-description {
    font-size: 1.125rem;
    color: var(--brand-color-muted);
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.text-bold {
    font-weight: 500;
    color: var(--brand-color);
}

.button-group-centered {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .button-group-centered {
        flex-direction: row;
    }
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--brand-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    box-shadow: 0 20px 25px -5px var(--brand-color-light);
    width: fit-content;
}

.store-button:hover {
    opacity: 0.9;
}

.store-icon {
    width: 2rem;
    height: 2rem;
}

.store-text {
    text-align: left;
}

.store-label {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.store-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.social-proof {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--brand-color-accent);
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -0.5rem;
}

.avatar:first-child {
    margin-left: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .hero-visual {
        margin-top: 0;
    }
}

.hero-mockup-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

.blob {
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.3;
    mix-blend-mode: multiply;
    animation: blob 7s infinite;
}

.blob-1 {
    background-color: var(--brand-color-accent);
    top: -2.5rem;
    right: -2.5rem;
}

.blob-2 {
    background-color: var(--brand-color-light);
    bottom: -2.5rem;
    left: -2.5rem;
    animation-delay: 2s;
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

/* Features Section */
.features {
    background-color: var(--brand-color);
    color: var(--white);
    padding: 6rem 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* Value Prop Section */
.value-prop {
    padding: 6rem 1.5rem;
}

.value-prop-flex {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .value-prop-flex {
        flex-direction: row;
    }
}

.value-prop-image {
    flex: 1;
}

.value-prop-image img {
    width: 100%;
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.value-prop-content {
    flex: 1;
}

.value-prop-content h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check-icon {
    color: var(--brand-color);
    flex-shrink: 0;
}

.check-list span {
    font-size: 1.125rem;
    color: var(--brand-color-muted);
}

.button-centered {
    display: flex;
    justify-content: center;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--brand-color);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s;
}

.arrow-icon {
    transition: transform 0.2s;
}

.btn-link:hover .arrow-icon {
    transform: translateX(8px);
}

/* CTA Section */
.cta {
    padding-bottom: 6rem;
}

.cta-card {
    background-color: var(--brand-color-light);
    border-radius: 3rem;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 6rem;
    }
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 3.75rem;
    }
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--brand-color-muted);
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: radial-gradient(circle at 2px 2px, var(--brand-color) 1px, transparent 0);
    background-size: 40px 40px;
}

/* Footer */
footer {
    background-color: var(--white);
    border-top: 1px solid var(--brand-color-light);
    padding: 3rem 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo-icon {
    fill: var(--brand-color);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.875rem;
    color: var(--brand-color-accent);
    transition: color 0.2s;
}

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

.copyright {
    font-size: 0.875rem;
    color: var(--brand-color-accent);
}

/* Content Pages Styling */
.content-page {
    padding: 8rem 1.5rem 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-page h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--brand-color);
}

.content-page h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--brand-color);
}

.content-page p {
    margin-bottom: 1.5rem;
    color: var(--brand-color-muted);
    line-height: 1.7;
}

.content-page ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--brand-color-muted);
}

.content-page li {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid var(--brand-color-light);
    box-shadow: 0 10px 15px -3px var(--brand-color-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--brand-color-light);
    background-color: var(--bg-color);
    color: var(--brand-color);
    font-family: var(--font-sans);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--brand-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.75rem;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-submit:hover {
    opacity: 0.9;
}
