/* =============================================
   THE SERVICE — Global Design System
   Engineering better outcomes.
   ============================================= */

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

:root {
    /* Monochrome Palette */
    --clr-bg: #050505;
    --clr-bg-elevated: #0a0a0a;
    --clr-bg-card: #0f0f0f;
    --clr-bg-subtle: #141414;
    --clr-border: #1a1a1a;
    --clr-border-hover: #2a2a2a;
    --clr-text-primary: #f5f5f5;
    --clr-text-secondary: #a0a0a0;
    --clr-text-muted: #666666;
    --clr-text-accent: #ffffff;

    /* Accent — a refined off-white / cold silver */
    --clr-accent: #e0e0e0;
    --clr-accent-dim: #888888;

    /* Functional */
    --clr-success: #4ade80;
    --clr-warning: #fbbf24;

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

    /* Typography */
    --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-base: 0.35s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

    /* Max width */
    --max-w: 1200px;
    --max-w-narrow: 800px;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg);
    color: var(--clr-text-secondary);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--clr-text-primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    max-width: 65ch;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--clr-text-primary);
}

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

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

.text-left {
    text-align: left;
}

/* === Layout === */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container--narrow {
    max-width: var(--max-w-narrow);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-5xl) 0;
}

.section--alt {
    background-color: var(--clr-bg-elevated);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

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

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

.justify-between {
    justify-content: space-between;
}

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

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}

.gap-2xl {
    gap: var(--space-2xl);
}

.gap-3xl {
    gap: var(--space-3xl);
}

.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .md-hide {
        display: none;
    }
}

@media (min-width: 769px) {
    .md-show {
        display: none;
    }
}

/* === Navigation === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition-base), border-color var(--transition-base);
}

.nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav__logo {
    height: 44px;
    width: auto;
    display: block;
    background: #ffffff;
    border-radius: var(--radius-sm);
    padding: 6px 12px;
}

.footer__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer__logo {
    height: 36px;
    width: auto;
    display: block;
    background: #ffffff;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav__link {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    padding: var(--space-xs) 0;
}

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

.nav__link:hover,
.nav__link--active {
    color: var(--clr-text-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__cta {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--clr-bg);
    background: var(--clr-text-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.nav__cta:hover {
    background: var(--clr-accent);
    transform: translateY(-1px);
}

/* Mobile Nav */
.nav__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    color: var(--clr-text-primary);
}

.nav__hamburger svg {
    width: 24px;
    height: 24px;
}

.nav__mobile {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    padding: var(--space-xl);
    z-index: 99;
}

.nav__mobile.active {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.nav__mobile .nav__link {
    font-size: 1rem;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--clr-border);
}

.nav__mobile .nav__cta {
    text-align: center;
    padding: var(--space-md);
    margin-top: var(--space-md);
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: block;
    }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--clr-text-primary);
    color: var(--clr-bg);
}

.btn--primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.btn--outline {
    background: transparent;
    color: var(--clr-text-primary);
    border: 1px solid var(--clr-border-hover);
}

.btn--outline:hover {
    border-color: var(--clr-text-primary);
    transform: translateY(-2px);
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
}

.btn--ghost {
    background: transparent;
    color: var(--clr-text-secondary);
    padding: 0.5rem 1rem;
}

.btn--ghost:hover {
    color: var(--clr-text-primary);
}

/* === Cards === */
.card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--clr-border-hover);
    transform: translateY(-4px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card:hover::before {
    opacity: 1;
}

.card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--clr-bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    border: 1px solid var(--clr-border);
}

.card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--clr-text-primary);
}

.card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.card__text {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.card__number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--clr-border-hover);
    line-height: 1;
    margin-bottom: var(--space-lg);
    font-variant-numeric: tabular-nums;
}

/* === Hero Section === */
.hero {
    padding-top: 160px;
    padding-bottom: var(--space-5xl);
    position: relative;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-success);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero__headline {
    margin-bottom: var(--space-xl);
    max-width: 900px;
}

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--clr-text-muted);
    max-width: 600px;
    margin-bottom: var(--space-3xl);
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero subtle grid bg */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero>* {
    position: relative;
    z-index: 1;
}

/* === Stats Bar === */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    margin-top: var(--space-5xl);
}

.stat__value {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--clr-text-primary);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat__label {
    font-size: 0.8125rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === Section Headers === */
.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: var(--space-md);
}

.section-header__title {
    max-width: 700px;
    margin-bottom: var(--space-lg);
}

