:root {
    --sky-top: #9aa7ff;
    --sky-mid: #cfd2ff;
    --sky-bottom: #f8dcc2;
    --mountain-back: #7a8be8;
    --mountain-front: #5f6fd1;
    --lake: #4ec2b7;
    --forest: #6ba57c;
    --bear: #f4a23b;
    --honey: #ffd777;
    --sun: #fff1c4;
    --cream: #fff8ef;
    --cream-deep: #f4e2cf;
    --peach: #f7c3a1;
    --coral: #f27b61;
    --ink: #2c2a2a;
    --ink-soft: #5a5450;
    --stroke: rgba(44, 42, 42, 0.15);
    --shadow: 0 18px 40px rgba(62, 54, 49, 0.18);
    --shadow-soft: 0 8px 20px rgba(62, 54, 49, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --font-display: "Fredoka", "Trebuchet MS", sans-serif;
    --font-body: "Nunito", "Trebuchet MS", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 40%, var(--sky-bottom) 75%, #fff3e3 100%);
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.background {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.35), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.25), transparent 45%),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.2), transparent 50%);
    opacity: 0.6;
}

.background__mountain {
    position: absolute;
    left: -10%;
    width: 120%;
    height: 45%;
    background: linear-gradient(180deg, var(--mountain-back), var(--mountain-front));
    clip-path: polygon(0% 100%, 12% 58%, 30% 82%, 46% 45%, 62% 78%, 78% 54%, 100% 100%);
    opacity: 0.5;
    bottom: 28%;
}

.background__mountain--front {
    bottom: 0;
    height: 40%;
    background: linear-gradient(180deg, #5c6ed8 0%, #4b5ab4 100%);
    opacity: 0.75;
}

.background__lake {
    position: absolute;
    bottom: -10%;
    left: -15%;
    width: 130%;
    height: 30%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3), transparent 60%),
        linear-gradient(180deg, rgba(78, 194, 183, 0.9), rgba(62, 158, 150, 0.9));
    opacity: 0.7;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.fastbear-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 248, 239, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(44, 42, 42, 0.08);
}

.fastbear-nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.fastbear-nav__brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.fastbear-nav__divider {
    width: 1px;
    height: 20px;
    background: rgba(44, 42, 42, 0.2);
    margin: 0 0.75rem;
}

.fastbear-nav__product {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
}

.fastbear-nav__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fastbear-nav__actions {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--apple {
    background: linear-gradient(135deg, #54d0c1 0%, #3cb1a4 100%);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.btn--apple:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    border: 1px solid rgba(44, 42, 42, 0.12);
}

.hero {
    padding: 6.5rem 0 4.5rem;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.75);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border: 1px solid rgba(44, 42, 42, 0.1);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    color: var(--ink);
}

.hero__lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1.1rem;
}

.hero__copy {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.hero__note {
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.hero__visual {
    display: flex;
    justify-content: center;
}

.hero__frame {
    background: rgba(255, 255, 255, 0.65);
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(44, 42, 42, 0.1);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.hero__logo {
    display: block;
    width: clamp(180px, 28vw, 320px);
    height: auto;
}

.section {
    padding: 3.5rem 0;
}

.section__panel {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(44, 42, 42, 0.1);
    box-shadow: var(--shadow-soft);
}

.section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.section__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ink-soft);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
}

.section__text {
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.checklist li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-weight: 600;
    color: var(--ink);
}

.checklist li::before {
    content: "+";
    font-weight: 900;
    color: var(--coral);
}

.screenshot {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid rgba(44, 42, 42, 0.1);
    background: #ffffff;
}

.milestones {
    display: grid;
    gap: 1rem;
}

.milestone {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 1rem 1.4rem;
    border: 1px solid rgba(44, 42, 42, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.milestone__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--lake);
    box-shadow: 0 0 0 6px rgba(78, 194, 183, 0.2);
}

.outfits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.outfit-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(44, 42, 42, 0.1);
    box-shadow: var(--shadow-soft);
    text-align: center;
    font-weight: 700;
}

