/* ===================================================
   66-Day Streak — Landing Page Styles
   High-Conversion Redesign
   =================================================== */

/* ── Design Tokens ─────────────────────────────── */
:root {
    --bg-primary: #0E0E10;
    --bg-card: #1A1A1D;
    --bg-card-hover: #232328;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #60748B;
    --accent: #7C5CFC;
    --accent-glow: rgba(124, 92, 252, 0.35);
    --gradient-start: #FF6B6B;
    --gradient-mid-1: #EC4899;
    --gradient-mid-2: #7C5CFC;
    --gradient-end: #06B6D4;
    --success: #10B981;
    --danger: #EF4444;
    --border: rgba(255, 255, 255, 0.07);
    --glass-bg: rgba(26, 26, 29, 0.65);
    --glass-border: rgba(255, 255, 255, 0.09);
    --max-width: 1120px;
    --header-height: 72px;
    --radius-card: 20px;
    --radius-lg: 28px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ── Layout ─────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Utilities ──────────────────────────────────── */
.brand-gradient-text {
    background: linear-gradient(135deg,
            var(--gradient-start),
            var(--gradient-mid-1),
            var(--gradient-mid-2),
            var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Ambient Glow ───────────────────────────────── */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-glow::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.09) 0%, transparent 70%);
    animation: drift1 14s ease-in-out infinite alternate;
}

.ambient-glow::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
    animation: drift2 12s ease-in-out infinite alternate;
}

@keyframes drift1 {
    to {
        transform: translate(80px, 60px);
    }
}

@keyframes drift2 {
    to {
        transform: translate(-60px, -40px);
    }
}

/* ── Header ─────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(14, 14, 16, 0.85);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
}

.site-header__brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-header__nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.site-header__nav a:hover {
    color: var(--text-primary);
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.28s ease;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 14px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gradient-mid-1), var(--accent));
    color: #ffffff !important;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(124, 92, 252, 0.5);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.btn--glow {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 4px 24px rgba(124, 92, 252, 0.45);
    }

    50% {
        box-shadow: 0 4px 48px rgba(236, 72, 153, 0.6);
    }
}

/* ── Sections ────────────────────────────────────── */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section--centered {
    text-align: center;
}

.section--centered .section__desc {
    margin: 0 auto;
}

.section__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.13;
    margin-bottom: 16px;
}

.section__desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.7;
}

.section__cta {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section__microcopy {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Reveal Animation ────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Hero ────────────────────────────────────────── */
.hero {
    padding: 170px 0 100px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero__logo {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    margin: 0 auto 32px;
    box-shadow: 0 8px 40px rgba(124, 92, 252, 0.3);
    animation: logoEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: scale(0.65) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero__eyebrow {
    margin-bottom: 20px;
    animation: fadeUp 0.7s ease 0.15s forwards;
    opacity: 0;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(124, 92, 252, 0.12);
    border: 1px solid rgba(124, 92, 252, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #A78BFA;
}

.hero__title {
    font-size: clamp(32px, 5.5vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.75s ease 0.25s forwards;
    opacity: 0;
}

.hero__subtitle {
    font-size: clamp(16px, 2.2vw, 19px);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeUp 0.75s ease 0.4s forwards;
    opacity: 0;
}

.hero__subtitle strong {
    color: var(--text-primary);
}

.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.75s ease 0.55s forwards;
    opacity: 0;
}

.hero__social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
    animation: fadeUp 0.75s ease 0.7s forwards;
    opacity: 0;
}

.hero__stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 18px;
    color: #FACC15;
}

.hero__rating-text {
    font-size: 14px;
    color: var(--text-muted);
}

.hero__rating-text strong {
    color: var(--text-secondary);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Social Proof Strip ──────────────────────────── */
.social-strip {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.social-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 28px 48px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-wrap: wrap;
}

.social-strip__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 40px;
}

.social-strip__number {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.social-strip__label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.social-strip__divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── Why 66 ──────────────────────────────────────── */
.why-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.why-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 52px;
    display: flex;
    align-items: center;
    gap: 52px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.why-card__number {
    font-size: 130px;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.04em;
}

.why-card__content h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.why-card__content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
}

.why-card__content strong {
    color: var(--text-primary);
}

/* ── How It Works ────────────────────────────────── */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 56px;
    flex-wrap: nowrap;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 36px 28px;
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
    border-color: rgba(124, 92, 252, 0.3);
    transform: translateY(-4px);
}

.step-card__number {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 16px;
}

.step-card__icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.step-connector {
    width: 56px;
    flex-shrink: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-mid-2), var(--gradient-end));
    opacity: 0.35;
    position: relative;
    margin: 0 -1px;
}