.section-header__desc {
    max-width: 550px;
    color: var(--clr-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

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

.section-header--center .section-header__title,
.section-header--center .section-header__desc {
    margin-left: auto;
    margin-right: auto;
}

/* === Blockquote / Pull Quote === */
.pullquote {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: var(--clr-text-primary);
    line-height: 1.5;
    border-left: 2px solid var(--clr-border-hover);
    padding-left: var(--space-xl);
    max-width: 700px;
}

/* === Process Steps === */
.process {
    counter-reset: step-counter;
}

.process__step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--clr-border);
    counter-increment: step-counter;
}

.process__step-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--clr-border-hover);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.process__step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.process__step-desc {
    color: var(--clr-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 500px;
}

@media (max-width: 768px) {
    .process__step {
        grid-template-columns: 50px 1fr;
    }

    .process__step-num {
        font-size: 2rem;
    }
}

/* === Insight Cards === */
.insight-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    cursor: pointer;
}

.insight-card:hover {
    border-color: var(--clr-border-hover);
    transform: translateY(-4px);
}

.insight-card__tag {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: var(--space-lg);
}

.insight-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.insight-card__excerpt {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.insight-card__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--clr-text-primary);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.insight-card__link::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.insight-card:hover .insight-card__link::after {
    transform: translateX(4px);
}

/* === CTA Section === */
.cta-section {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl) var(--space-3xl);
    text-align: center;
}

.cta-section__title {
    margin-bottom: var(--space-lg);
}

.cta-section__desc {
    color: var(--clr-text-muted);
    font-size: 1.0625rem;
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

/* === Footer === */
.footer {
    border-top: 1px solid var(--clr-border);
    padding: var(--space-3xl) 0;
}

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

.footer__brand {
    font-weight: 700;
    color: var(--clr-text-primary);
    font-size: 1.125rem;
}

.footer__links {
    display: flex;
    gap: var(--space-xl);
}

.footer__link {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

.footer__link:hover {
    color: var(--clr-text-primary);
}

.footer__copy {
    font-size: 0.8125rem;
    color: var(--clr-text-muted);
}

@media (max-width: 768px) {
    .footer__inner {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
}

/* === Animations === */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.05s;
}

.stagger-2 {
    transition-delay: 0.1s;
}

.stagger-3 {
    transition-delay: 0.15s;
}

.stagger-4 {
    transition-delay: 0.2s;
}

.stagger-5 {
    transition-delay: 0.25s;
}

.stagger-6 {
    transition-delay: 0.3s;
}

/* Horizontal line accent */
.line-accent {
    width: 48px;
    height: 1px;
    background: var(--clr-border-hover);
    margin-bottom: var(--space-xl);
}

/* === Form Styles === */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--clr-bg-elevated);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    color: var(--clr-text-primary);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--clr-border-hover);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--clr-text-muted);
}

/* === Contact Info === */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-info__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--clr-bg-subtle);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__icon svg {
    width: 18px;
    height: 18px;
    color: var(--clr-text-secondary);
}

.contact-info__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 2px;
}

.contact-info__value {
    color: var(--clr-text-primary);
    font-size: 0.9375rem;
}

.contact-info__value a:hover {
    color: var(--clr-accent);
}

/* === Divider === */
.divider {
    width: 100%;
    height: 1px;
    background: var(--clr-border);
    margin: var(--space-3xl) 0;
}

/* === Tag === */
.tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    background: var(--clr-bg-subtle);
    border: 1px solid var(--clr-border);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

/* === Toast / Notification === */
.toast {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-xl);
    color: var(--clr-text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-base);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast--success {
    border-color: rgba(74, 222, 128, 0.3);
}

/* === Value Props row === */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    padding: var(--space-3xl) 0;
}

.value-prop {
    text-align: center;
    padding: var(--space-xl);
}

.value-prop__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--clr-bg-subtle);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.value-prop__icon svg {
    width: 24px;
    height: 24px;
    color: var(--clr-text-primary);
}

.value-prop__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.value-prop__text {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .value-props {
        grid-template-columns: 1fr;
    }
}

/* === Misc / Utilities === */
.relative {
    position: relative;
}

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

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

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

.mb-2xl {
    margin-bottom: var(--space-2xl);
}

.mb-3xl {
    margin-bottom: var(--space-3xl);
}

.mt-xl {
    margin-top: var(--space-xl);
}

.mt-2xl {
    margin-top: var(--space-2xl);
}

.mt-3xl {
    margin-top: var(--space-3xl);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Smooth page transition */
@keyframes page-enter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

main {
    animation: page-enter 0.5s var(--ease-out) forwards;
}