/* ============================================
   OCTONOS - SEQUENCE STYLE LANDING PAGE
   ============================================ */

/* ------------ ROOT VARIABLES ------------ */
:root {
    --color-primary: #93B47E;
    --color-primary-dark: #7A9B69;
    --color-primary-light: #A5C292;

    --color-white: #FFFFFF;
    --color-background: #F7F7FB;
    --color-surface: #FFFFFF;

    --color-gray-050: #FBFBFD;
    --color-gray-100: #F2F2F5;
    --color-gray-200: #E4E4EA;
    --color-gray-300: #D2D2DB;
    --color-gray-500: #7A7A8A;
    --color-gray-700: #3D3D4D;
    --color-gray-900: #15151E;

    --color-blue: #3B82F6;

    --font-primary: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI",
        "Roboto", sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 5.5rem;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.07);

    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* ------------ RESET AND BASE ------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-gray-900);
    background:
        radial-gradient(circle at top left, #eef5f0 0, transparent 50%),
        radial-gradient(circle at top right, #edf2ff 0, transparent 50%),
        var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ------------ GLOBAL CONTAINER ------------ */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ------------ TYPOGRAPHY ------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-gray-900);
}

h1 {
    font-size: 3.25rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.1rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
}

p {
    font-size: 1rem;
    color: var(--color-gray-700);
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-xs);
}

/* ------------ BUTTONS ------------ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.9rem;
    border-radius: var(--radius-full);
    border: none;
    background: #2C9EA4;
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   NAVBAR - SEQUENCE STYLE
   ============================================ */

.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    transition:
        background var(--transition-base),
        box-shadow var(--transition-base);
}

.navbar.scrolled {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-logo .logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    border-radius: 12px;
    
}

/* Desktop menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary-dark);
}

.nav-button {
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-full);
    background: #2C9EA4;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-xs);
    transition: background var(--transition-fast);
}

.nav-button:hover {
    background: #101018;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.35rem;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-gray-900);
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    padding: 8.5rem 0 6.5rem;
    overflow: hidden;
}

/* --- Hero illustration background --- */
.hero::after {
    content: "";
    position: absolute;
    top: 10;
    right: 0;
    width: 60%;
    height: 80%;
    background-image: url("../images/hero-ideas.png");
    background-repeat: no-repeat;
    background-position: 60% center;
    background-size: contain;
    opacity: 0.95;
    pointer-events: none;
    z-index: -1;
}


.hero-split {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* Gradient orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    pointer-events: none;
}

.gradient-orb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(
        circle,
        rgba(147, 180, 126, 0.55),
        transparent 70%
    );
    top: -120px;
    left: -80px;
    animation: float 24s infinite ease-in-out;
}

.gradient-orb-2 {
    width: 520px;
    height: 520px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.3),
        transparent 70%
    );
    top: 15%;
    right: -120px;
    animation: float 28s infinite ease-in-out 4s;
}

.gradient-orb-3 {
    width: 360px;
    height: 360px;
    background: radial-gradient(
        circle,
        rgba(165, 194, 146, 0.4),
        transparent 70%
    );
    bottom: -140px;
    left: 35%;
    animation: float 26s infinite ease-in-out 8s;
}

@keyframes float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    25% {
        transform: translate3d(18px, -16px, 0);
    }
    50% {
        transform: translate3d(-20px, 12px, 0);
    }
    75% {
        transform: translate3d(14px, 18px, 0);
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr); /* bigger right side */
    gap: 1.0rem;
    align-items: center;
}


.hero-left {
    max-width: 540px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius-full);
    background: rgba(15, 23, 42, 0.04);
    padding: 0.25rem 0.8rem;
    margin-bottom: var(--spacing-sm);
    font-size: 0.8rem;
    color: var(--color-gray-700);
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.20rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: var(--spacing-lg);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: var(--spacing-lg);
}

.hero-note {
    font-size: 1rem;
    color: var(--color-gray-500);
    font-weight: bold;
}


/* Hero right app card */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-app-card {
    width: 100%;
    max-width: 1000px;     /* bigger hero image */
    padding: 0.2rem;       /* minimal padding */
    border-radius: 26px;

    background: radial-gradient(
        circle at top,
        rgba(202, 210, 255, 0.35),
        rgba(255, 255, 255, 0.95)
    );
    border: 1px solid rgba(220, 225, 255, 0.8);

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.04),
        0 16px 44px rgba(0, 0, 0, 0.08);

    /* OPTIONAL tilt — you may want to tone this down */
    transform: perspective(1400px) rotateY(-4deg);
}

.hero-app-card:hover {
    transform: perspective(1400px) rotateY(-2deg);
}

@keyframes heroCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.hero-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-gray-600);
}

