/* ============================================
   COMUNIDADE F456 - LANDING PAGE STYLES
   ============================================ */

/* --------------------------------------------
   CSS VARIABLES
   -------------------------------------------- */
:root {
    /* Colors */
    --color-bg-primary: #0a0e17;
    --color-bg-secondary: #0f1628;
    --color-gray-dark: #1a1f2e;
    --color-gold: #c9a84c;
    --color-gold-light: #e5c76b;
    --color-white: #ffffff;
    --color-gray-light: #a0a8b8;
    --color-error: #e74c3c;
    --color-success: #27ae60;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input {
    font-family: inherit;
    border: none;
    outline: none;
}

/* --------------------------------------------
   UTILITIES
   -------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.highlight {
    color: var(--color-gold);
}

/* --------------------------------------------
   LOGO
   -------------------------------------------- */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.logo__comunidade {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: #8a9bb8;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.logo__f456 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(
        180deg,
        #8b7355 0%,
        #c9a84c 25%,
        #e5c76b 50%,
        #c9a84c 75%,
        #8b7355 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.text-muted {
    color: var(--color-gray-light);
}

/* --------------------------------------------
   BUTTONS
   -------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 3rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    background-size: 200% 100%;
    color: var(--color-bg-primary);
    box-shadow:
        0 4px 15px rgba(201, 168, 76, 0.4),
        0 0 30px rgba(201, 168, 76, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 8px 30px rgba(201, 168, 76, 0.5),
        0 0 50px rgba(201, 168, 76, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary:active {
    transform: translateY(-1px) scale(1.01);
}

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

.btn__text {
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.btn__border {
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-md) + 3px);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
    filter: blur(8px);
}

.btn:hover .btn__border {
    opacity: 0.6;
}

.btn__loading {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: inherit;
    border-radius: inherit;
}

.btn.loading .btn__text {
    opacity: 0;
}

.btn.loading .btn__loading {
    display: flex;
}

.spinner {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

.spinner circle {
    stroke-dasharray: 50;
    stroke-dashoffset: 20;
    stroke-linecap: round;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pulse animation for CTA */
.cta-button {
    animation: shimmer 3s ease-in-out infinite, pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow:
            0 4px 15px rgba(201, 168, 76, 0.4),
            0 0 30px rgba(201, 168, 76, 0.2),
            0 0 0 0 rgba(201, 168, 76, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 4px 15px rgba(201, 168, 76, 0.4),
            0 0 30px rgba(201, 168, 76, 0.2),
            0 0 0 12px rgba(201, 168, 76, 0),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.cta-button:hover {
    animation: shimmer 3s ease-in-out infinite;
}

/* --------------------------------------------
   HERO SECTION
   -------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

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

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(15, 22, 40, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.hero__circle {
    position: absolute;
    border-radius: var(--radius-full);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.hero__circle--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero__circle--2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero__line {
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.2), transparent);
    width: 1px;
}

.hero__line--1 {
    height: 200px;
    top: 10%;
    left: 10%;
    animation: glow 3s ease-in-out infinite;
}

.hero__line--2 {
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation: glow 3s ease-in-out infinite 1.5s;
}

@keyframes glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.hero__content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__preheadline {
    font-size: 1rem;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero__pillars {
    display: block;
    color: var(--color-white);
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

.hero__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero__image-frame {
    position: relative;
    width: 280px;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(201, 168, 76, 0.3);
}

.hero__image-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.4), transparent 50%);
    pointer-events: none;
    opacity: 0.5;
}

.hero__badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    padding: 3px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBadge 8s linear infinite;
}

.hero__badge::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: var(--radius-full);
    background: var(--color-bg-primary);
}

.hero__badge-logo {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__badge-comunidade {
    font-family: var(--font-body);
    font-size: 0.45rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #8a9bb8;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.hero__badge-f456 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(
        180deg,
        #8b7355 0%,
        #c9a84c 25%,
        #e5c76b 50%,
        #c9a84c 75%,
        #8b7355 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --------------------------------------------
   SCROLL INDICATOR
   -------------------------------------------- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator__arrow {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
    animation: bounceDown 2s ease-in-out infinite;
}

.scroll-indicator__arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* Hide on very short screens */
@media (max-height: 600px) {
    .scroll-indicator {
        display: none;
    }
}

/* --------------------------------------------
   REFLECTION SECTION
   -------------------------------------------- */
.reflection {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-bg-secondary);
    position: relative;
}

.reflection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.reflection__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reflection__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
}

.reflection__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.reflection__divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold));
}

.reflection__divider-line:last-child {
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.reflection__divider-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: var(--radius-full);
}

.reflection__text {
    margin-bottom: var(--spacing-xl);
}

.reflection__text p {
    font-size: 1.125rem;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-md);
}

.reflection__text strong {
    color: var(--color-white);
    font-weight: 600;
}

