/* ============================================
   CSS Variables — ZumFlo Color System v4
   ============================================ */
:root {
    /* Brand */
    --brand-100: #F0FAF8;
    --brand-500: #4FD4BE;
    --brand-600: #0A8379;
    --brand-700: #08756C;
    --brand-900: #153D36;

    /* Neutral (teal-tinted, hue 173°) */
    --n-50:  #FBFDFC;
    --n-100: #F5F8F7;
    --n-150: #EFF3F2;
    --n-200: #E4EAE8;
    --n-250: #D5DDDA;
    --n-300: #CDD6D3;
    --n-400: #A3B0AC;
    --n-500: #8A9895;
    --n-600: #6B7B77;
    --n-700: #4A5955;
    --n-800: #2E3B38;
    --n-900: #1A2623;
    --n-950: #0F1714;

    /* Layout */
    --max-width: 880px;
    --max-width-wide: 1200px;
    --section-padding: 112px 48px;
    --section-padding-mobile: 64px 20px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--n-50);
    color: var(--n-700);
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   Typography
   ============================================ */
h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    color: var(--n-900);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

h2 {
    font-size: clamp(26px, 4.5vw, 40px);
    font-weight: 700;
    color: var(--n-900);
    line-height: 1.2;
    letter-spacing: -0.015em;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 253, 252, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--n-150);
    padding: 0 48px;
}

.nav-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img {
    width: 40px;
    height: 40px;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--n-900);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.nav-brand-tagline {
    font-size: 11px;
    color: var(--n-500);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--n-600);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 14px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--n-900);
    background: var(--brand-100);
}

.nav-links .nav-sep {
    color: var(--n-400);
    font-size: 18px;
    user-select: none;
    line-height: 1;
}

.nav-links .lang {
    font-size: 14px;
    color: var(--n-500);
    margin-left: 12px;
    padding-left: 18px;
    border-left: 1px solid var(--n-250);
}

.nav-links .lang a {
    font-size: 14px;
    padding: 8px 10px;
}

.nav-cta {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-600) !important;
}

.nav-cta:hover {
    background: var(--brand-100) !important;
}

@media (max-width: 640px) {
    .nav-links-desktop { display: none; }
}

/* ============================================
   Section Utilities
   ============================================ */
.section {
    padding: var(--section-padding);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-wide {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--n-500);
    margin-bottom: 20px;
}

.bg-light  { background: var(--n-50); }
.bg-alt    { background: var(--n-100); }
.bg-dark   { background: #000; color: #fff; }
.bg-cta    { background: var(--brand-100); }
.bg-footer { background: var(--n-950); }

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

@media (max-width: 640px) {
    .section { padding: var(--section-padding-mobile); }
}

/* ============================================
   Section 1: Hero
   ============================================ */
.hero {
    padding: 100px 48px 112px;
    text-align: center;
}

.hero-bars {
    width: 160px;
    height: auto;
    margin: 0 auto 36px;
    position: relative;
}

.hero-bars::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(79,212,190,0.12) 0%, rgba(79,212,190,0) 70%);
    pointer-events: none;
}

.hero-bars svg {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.hero h1 {
    max-width: 720px;
    margin: 0 auto 28px;
}

.hero-sub {
    font-size: clamp(17px, 2.8vw, 22px);
    color: var(--n-600);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--brand-600);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--brand-700);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(10, 131, 121, 0.18);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--brand-600);
    border: 1.5px solid var(--brand-600);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-secondary:hover {
    background: rgba(10, 131, 121, 0.06);
}

/* App Store Badge */
.app-store-badge {
    display: block;
    width: fit-content;
    margin: 0 auto;
    line-height: 0;
    transition: opacity 0.2s ease;
}
.app-store-badge:hover {
    opacity: 0.85;
}
.app-store-badge img {
    height: 54px;
    width: auto;
}
.midpage-cta .app-store-badge img {
    height: 48px;
}

.microcopy {
    font-size: 14px;
    color: var(--n-500);
    margin-top: 14px;
}

.hero-scroll {
    margin-top: 48px;
    font-size: 13px;
    color: var(--n-400);
}

@media (max-width: 640px) {
    .hero { padding: 72px 20px 56px; }
    .hero-bars { width: 120px; margin-bottom: 28px; }
}

/* ============================================
   Section 2: Problem
   ============================================ */
.problem-intro {
    font-size: clamp(18px, 2.8vw, 22px);
    font-weight: 600;
    color: var(--n-800);
    margin-bottom: 32px;
    line-height: 1.5;
}