.hero-app-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-app-status-pill {
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-full);
    background: #e0f2f1;
    color: #047857;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-app-image-wrapper {
    width:100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid rgba(230, 235, 255, 1);
    overflow: hidden;
    background: white;

    /* Remove artificial height restriction */
    height: auto;

    /* Let the frame expand with the image */
    width: 100%;
}


.hero-app-image {
    width: 800px;
    height: 300px;        /* preserves proportions */
    display: block;
}



.hero-app-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-app-pill {
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-full);
    background: rgba(15, 23, 42, 0.04);
    font-size: 0.75rem;
    color: var(--color-gray-700);
}

/* ============================================
   GENERIC FOLD LAYOUT
   ============================================ */

.fold {
    padding: var(--spacing-3xl) 0;
}

.fold-alt {
    background:
        radial-gradient(circle at top right, #eef5ff 0, transparent 60%),
        var(--color-gray-050);
}

/* Special background image treatment for features section */
#features {
    position: relative;
    overflow: hidden;
}

#features::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/app-dashboard.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 50%;
    opacity: 100%;
    pointer-events: none;
    z-index: 0;
}

#features .container {
    position: relative;
    z-index: 1;
}

#features .col-text {
    max-width: 500px;
}

#features .col-media {
    display: none;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto var(--spacing-2xl);
}

.section-title {
    font-size: 2.1rem;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--color-gray-700);
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: center;
}

.section-grid-reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.col-text {
    max-width: 540px;
}

.col-media {
    display: flex;
    justify-content: center;
}

/* Bulleted list */
.bullets-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.bullets-list li {
    padding-left: 1.4rem;
    margin-bottom: 0.7rem;
    position: relative;
    font-size: 0.98rem;
    color: #2C2D2E;
}

.bullets-list li::before {
    content: "•";
    position: absolute;
    left: 0.3rem;
    top: 0;
    font-size: 1.1rem;
    color: #2C2D2E;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.feature-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.25rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(212, 220, 230, 0.8);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(147, 180, 126, 0.65);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: var(--spacing-md);
}

.feature-row h3 {
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.feature-row p {
    font-size: 0.95rem;
}

.feature-hero-card {
    max-width: 420px;
}

.feature-hero-image {
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.social-proof {
    background: var(--color-white);
}

.reviews-marquee {
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 12%,
        black 88%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 12%,
        black 88%,
        transparent
    );
}

.reviews-track {
    display: flex;
    gap: 1.4rem;
    animation: reviewsSlide 38s linear infinite;
    will-change: transform;
}

.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes reviewsSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    min-width: 280px;
    max-width: 320px;
    background: linear-gradient(
        145deg,
        rgba(250, 250, 252, 0.95),
        rgba(239, 246, 242, 0.9)
    );
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.2rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(212, 220, 230, 0.8);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #2C9EA4;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.testimonial-card p {
    font-size: 0.9rem;
}

.testimonial-quote {
    font-style: italic;
}

/* ============================================
   CREATORS GRID
   ============================================ */

.creators-fold {
    background: var(--color-gray-050);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.creator-card {
    padding: 1rem 1.1rem;
}

.creator-avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #166534;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

/* ============================================
   DETAILED FEATURES SECTION
   ============================================ */

.features-detailed-fold {
    background: var(--color-white);
    padding-top: var(--spacing-3xl);
}

/* Features Detailed Grid */
.features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.3rem;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.feature-detail-card {
    padding: 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    position: relative;
    transition: all var(--transition-base);
}

.feature-detail-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Premium card styling */
.feature-card-premium {
    background: linear-gradient(145deg, 
        rgba(250, 250, 252, 0.98), 
        rgba(245, 248, 250, 0.95)
    );
    border: 1.5px solid rgba(147, 180, 126, 0.15);
}

.feature-card-premium:hover {
    border-color: rgba(147, 180, 126, 0.3);
}

/* Feature Icons */
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.3rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.feature-icon-green {
    background: rgba(46, 125, 50, 0.08);
    color: #2E7D32;
}

.feature-icon-blue {
    background: rgba(59, 130, 246, 0.08);
    color: #3B82F6;
}

.feature-icon-purple {
    background: rgba(139, 92, 246, 0.08);
    color: #8B5CF6;
}

.feature-icon-yellow {
    background: rgba(245, 158, 11, 0.08);
    color: #F59E0B;
}

.feature-icon-teal {
    background: rgba(44, 158, 164, 0.08);
    color: #2C9EA4;
}

.feature-icon-gray {
    background: rgba(100, 116, 139, 0.08);
    color: #64748B;
}

.feature-icon-premium {
    background: linear-gradient(135deg, 
        rgba(147, 180, 126, 0.12), 
        rgba(122, 155, 105, 0.08)
    );
    color: var(--color-primary-dark);
}

/* Feature Card Content */
.feature-detail-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.2rem;
}