.reflection__cta-text {
    color: var(--color-white) !important;
}

.reflection__pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.pillar:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-2px);
}

.pillar__icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

.pillar__icon svg {
    width: 100%;
    height: 100%;
}

.pillar__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
}

/* --------------------------------------------
   MODAL
   -------------------------------------------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal__container {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition-base);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.modal[aria-hidden="false"] .modal__container {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-light);
    transition: color var(--transition-fast);
}

.modal__close:hover {
    color: var(--color-white);
}

.modal__close svg {
    width: 20px;
    height: 20px;
}

.modal__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.modal__lock {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-sm);
    color: var(--color-gold);
}

.modal__lock svg {
    width: 100%;
    height: 100%;
}

.modal__subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: var(--spacing-xs);
}

.modal__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
}

/* --------------------------------------------
   FORM
   -------------------------------------------- */
.form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form__group {
    position: relative;
}

.form__input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--color-white);
    background: var(--color-gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form__input::placeholder {
    color: var(--color-gray-light);
}

.form__input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form__input.error {
    border-color: var(--color-error);
}

.form__input.error:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form__error {
    display: block;
    font-size: 0.75rem;
    color: var(--color-error);
    margin-top: var(--spacing-xs);
    min-height: 1rem;
}

.modal__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    font-size: 0.75rem;
    color: var(--color-gray-light);
}

.modal__footer svg {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
}

/* --------------------------------------------
   SUCCESS MESSAGE
   -------------------------------------------- */
.success-message {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.success-message[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.success-message__content {
    text-align: center;
    padding: var(--spacing-xl);
    transform: scale(0.9);
    transition: transform var(--transition-base);
}

.success-message[aria-hidden="false"] .success-message__content {
    transform: scale(1);
}

.success-message__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-success);
    animation: checkmark 0.5s ease-out 0.2s backwards;
}

@keyframes checkmark {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-message__icon svg {
    width: 100%;
    height: 100%;
}

.success-message__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.success-message__text {
    font-size: 1rem;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-xl);
}

.success-message__whatsapp {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-gray-dark);
}

.success-message__whatsapp-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.success-message__whatsapp-text {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-lg);
    max-width: 400px;
}

.success-message__whatsapp .btn {
    margin-bottom: var(--spacing-md);
}

.success-message__whatsapp-link {
    font-size: 0.8125rem;
    color: var(--color-gray-light);
}

.success-message__whatsapp-link a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.success-message__whatsapp-link a:hover {
    color: var(--color-gold-light);
}

/* --------------------------------------------
   RESPONSIVE - TABLET
   -------------------------------------------- */
@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }

    .hero__container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero__content {
        text-align: left;
        flex: 1;
        max-width: 55%;
    }

    .logo {
        align-items: flex-start;
    }

    .hero__description {
        margin-left: 0;
    }

    .hero__image-wrapper {
        flex: 0 0 auto;
    }

    .hero__image-frame {
        width: 320px;
        height: 400px;
    }

    .hero__badge {
        width: 130px;
        height: 130px;
        top: -35px;
        right: -35px;
    }

    .hero__badge-comunidade {
        font-size: 0.5rem;
    }

    .hero__badge-f456 {
        font-size: 1.75rem;
    }

    .logo__f456 {
        font-size: 4rem;
    }

    .reflection__pillars {
        grid-template-columns: repeat(4, 1fr);
        max-width: 600px;
    }
}

/* --------------------------------------------
   RESPONSIVE - DESKTOP
   -------------------------------------------- */
@media (min-width: 1024px) {
    .hero {
        padding: var(--spacing-2xl) 0;
    }

    .hero__content {
        max-width: 50%;
    }

    .hero__image-frame {
        width: 380px;
        height: 480px;
    }

    .hero__badge {
        width: 150px;
        height: 150px;
        top: -40px;
        right: -40px;
    }

    .hero__badge-comunidade {
        font-size: 0.55rem;
        letter-spacing: 0.2em;
    }

    .hero__badge-f456 {
        font-size: 2rem;
    }

    .logo__comunidade {
        font-size: 1rem;
    }

    .logo__f456 {
        font-size: 4.5rem;
    }

    .reflection__pillars {
        max-width: 700px;
    }

    .pillar {
        padding: var(--spacing-lg);
    }

    .pillar__icon {
        width: 40px;
        height: 40px;
    }
}

/* --------------------------------------------
   RESPONSIVE - LARGE DESKTOP
   -------------------------------------------- */
@media (min-width: 1280px) {
    .hero__image-frame {
        width: 420px;
        height: 520px;
    }
}

/* --------------------------------------------
   ANIMATIONS - FADE IN ON LOAD
   -------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
    .hero__content,
    .hero__image-wrapper,
    .reflection__content {
        animation-fill-mode: backwards;
    }

    .reflection__content {
        animation: fadeInUp 0.8s ease-out;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
