html {
    scroll-behavior: smooth;
}

:root {
    --font-body: 'Monda', ui-sans-serif, system-ui, sans-serif;
    --font-heading: 'Monda', ui-sans-serif, system-ui, sans-serif;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top, rgba(167, 38, 84, 0.08), transparent 26%),
        linear-gradient(180deg, #fffafc 0%, #ffffff 42%, #fff6f9 100%);
    font-feature-settings: 'ss01' 1, 'ss03' 1;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.brand-logo {
    height: 3.4rem;
    width: 3.4rem;
    border-radius: 1rem;
    border: 1px solid #edd5df;
    background: #ffffff;
    object-fit: contain;
    padding: 0.35rem;
    box-shadow: 0 14px 36px rgba(167, 38, 84, 0.25);
}

.ambient-mesh {
    background:
        radial-gradient(circle at 14% 10%, rgba(167, 38, 84, 0.14), transparent 30%),
        radial-gradient(circle at 90% 18%, rgba(236, 72, 153, 0.12), transparent 30%),
        radial-gradient(circle at 48% 66%, rgba(99, 102, 241, 0.08), transparent 36%);
    filter: blur(2px);
}

.hero-shell {
    background:
        radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.72), transparent 38%),
        radial-gradient(circle at 6% 14%, rgba(167, 38, 84, 0.08), transparent 34%),
        linear-gradient(170deg, rgba(255, 255, 255, 0.82), rgba(255, 246, 250, 0.8));
}

.hero-grid-line {
    background: linear-gradient(90deg, transparent, rgba(167, 38, 84, 0.22), transparent);
}

.parallax-orb {
    height: 15rem;
    width: 15rem;
    border-radius: 9999px;
    background: radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.8), rgba(249, 192, 214, 0.45));
    filter: blur(3px);
    opacity: 0.45;
    will-change: transform;
}

.parallax-orb-secondary {
    height: 18rem;
    width: 18rem;
    background: radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.78), rgba(236, 72, 153, 0.36));
    opacity: 0.32;
}

.parallax-orb-tertiary {
    height: 12rem;
    width: 12rem;
    background: radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.78), rgba(99, 102, 241, 0.28));
    opacity: 0.28;
}

input,
select,
textarea {
    border-radius: 1rem;
    border: 1px solid #ead5dd;
    background: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #334155;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    outline: none;
    transition: all 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #a72654;
    box-shadow: 0 0 0 4px #f7d5e2;
}

button {
    cursor: pointer;
}

.page-section {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .page-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .page-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: #a72654;
    text-transform: uppercase;
}

.surface-card {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 251, 0.88));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(10px);
}

.soft-panel {
    border-radius: 28px;
    border: 1px solid #f2dbe4;
    background: #fff8fb;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid transparent;
    background: #a72654;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.primary-button:hover {
    background: #8e2148;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(167, 38, 84, 0.28);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid #ead5dd;
    background: #fff;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.25s ease;
}

.secondary-button:hover {
    border-color: #a72654;
    color: #a72654;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    background: #f8e8ef;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #a72654;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-chip-delivered {
    background: #d1fae5;
    color: #047857;
}

.status-chip-in-transit {
    background: #e0f2fe;
    color: #0369a1;
}

.status-chip-processing {
    background: #fef3c7;
    color: #b45309;
}

.trend-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.trend-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.36) 48%, transparent 72%);
    transform: translateX(-120%);
    transition: transform 0.75s ease;
    pointer-events: none;
}

.trend-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(167, 38, 84, 0.12), 0 16px 34px rgba(15, 23, 42, 0.08);
}

.trend-card:hover::before {
    transform: translateX(120%);
}

[data-parallax-speed] {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .trend-card,
    .trend-card::before,
    .primary-button,
    .secondary-button,
    [data-parallax-speed] {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

@media (max-width: 1023px) {
    [data-parallax-speed] {
        transform: none !important;
    }
}
