/* =====================================================
   STRIKO LANDING PAGE - STYLES
   ===================================================== */

/* CSS Variables - Design System */
:root {
    /* Colors */
    --primary: #6750a4;
    --primary-dark: #4a3875;
    --primary-light: #8b7ab8;
    --primary-glow: rgba(103, 80, 164, 0.4);

    --accent: #ff6b35;
    --accent-dark: #e55a28;
    --accent-glow: rgba(255, 107, 53, 0.4);

    --dark: #0a0a0a;
    --dark-surface: #141414;
    --dark-card: #1a1a1a;
    --dark-border: #2a2a2a;

    --light: #f5f5f5;
    --light-muted: #b0b0b0;
    --muted: #888888;

    --success: #22c55e;
    --warning: #f59e0b;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--primary-glow);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.logo-text {
    background: linear-gradient(135deg, var(--light), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-weight: 500;
    color: var(--light-muted);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
}

.nav__link:hover {
    color: var(--light);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--primary);
    color: var(--light);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.header__toggle span {
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: var(--transition-base);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    opacity: 0.3;
}

.hero__shape--2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    opacity: 0.2;
}

.hero__shape--3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 50%;
    left: 30%;
    opacity: 0.15;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--light-muted);
    margin-bottom: var(--space-lg);
    max-width: 540px;
}

.hero__cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn__icon {
    width: 20px;
    height: 20px;
}

.btn--primary {
    background: var(--accent);
    color: var(--light);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

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

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.btn--large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
}

/* Hero Mockup */
.hero__mockup {
    display: flex;
    justify-content: center;
}

.hero-phone {
    position: relative;
    max-width: 320px;
}

.hero-phone__img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    border: 6px solid #2a2a2a;
}

.hero-phone__glow {
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at center, var(--primary-glow), transparent 70%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section--dark {
    background: var(--dark-surface);
}

.section--gradient {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-surface) 50%, var(--dark) 100%);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section__badge {
    display: inline-block;
    background: rgba(103, 80, 164, 0.2);
    color: var(--primary-light);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(103, 80, 164, 0.3);
}

.section__badge--light {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
    border-color: rgba(255, 107, 53, 0.3);
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.section__subtitle {
    color: var(--light-muted);
    font-size: 1.125rem;
}

/* =====================================================
   FEATURES GRID (Club Section)
   ===================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: var(--transition-base);
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-card__visual {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.feature-card__text {
    color: var(--light-muted);
    font-size: 0.95rem;
}

/* Mini Dashboard Visual */
.mini-dashboard {
    width: 100%;
}

.mini-chart {
    margin-bottom: var(--space-sm);
}

.mini-chart svg {
    width: 100%;
    height: 50px;
}

.mini-stats {
    display: flex;
    gap: var(--space-sm);
}

.mini-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--dark-card);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
}

/* Classes Preview Visual */
.classes-preview {
    width: 100%;
}

.class-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--dark-card);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
    border-left: 3px solid var(--success);
}

.class-item--pending {
    border-left-color: var(--muted);
    opacity: 0.7;
}

.class-item__time {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-light);
}

.class-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.class-item__name {
    font-weight: 600;
    font-size: 0.875rem;
}

.class-item__spots {
    font-size: 0.75rem;
    color: var(--muted);
}

.class-item__check {
    color: var(--success);
    font-weight: 700;
}

/* Challenge Preview Visual */
.challenge-preview {
    width: 100%;
}

.challenge-card {
    background: var(--dark-card);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
}

.challenge-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.challenge-card__icon {
    font-size: 1.25rem;
}

.challenge-card__name {
    font-weight: 700;
}

.challenge-card__progress {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--dark-border);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-full);
}

.challenge-card__percent {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.875rem;
}

.challenge-card__participants {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    color: var(--muted);
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 28px;
    height: 28px;
    background: var(--dark-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-right: -8px;
    border: 2px solid var(--dark-card);
}

/* Tools Grid Visual */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    width: 100%;
}

.tool-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: var(--dark-card);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.tool-icon:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.tool-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-light);
    transition: var(--transition-base);
}

.tool-icon:hover svg {
    color: var(--light);
}

.tool-icon span {
    font-size: 0.75rem;
    color: var(--muted);
    transition: var(--transition-base);
}

.tool-icon:hover span {
    color: var(--light);
}

/* =====================================================
   MEMBER FEATURES (Socios Section)
   ===================================================== */
.member-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.member-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.member-feature--reverse {
    direction: rtl;
}

.member-feature--reverse>* {
    direction: ltr;
}