.outfit-card span {
    display: block;
    font-size: 0.9rem;
    color: var(--ink-soft);
    font-weight: 600;
    margin-top: 0.5rem;
}

.free-callout {
    background: linear-gradient(135deg, #fff3db 0%, #ffe6bf 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(44, 42, 42, 0.1);
    box-shadow: var(--shadow);
}

.free-callout h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.8rem;
}

.feature-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.feature-list li {
    list-style: none;
    background: rgba(255, 255, 255, 0.85);
    padding: 0.9rem 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(44, 42, 42, 0.1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list li::before {
    content: "*";
    font-weight: 900;
    color: var(--coral);
}

.cta {
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4.5vw, 3.2rem);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--ink-soft);
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta__note {
    margin-top: 1rem;
}

.disclaimer {
    background: rgba(255, 251, 241, 0.95);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    border: 1px solid rgba(44, 42, 42, 0.12);
    box-shadow: var(--shadow-soft);
}

.disclaimer h3 {
    font-family: var(--font-display);
    margin-bottom: 0.8rem;
}

.disclaimer p {
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.disclaimer strong {
    color: var(--ink);
}

.footer {
    padding: 2.5rem 0 3rem;
    border-top: 1px solid rgba(44, 42, 42, 0.1);
    background: rgba(255, 248, 239, 0.85);
}

.footer__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer__brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.footer__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__links a {
    font-weight: 600;
    color: var(--ink-soft);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.8rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: var(--ink-soft);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(44, 42, 42, 0.15);
    background: rgba(255, 255, 255, 0.85);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link i {
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(44, 42, 42, 0.12);
    padding-top: 1.5rem;
    color: var(--ink-soft);
    font-weight: 600;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__content > * {
    animation: riseIn 0.8s ease both;
}

.hero__content > :nth-child(1) { animation-delay: 0.05s; }
.hero__content > :nth-child(2) { animation-delay: 0.1s; }
.hero__content > :nth-child(3) { animation-delay: 0.15s; }
.hero__content > :nth-child(4) { animation-delay: 0.2s; }
.hero__content > :nth-child(5) { animation-delay: 0.25s; }
.hero__content > :nth-child(6) { animation-delay: 0.3s; }

.outfit-card,
.milestone,
.feature-list li {
    animation: riseIn 0.8s ease both;
}

.outfit-card:nth-child(1),
.milestone:nth-child(1),
.feature-list li:nth-child(1) { animation-delay: 0.05s; }
.outfit-card:nth-child(2),
.milestone:nth-child(2),
.feature-list li:nth-child(2) { animation-delay: 0.12s; }
.outfit-card:nth-child(3),
.milestone:nth-child(3),
.feature-list li:nth-child(3) { animation-delay: 0.18s; }
.outfit-card:nth-child(4),
.milestone:nth-child(4),
.feature-list li:nth-child(4) { animation-delay: 0.24s; }
.outfit-card:nth-child(5),
.milestone:nth-child(5),
.feature-list li:nth-child(5) { animation-delay: 0.3s; }
.outfit-card:nth-child(6),
.milestone:nth-child(6),
.feature-list li:nth-child(6) { animation-delay: 0.36s; }

@media (max-width: 768px) {
    .fastbear-nav__actions {
        display: none;
    }

    .hero {
        padding-top: 5.5rem;
    }

    .section__panel {
        padding: 2rem;
    }

    .footer__grid {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__frame {
        padding: 1rem;
    }

    .section__panel {
        padding: 1.5rem;
    }
}

/* Support Section */
.support-section {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 2px solid var(--stroke);
    box-shadow: var(--shadow-soft);
}

.support-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.support-section > p {
    color: var(--ink-soft);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.support-contact {
    margin: 1.5rem 0;
}

.support-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--ink);
    background: var(--honey);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 2px solid var(--bear);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-email:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.support-email svg {
    width: 24px;
    height: 24px;
    stroke: var(--bear);
}

.support-note {
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