.step-connector::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: var(--accent);
    opacity: 0.7;
    background: var(--bg-primary);
    padding: 0 6px;
}

/* ── Features Grid ───────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 52px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--glass-border);
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.feature-card__icon--violet {
    background: rgba(124, 92, 252, 0.12);
}

.feature-card__icon--teal {
    background: rgba(6, 182, 212, 0.12);
}

.feature-card__icon--pink {
    background: rgba(236, 72, 153, 0.12);
}

.feature-card__icon--green {
    background: rgba(16, 185, 129, 0.12);
}

.feature-card__icon--orange {
    background: rgba(249, 115, 22, 0.12);
}

.feature-card__icon--blue {
    background: rgba(59, 130, 246, 0.12);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Testimonials ────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 52px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(124, 92, 252, 0.25);
    transform: translateY(-3px);
}

.testimonial-card__stars {
    font-size: 16px;
    color: #FACC15;
    letter-spacing: 2px;
}

.testimonial-card__quote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-card__meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ── Screenshots ─────────────────────────────────── */
.screenshots {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.screenshots__gallery {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-top: 52px;
    flex-wrap: wrap;
}

.screenshots__item {
    width: 240px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.screenshots__item--featured {
    width: 280px;
    transform: scale(1.03);
    box-shadow: 0 16px 60px rgba(124, 92, 252, 0.2);
    border-color: rgba(124, 92, 252, 0.2);
}

.screenshots__item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 64px rgba(124, 92, 252, 0.2);
}

.screenshots__item--featured:hover {
    transform: translateY(-8px) scale(1.05);
}

.screenshots__item img {
    width: 100%;
    height: auto;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-list {
    max-width: 720px;
    margin: 56px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item[open] {
    border-color: rgba(124, 92, 252, 0.3);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    padding: 22px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-primary);
    user-select: none;
    transition: color 0.2s;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question:hover {
    color: var(--accent);
}

.faq-item__chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
    text-align: center;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.cta-banner__inner {
    background: linear-gradient(135deg,
            rgba(124, 92, 252, 0.1),
            rgba(6, 182, 212, 0.07));
    border: 1px solid var(--glass-border);
    border-radius: 36px;
    padding: 72px 48px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%,
            rgba(124, 92, 252, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #34D399;
    margin-bottom: 24px;
}

.cta-banner__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.cta-banner__desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.cta-banner__microcopy {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.site-footer__brand img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.site-footer__links {
    display: flex;
    gap: 24px;
}

.site-footer__links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.site-footer__links a:hover {
    color: var(--text-primary);
}

.site-footer__copy {
    font-size: 13px;
    color: var(--text-muted);
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

/* ── Legal Pages ─────────────────────────────────── */
.legal {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.legal__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    transition: color 0.2s;
}

.legal__back:hover {
    color: var(--accent);
}

.legal__back svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.legal__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.legal__updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal__content {
    max-width: 720px;
}

.legal__content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal__content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.legal__content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal__content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal__content ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.legal__content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.legal__content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal__content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal__content a:hover {
    color: var(--text-primary);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
    .steps-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .step-card {
        max-width: 100%;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: -1px auto;
        background: linear-gradient(180deg, var(--gradient-mid-2), var(--gradient-end));
    }

    .step-connector::after {
        content: '↓';
    }

    .social-strip__stat {
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    .why-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
        gap: 24px;
    }

    .why-card__number {
        font-size: 88px;
    }

    .hero {
        padding: 138px 0 64px;
    }

    .section {
        padding: 64px 0;
    }

    .social-strip .container {
        padding: 0 16px;
    }

    .social-strip__inner {
        padding: 24px 16px;
        gap: 0;
    }

    .social-strip__divider {
        display: none;
    }

    .social-strip__stat {
        width: 50%;
        padding: 14px 8px;
    }

    .screenshots__gallery {
        gap: 16px;
    }

    .screenshots__item {
        width: 200px;
    }

    .screenshots__item--featured {
        width: 230px;
        transform: scale(1);
    }

    .site-header__nav {
        gap: 16px;
    }

    .site-header__nav a.nav-link--desktop {
        display: none;
    }

    .cta-banner__inner {
        padding: 48px 24px;
        border-radius: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero__cta {
        flex-direction: column;
    }

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

    .btn--lg {
        padding: 16px 28px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .screenshots__item {
        width: 150px;
    }

    .screenshots__item--featured {
        width: 175px;
    }

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

    .site-footer__links {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .social-strip__stat {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .social-strip__stat:last-child {
        border-bottom: none;
    }
}