.problem-card {
    padding: 22px 28px;
    background: var(--n-50);
    border-radius: 12px;
    border-left: 3px solid var(--n-300);
    margin-bottom: 16px;
    font-size: 17px;
    color: var(--n-800);
    line-height: 1.65;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.problem-card:hover {
    transform: scale(1.015) translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border-left-color: var(--n-400);
}

/* Touch devices: brief highlight on tap */
.problem-card:active {
    transform: scale(0.995);
    transition-duration: 0.1s;
}

/* Transition card gets a stronger accent shift */
.transition-card {
    padding: 28px 32px;
    background: var(--n-50);
    border-radius: 12px;
    border-left: 4px solid var(--brand-600);
    margin-top: 40px;
    font-size: 22px;
    font-weight: 500;
    color: var(--n-700);
    font-style: italic;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-card:hover {
    transform: scale(1.01) translateY(-1px);
    box-shadow: 0 8px 28px rgba(10, 131, 121, 0.08);
}

.problem-block {
    margin-bottom: 40px;
}

.problem-block-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--n-400);
    margin-bottom: 16px;
}

/* ============================================
   Scroll Reveal Animation
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Staggered cards */
.problem-card.reveal { transition-delay: calc(var(--i, 0) * 0.08s); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .compound-step { opacity: 1; transform: none; }
    .problem-card,
    .transition-card,
    .step-card,
    .pos-card,
    .integration-card {
        transition: none;
    }
    .problem-card:hover,
    .transition-card:hover,
    .step-card:hover,
    .pos-card:hover,
    .integration-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ============================================
   Screenshot Showcase (swipeable)
   ============================================ */
.screenshot-showcase {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
}

.screenshot-showcase::-webkit-scrollbar {
    display: none;
}

.screenshot-slide {
    flex: 0 0 min(85%, 340px);
    scroll-snap-align: center;
}

.screenshot-slide .screenshot-placeholder {
    height: 280px;
    margin-top: 0;
}

.screenshot-slide-label {
    font-size: 12px;
    color: var(--n-500);
    text-align: center;
    margin-top: 10px;
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.showcase-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: var(--n-300);
    transition: background 0.3s, width 0.3s;
}

.showcase-dot.active {
    background: var(--brand-600);
    width: 18px;
}

/* On desktop: show all three side by side */
@media (min-width: 768px) {
    .screenshot-showcase {
        overflow-x: visible;
        scroll-snap-type: none;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .screenshot-slide {
        flex: 1;
    }
    .showcase-dots {
        display: none;
    }
}

/* ============================================
   Compound Timeline Animation
   ============================================ */
.compound-step {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.compound-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Section 3: Animation (static placeholder)
   ============================================ */
.animation-zone {
    padding: 80px 48px;
}

.animation-pre {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    max-width: 580px;
    margin: 0 auto 56px;
    text-align: center;
    line-height: 1.7;
}

.animation-placeholder {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.anim-input-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.anim-input-item {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.anim-input-dot {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(79, 212, 190, 0.15);
    margin-bottom: 5px;
    will-change: background-color;
}

.anim-input-label {
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
}

.anim-arrow {
    font-size: 20px;
    color: rgba(255,255,255,0.45);
    opacity: 0.3;
    will-change: opacity;
}

.anim-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
    height: 160px;
}

.anim-bar {
    width: 40px;
    border-radius: 8px;
    will-change: transform;
}

.anim-bar-label {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

.anim-bar-accent { background: var(--brand-500); }
.anim-bar-muted  { background: rgba(79, 212, 190, 0.33); }
.anim-bar-accent + .anim-bar-label,
.anim-bar-col.accent .anim-bar-label { color: var(--brand-500); }
.anim-bar-col .anim-bar-label { color: rgba(255,255,255,0.25); }
.anim-bar-col.accent .anim-bar-label { color: var(--brand-500); }

.anim-bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.anim-output-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.anim-output-item {
    padding: 10px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--brand-900);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-500);
    will-change: opacity, background-color, border-color;
}

.animation-post {
    max-width: 480px;
    margin: 56px auto 0;
    text-align: center;
}

.animation-post p {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

.animation-post strong {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   Section 4: Outcomes
   ============================================ */
.outcome {
    margin-bottom: 64px;
}

.outcome:last-child {
    margin-bottom: 0;
}

.outcome h2 {
    margin-bottom: 20px;
}

.outcome p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.outcome-payoff {
    font-size: 17px;
    font-weight: 500;
    color: var(--n-800);
    font-style: italic;
    margin-top: 20px;
}

.screenshot-placeholder {
    width: 100%;
    height: 260px;
    background: var(--n-150);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--n-400);
    font-weight: 600;
}

.midpage-cta {
    text-align: center;
    padding: 48px 32px;
}

.midpage-cta a {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-600);
    text-decoration: none;
}

.midpage-cta a:hover {
    text-decoration: underline;
}

/* ============================================
   Section 5: How it works
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.step-card {
    background: var(--brand-600);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 131, 121, 0.25);
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.step-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.how-text {
    font-size: 17px;
    color: var(--n-600);
    line-height: 1.7;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 28px;
}

.compound-list {
    text-align: center;
    max-width: 540px;
    margin: 40px auto 0;
}

.compound-list p {
    font-size: 16px;
    color: var(--n-600);
    margin-bottom: 6px;
    line-height: 1.7;
}

.compound-list .compound-close {
    margin-top: 20px;
    font-weight: 600;
    color: var(--n-800);
}

@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* ============================================
   Section 6: Host
   ============================================ */
.host-intro {
    font-size: 17px;
    color: var(--n-600);
    margin-bottom: 36px;
    line-height: 1.7;
}

.host-point {
    margin-bottom: 28px;
}

.host-point-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--n-900);
    margin-bottom: 6px;
}

.host-point p {
    font-size: 17px;
    color: var(--n-700);
    line-height: 1.7;
}

.host-payoff {
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--brand-100);
    border-radius: 14px;
}