.member-feature__icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.member-feature__title {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.member-feature__text {
    color: var(--light-muted);
    margin-bottom: var(--space-md);
}

.member-feature__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.member-feature__list li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--light-muted);
}

.member-feature__list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

/* Phone Mockup */
.phone-mockup {
    width: 240px;
    margin: 0 auto;
}

.phone-mockup__screen {
    background: var(--dark);
    border-radius: 30px;
    padding: var(--space-md);
    border: 8px solid #2a2a2a;
    box-shadow: var(--shadow-lg);
}

/* Phone Mockup with Image */
.phone-mockup--image {
    width: 280px;
    position: relative;
}

.phone-mockup--small {
    width: 220px;
}

.phone-mockup__img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg), 0 0 60px var(--primary-glow);
    border: 4px solid #2a2a2a;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(103, 80, 164, 0.5);
}

.pricing-card--pro {
    background: linear-gradient(180deg, rgba(26, 26, 26, 1) 0%, rgba(20, 20, 20, 1) 100%);
    border: 1px solid var(--primary);
    box-shadow: 0 8px 30px rgba(103, 80, 164, 0.15);
}

.pricing-card--pro:hover {
    border-color: var(--primary-light);
    box-shadow: 0 12px 40px rgba(103, 80, 164, 0.3);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(103, 80, 164, 0.4);
}

.pricing-card__header {
    margin-bottom: var(--space-lg);
    text-align: center;
    border-bottom: 1px solid var(--dark-border);
    padding-bottom: var(--space-lg);
}

.pricing-card__name {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.pricing-card__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 5px;
    color: var(--light-muted);
}

.price-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--muted);
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 4px;
}

.pricing-card__desc {
    color: var(--light-muted);
    font-size: 0.95rem;
}

.pricing-card__features {
    flex: 1;
    margin-bottom: var(--space-xl);
}

.pricing-card__features-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    color: var(--light);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-size: 0.95rem;
    color: var(--light-muted);
}

.feature-list__icon {
    color: var(--muted);
    font-weight: 700;
    margin-top: 2px;
}

.feature-list__icon--pro {
    color: var(--primary-light);
}

.btn--full {
    width: 100%;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.section--cta {
    padding: var(--space-2xl) 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(103, 80, 164, 0.3), rgba(255, 107, 53, 0.2));
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--primary-glow), transparent 50%);
    pointer-events: none;
}

.cta-box__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--space-sm);
    position: relative;
}

.cta-box__text {
    color: var(--light-muted);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    position: relative;
}

.cta-box__buttons {
    margin-bottom: var(--space-lg);
    position: relative;
}

.cta-box__stores {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
}

.cta-box__stores span {
    color: var(--muted);
    font-size: 0.875rem;
}

.store-badges {
    display: flex;
    gap: var(--space-sm);
}

.store-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-border);
    transition: var(--transition-base);
    cursor: pointer;
}

.store-badge:hover {
    border-color: var(--primary);
}

.store-badge svg {
    width: 20px;
    height: 20px;
}

.store-badge span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.footer__tagline {
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer__links h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    color: var(--light);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__links a {
    color: var(--muted);
    font-size: 0.875rem;
}

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

.footer__bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer__bottom p {
    color: var(--muted);
    font-size: 0.875rem;
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal--delay-1 {
    transition-delay: 0.1s;
}

.reveal--delay-2 {
    transition-delay: 0.2s;
}

.reveal--delay-3 {
    transition-delay: 0.3s;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__mockup {
        margin-top: var(--space-lg);
    }

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

    .member-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .member-feature--reverse {
        direction: ltr;
    }

    .member-feature__content {
        order: 1;
    }

    .member-feature__visual {
        order: 2;
    }

    .member-feature__list {
        align-items: center;
    }

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

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark-surface);
        padding: var(--space-3xl) var(--space-lg);
        transition: var(--transition-base);
        border-left: 1px solid var(--dark-border);
    }

    .header__nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }

    .nav__link--cta {
        width: 100%;
        text-align: center;
    }

    .header__toggle {
        display: flex;
        z-index: 1001;
    }

    .header__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .header__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding-top: calc(60px + var(--space-xl));
    }

    .mockup__device {
        width: 240px;
        height: 500px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__tagline {
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__links {
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }

    .btn--large {
        padding: var(--space-sm) var(--space-lg);
        font-size: 1rem;
    }

    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .cta-box {
        padding: var(--space-lg);
    }

    .store-badges {
        flex-direction: column;
    }
}