.feature-detail-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-gray-600);
    flex-grow: 1;
}

/* Feature Badges */
.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: 0.4rem;
    width: fit-content;
}

.feature-free {
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.feature-pro {
    background: linear-gradient(135deg, #66B3E3, #8B5CF6);
    color: white;
    border: 1px solid rgba(147, 180, 126, 0.3);
}

/* Bottom CTA Section */
.features-cta {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(135deg, 
        rgba(147, 180, 126, 0.05), 
        rgba(59, 130, 246, 0.03)
    );
    border-radius: var(--radius-xl);
    border: 1px solid rgba(147, 180, 126, 0.15);
}

.features-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray-900);
}

.features-cta p {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
}

.features-cta .btn-primary {
    margin: 0 auto;
}

/* ============================================
   VALUE HIGHLIGHTS
   ============================================ */

.vp-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: var(--spacing-md);
}

.vp-highlight {
    flex: 1 1 150px;
    text-align: left;
}

.vp-highlight h3 {
    color: var(--color-primary-dark);
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.vp-highlight p {
    font-size: 0.85rem;
    color: var(--color-gray-600);
}

/* ============================================
   PRICING
   ============================================ */

.pricing-fold {
    background:
        radial-gradient(circle at top left, #eef5f0 0, transparent 55%),
        var(--color-white);
}

.pricing-grid {
    display: grid;
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    padding: 1.6rem 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.pricing-card-highlight {
    border-width: 1.5px;
    border-color: rgba(147, 180, 126, 0.85);
    box-shadow: var(--shadow-md);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    background: #ecfdf3;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gray-900);
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    font-weight: 500;
    margin-left: 0.2rem;
}

.pricing-note {
    font-size: 0.92rem;
    color: var(--color-gray-600);
}

.pricing-list {
    list-style: none;
    font-size: 0.9rem;
    color: var(--color-gray-700);
    margin-bottom: 0.8rem;
}

.pricing-list li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.pricing-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
    color: var(--color-primary-dark);
}

.pricing-card .btn-primary {
    margin-top: 0.4rem;
    width: fit-content;
}

.pricing-footer-text {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

.pricing-footer-text span {
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-300);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-grid {
    max-width: 1120px;
    margin: 0 auto var(--spacing-xl);
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 1.8rem;
}

.footer-tagline {
    margin-top: 0.7rem;
    max-width: 260px;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer h4 {
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
    color: #e5e7eb;
}

.footer p {
    font-size: 0.86rem;
    margin-bottom: 0.25rem;
    color: #9ca3af;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.footer p:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    max-width: 1120px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg) 0;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.86rem;
    color: #9ca3af;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social span {
    cursor: pointer;
    transition: color var(--transition-fast);
}

.footer-social span:hover {
    color: var(--color-primary-light);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 960px) {
    .hero-inner,
    .section-grid,
    .section-grid-reverse {
        grid-template-columns: minmax(0, 1fr);
        .hero::after {
            display: none;
        }
    }

    /* Remove background image on mobile for features section */
    #features .section-grid {
        background-image: none;
        min-height: auto;
    }

    .hero-split {
        min-height: auto;
        padding-top: 7rem;
    }

    .hero-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    

    .hero-app-card {
        margin-bottom: 1.5rem;
    }

    .section-grid,
    .section-grid-reverse {
        gap: 2.2rem;
    }

    .creators-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

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

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1.2rem var(--spacing-lg) 1.6rem;
        gap: 1rem;
        transform: translateY(-140%);
        transition: transform var(--transition-slow);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hero {
        padding-top: 6.5rem;
    }

    h1.hero-title {
        font-size: 2.3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .hero-metrics {
        gap: 1rem;
    }

    .creators-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Feature Image Mobile */
    .feature-hero-image {
        min-height: 350px;
    }

    /* Features Section Mobile */
    .features-detailed-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
    }

    .feature-detail-card {
        padding: 1.3rem 1.4rem;
    }

    .features-cta {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .features-cta h3 {
        font-size: 1.3rem;
    }

    .features-cta p {
        font-size: 0.95rem;
    }

    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.5fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding-inline: 1.25rem;
    }

    h1.hero-title {
        font-size: 2rem;
    }

    .hero-app-card {
        padding: 1rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
/* ============================================
   CREATORS SECTION BACKGROUND (SUBTLE)
   ============================================ */

   .creators-fold {
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Background layer */
.creators-fold::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../images/dynamic-blue.jpeg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    opacity: 30%; /* tune this */
    pointer-events: none;
    z-index: 0;
}

/* Ensure content is always above background */
.creators-fold > .container {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
}

@media (max-width: 960px) {
    .creators-fold::before {
        display: none;
    }
}