.host-payoff em {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-600);
    font-style: italic;
    display: block;
    margin-bottom: 12px;
    line-height: 1.4;
}

.host-payoff .host-micro {
    font-size: 15px;
    color: var(--n-600);
    font-style: italic;
}

/* ============================================
   Section 7: Trust
   ============================================ */
.privacy-block {
    text-align: center;
    margin-bottom: 56px;
}

.privacy-block h2 {
    margin-bottom: 16px;
}

.privacy-block p {
    font-size: 17px;
    color: var(--n-600);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.positioning h2 {
    text-align: center;
    margin-bottom: 12px;
}

.positioning-sub {
    text-align: center;
    font-size: 17px;
    color: var(--n-600);
    margin-bottom: 36px;
}

.pos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 44px;
}

.pos-card {
    padding: 22px;
    background: var(--n-50);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pos-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.pos-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--n-800);
    margin-bottom: 6px;
}

.pos-card p {
    font-size: 14px;
    color: var(--n-500);
    line-height: 1.6;
}

.languages {
    text-align: center;
    margin-top: 48px;
}

.languages-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--n-600);
    margin-bottom: 10px;
}

.languages-list {
    font-size: 14px;
    color: var(--n-500);
    line-height: 1.8;
}

@media (max-width: 480px) {
    .pos-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Section 8: Integrations
   ============================================ */
.integration-block {
    margin-bottom: 36px;
}

.integration-question {
    font-size: 17px;
    font-weight: 500;
    color: var(--n-800);
    margin-bottom: 10px;
}

.integration-answer {
    font-size: 17px;
    color: var(--n-600);
    line-height: 1.7;
}

.integration-cards {
    display: flex;
    gap: 14px;
    margin: 36px 0 28px;
}

.integration-card {
    flex: 1;
    padding: 24px 18px;
    background: var(--n-100);
    border-radius: 14px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.integration-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--n-900);
}

.integration-card-status {
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

.integration-card-status.live { color: var(--brand-600); }
.integration-card-status.soon { color: var(--n-500); }

.integration-footnote {
    font-size: 15px;
    color: var(--n-500);
    text-align: center;
    font-style: italic;
}

/* ============================================
   Section 9: CTA
   ============================================ */
.cta-section {
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 17px;
    color: var(--n-600);
    margin-bottom: 36px;
}

.cta-paths {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.cta-pricing {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 24px;
}

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

.cta-price-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--n-900);
}

.cta-price-label {
    font-size: 13px;
    color: var(--n-500);
}

.cta-price-yearly {
    font-size: 12px;
    color: var(--n-500);
    margin-top: 8px;
}

.cta-discount {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-600);
    background: rgba(10, 131, 121, 0.08);
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 4px;
}

.cta-price-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--n-800);
    margin-bottom: 4px;
}

.cta-price-name .pro-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--brand-600);
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.cta-price-divider {
    width: 1px;
    height: 80px;
    background: var(--n-300);
    align-self: center;
}

.cta-roi {
    font-size: 14px;
    color: var(--n-500);
    font-style: italic;
    margin-top: 20px;
}

.cta-host-micro {
    font-size: 14px;
    color: var(--n-500);
    font-style: italic;
    margin-top: 10px;
}

/* ============================================
   Sticky CTA (mobile)
   ============================================ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(251, 253, 252, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--n-200);
    padding: 12px 20px;
    text-align: center;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    line-height: 0;
}

.sticky-cta .app-store-badge img {
    height: 44px;
}

@media (min-width: 641px) {
    .sticky-cta { display: none !important; }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 40px 48px;
    text-align: center;
}

.footer-company {
    font-size: 13px;
    color: var(--n-500);
    margin-bottom: 10px;
}

.footer-links {
    margin-bottom: 18px;
}

.footer-links a {
    font-size: 13px;
    color: var(--n-400);
    text-decoration: none;
    margin: 0 12px;
}

.footer-links a:hover {
    color: var(--n-200);
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--n-600);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.6;
}
