/* ================================================================
   AapkaLove — Design System / Hallmark Tokens
   Design tokens, typography scale, spacing, color, and utilities
   ================================================================ */

/* ────────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (tokens)
   All values are defined once here and referenced everywhere.
   ──────────────────────────────────────────────────────────────── */
:root {

    /* ── Colour palette ── */
    /* Colors - Structural */
    --al-bg-main: #ffffff;
    --al-bg-soft: #fffafa;
    --al-bg-gradient: linear-gradient(-45deg, #ffffff, #fffafa, #ffe4e6, #ffffff);
    --al-glass-bg:         #ffffff;
    --al-glass-bg-hover:   #f8fafc;
    --al-glass-card:       #ffffff;
    --al-glass-border:     #e2e8f0;
    --al-glass-border-soft:#e2e8f0;
    --al-glass-blur:       none;
    --al-glass-shadow:     0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --al-glow-red:         0 0 15px rgba(224, 33, 122, 0.3);

    --al-text-primary:   #171717;
    --al-text-secondary: #5F5F5F;
    --al-text-muted:     #8A8A8A;
    --al-text-faint:     #d1d5db;
    --al-text-brand: #E91E78;
    --al-text-earned:    #008F75;
    --al-text-purchased: #1976D2;
    --al-text-spent:     #4A4458;
    --al-text-future:    #A8A4B3;
    --al-text-brand-soft:rgba(224, 33, 122, 0.12);

    --al-accent:        #E0217A;
    --al-accent-hover:  #B81761;
    --al-accent-soft:   rgba(224, 33, 122, 0.08);
    --al-accent-border: rgba(224, 33, 122, 0.2);

    --al-border:        #e5e7eb;
    --al-border-soft:   rgba(0, 0, 0, 0.05);
    --al-border-strong: rgba(0, 0, 0, 0.12);

    /* ✨ Typography – families ✨ */
    --al-font-display:   'Sora', sans-serif;
    --al-font-sans:      'Inter', sans-serif;
    --al-font-editorial: 'Playfair Display', serif;
    --al-font-mono:      'DM Mono', monospace;
    --al-font-secondary: 'Space Grotesk', sans-serif;

    /* ── Typography — scale ── */
    --al-text-xs:    0.75rem;     /*  12px */
    --al-text-sm:    0.75rem;     /*  12px */
    --al-text-base:  0.8125rem;   /*  13px */
    --al-text-md:    0.875rem;    /*  14px */
    --al-text-lg:    0.875rem;    /*  14px */
    --al-text-xl:    0.9375rem;   /*  15px */
    --al-text-2xl:   1rem;        /*  16px */
    --al-text-3xl:   1.1875rem;   /*  19px */
    --al-text-4xl:   1.625rem;    /*  26px */

    /* ── Typography — weights ── */
    --al-weight-regular: 400;
    --al-weight-medium:  500;
    --al-weight-semi:    600;
    --al-weight-bold:    700;
    --al-weight-black:   800;

    /* ── Typography — line heights ── */
    --al-leading-tight:  1.15;
    --al-leading-snug:   1.3;
    --al-leading-normal: 1.5;
    --al-leading-loose:  1.7;

    /* ── Typography — letter spacing ── */
    --al-tracking-tight:  -0.025em;
    --al-tracking-normal:  0em;
    --al-tracking-wide:    0.05em;
    --al-tracking-wider:   0.08em;
    --al-tracking-caps:    0.10em;

    /* ── Spacing scale ── */
    --al-space-1:    4px;
    --al-space-2:    6px;
    --al-space-3:   10px;
    --al-space-4:   12px;
    --al-space-5:   16px;    /* inner padding */
    --al-space-6:   16px;    /* card gap */
    --al-space-8:   20px;
    --al-space-10:  24px;
    --al-space-12:  32px;
    --al-space-16:  36px;
    --al-space-20:  40px;    /* section gap */
    --al-space-24:  48px;
    --al-space-32:  64px;

    /* ── Named semantic spacing ── */
    --al-section-gap: var(--al-space-16);   /* 36px */
    --al-card-gap:    var(--al-space-6);    /* 16px */
    --al-inner-pad:   var(--al-space-5);    /* 16px */

    /* ── Border radius ── */
    --al-radius-sm:   4px;
    --al-radius-md:   8px;
    --al-radius-lg:  10px;
    --al-radius-xl:  12px;
    --al-radius-2xl: 14px;
    --al-radius-pill: 999px;

    /* ── Shadows ── */
    --al-shadow-xs:
        0 1px 2px rgba(31, 42, 68, 0.04);
    --al-shadow-sm:
        0 1px 3px rgba(31, 42, 68, 0.04),
        0 4px 12px rgba(31, 42, 68, 0.04);
    --al-shadow-md:
        0 1px 3px rgba(31, 42, 68, 0.04),
        0 10px 30px rgba(31, 42, 68, 0.05);
    --al-shadow-lg:
        0 4px 16px rgba(31, 42, 68, 0.06),
        0 16px 48px rgba(31, 42, 68, 0.08);
    --al-shadow-accent:
        0 4px 14px rgba(224, 33, 122, 0.25);

    /* ✨ Animation & Easing ✨ */
    --al-ease:       cubic-bezier(0.2, 0.8, 0.2, 1);
    --al-ease-in:    cubic-bezier(0.4, 0, 1, 1);
    --al-ease-out:   cubic-bezier(0, 0, 0.2, 1);
    --al-dur-fast:   180ms;
    --al-dur-base:   250ms;
    --al-dur-slow:   350ms;
    --al-dur-slower: 500ms;

    /* ── Z-index layers ── */
    --al-z-base:     1;
    --al-z-dropdown: 100;
    --al-z-sticky:   200;
    --al-z-navbar:   500;
    --al-z-modal:   1000;
    --al-z-toast:   9998;
    --al-z-confetti: 9999;
}

/* ────────────────────────────────────────────────────────────────
   2. GLOBAL RESET & BASE
   ──────────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    font-family: var(--al-font-sans);
    font-size: var(--al-text-base);
    font-weight: var(--al-weight-regular);
    line-height: var(--al-leading-normal);
    color: var(--al-text-primary);
    background-color: var(--al-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ────────────────────────────────────────────────────────────────
   3. TYPOGRAPHY UTILITIES
   ──────────────────────────────────────────────────────────────── */

/* Heading scale */
.al-h1 {
    font-family: var(--al-font-display);
    font-size: var(--al-text-4xl);        /* 48px */
    font-weight: var(--al-weight-black);
    line-height: var(--al-leading-tight);
    letter-spacing: var(--al-tracking-tight);
    color: var(--al-text-primary);
    margin: 0;
}

.al-h2 {
    font-family: var(--al-font-display);
    font-size: var(--al-text-3xl);        /* 32px */
    font-weight: var(--al-weight-black);
    line-height: var(--al-leading-tight);
    letter-spacing: var(--al-tracking-tight);
    color: var(--al-text-primary);
    margin: 0;
}

.al-h3 {
    font-family: var(--al-font-display);
    font-size: var(--al-text-2xl);        /* 24px */
    font-weight: var(--al-weight-bold);
    line-height: var(--al-leading-snug);
    letter-spacing: var(--al-tracking-tight);
    color: var(--al-text-primary);
    margin: 0;
}

.al-h4 {
    font-family: var(--al-font-sans);
    font-size: var(--al-text-xl);         /* 20px */
    font-weight: var(--al-weight-bold);
    line-height: var(--al-leading-snug);
    color: var(--al-text-primary);
    margin: 0;
}

/* Body text */
.al-body-lg {
    font-size: var(--al-text-lg);         /* 18px */
    line-height: var(--al-leading-loose);
    color: var(--al-text-secondary);
}

.al-body {
    font-size: var(--al-text-base);       /* 16px */
    line-height: var(--al-leading-normal);
    color: var(--al-text-secondary);
}

.al-body-sm {
    font-size: var(--al-text-sm);         /* 14px */
    line-height: var(--al-leading-normal);
    color: var(--al-text-muted);
}

/* Meta / label */
.al-label {
    font-size: var(--al-text-xs);         /* 12px */
    font-weight: var(--al-weight-semi);
    letter-spacing: var(--al-tracking-caps);
    text-transform: uppercase;
    color: var(--al-text-muted);
}

/* Eyebrow pill */
.al-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--al-text-xs);
    font-family: var(--al-font-secondary);
    font-weight: var(--al-weight-semi);
    letter-spacing: var(--al-tracking-caps);
    text-transform: uppercase;
    color: var(--al-accent);
    background: var(--al-accent-soft);
    border: 1px solid var(--al-accent-border);
    border-radius: var(--al-radius-pill);
    padding: 4px 12px;
}

/* Fluid responsive headings */
.al-h1-fluid {
    font-family: var(--al-font-display);
    font-size: clamp(2rem, 5vw, var(--al-text-4xl));
    font-weight: var(--al-weight-black);
    line-height: var(--al-leading-tight);
    letter-spacing: var(--al-tracking-tight);
    color: var(--al-text-primary);
    margin: 0;
}

.al-h2-fluid {
    font-family: var(--al-font-display);
    font-size: clamp(1.5rem, 3.5vw, var(--al-text-3xl));
    font-weight: var(--al-weight-black);
    line-height: var(--al-leading-tight);
    letter-spacing: var(--al-tracking-tight);
    color: var(--al-text-primary);
    margin: 0;
}

/* ────────────────────────────────────────────────────────────────
   4. LAYOUT / SPACING UTILITIES
   ──────────────────────────────────────────────────────────────── */

/* Containers */
.al-container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--al-space-6);
}

.al-container-sm {
    width: 100%;
    max-width: 780px;
    margin-inline: auto;
    padding-inline: var(--al-space-6);
}

.al-container-xs {
    width: 100%;
    max-width: 540px;
    margin-inline: auto;
    padding-inline: var(--al-space-6);
}

/* Section wrappers */
.al-section {
    padding-block: var(--al-section-gap);   /* 80px */
    background: transparent;
}

.al-section-soft {
    padding-block: var(--al-section-gap);
    background: transparent;
}

/* Section header */
.al-section-header {
    text-align: center;
    margin-bottom: var(--al-space-12);   /* 48px */
}

/* Card grids */
.al-grid   { display: grid; gap: var(--al-card-gap); }
.al-grid-3 { grid-template-columns: repeat(3, 1fr); }
.al-grid-2 { grid-template-columns: repeat(2, 1fr); }
.al-grid-1 { grid-template-columns: 1fr; }

@media (max-width: 992px) {
    .al-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .al-grid-3,
    .al-grid-2 { grid-template-columns: 1fr; }
    .al-container,
    .al-container-sm,
    .al-container-xs { padding-inline: var(--al-space-4); }
}

/* Flex helpers */
.al-flex         { display: flex; }
.al-flex-center  { display: flex; align-items: center; justify-content: center; }
.al-flex-between { display: flex; align-items: center; justify-content: space-between; }
.al-flex-col     { display: flex; flex-direction: column; }
.al-gap-1  { gap: var(--al-space-1); }
.al-gap-2  { gap: var(--al-space-2); }
.al-gap-3  { gap: var(--al-space-3); }
.al-gap-4  { gap: var(--al-space-4); }
.al-gap-6  { gap: var(--al-space-6); }
.al-gap-8  { gap: var(--al-space-8); }

/* Named spacing helpers */
.al-p-inner  { padding: var(--al-inner-pad); }
.al-px-6     { padding-inline: var(--al-space-6); }
.al-py-20    { padding-block: var(--al-space-20); }
.al-mt-6     { margin-top: var(--al-space-6); }
.al-mb-6     { margin-bottom: var(--al-space-6); }
.al-mt-12    { margin-top: var(--al-space-12); }
.al-mb-12    { margin-bottom: var(--al-space-12); }

/* ────────────────────────────────────────────────────────────────
   5. CARD COMPONENT
   ──────────────────────────────────────────────────────────────── */
.al-card {
    background: var(--al-bg);
    border-radius: var(--al-radius-2xl);
    border: 1px solid var(--al-border-soft);
    box-shadow: var(--al-shadow-sm);
    padding: var(--al-inner-pad);
    transition:
        transform var(--al-dur-base) var(--al-ease),
        box-shadow var(--al-dur-base) var(--al-ease),
        border-color var(--al-dur-base) ease;
}

.al-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--al-shadow-md);
    border-color: var(--al-border-strong);
}

/* ────────────────────────────────────────────────────────────────
   6. BUTTON COMPONENTS
   ──────────────────────────────────────────────────────────────── */
.al-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--al-space-2);
    font-family: var(--al-font-sans);
    font-weight: var(--al-weight-semi);
    font-size: var(--al-text-sm);
    line-height: 1;
    border-radius: var(--al-radius-md);
    border: none;
    cursor: pointer;
    transition:
        background var(--al-dur-fast) var(--al-ease-out),
        transform var(--al-dur-fast) var(--al-ease-out),
        box-shadow var(--al-dur-fast) var(--al-ease-out),
        border-color var(--al-dur-fast) var(--al-ease-out);
    white-space: nowrap;
}

/* Primary — solid red */
.al-btn-primary {
    background: var(--al-accent);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(224, 33, 122, 0.25);
}
.al-btn-primary:hover {
    background: var(--al-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(224, 33, 122, 0.35);
}
.al-btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(224, 33, 122, 0.2);
}

/* Secondary — outline */
.al-btn-outline {
    background: transparent;
    color: var(--al-text-primary) !important;
    border: 1px solid var(--al-border-strong);
}
.al-btn-outline:hover {
    background: var(--al-bg-subtle);
    border-color: var(--al-text-primary);
}
.al-btn-outline:active {
    transform: scale(0.98);
}

/* Ghost — faint hover */
.al-btn-ghost {
    background: transparent;
    color: var(--al-text-secondary) !important;
}
.al-btn-ghost:hover {
    background: var(--al-bg-subtle);
    color: var(--al-text-primary) !important;
}
.al-btn-ghost:active {
    transform: scale(0.98);
}

/* Sizes */
.al-btn-sm { font-size: var(--al-text-xs);   padding: 8px 16px; }
.al-btn-lg { font-size: var(--al-text-base);  padding: 14px 28px; }

/* ────────────────────────────────────────────────────────────────
   7. BADGE / PILL
   ──────────────────────────────────────────────────────────────── */
.al-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--al-text-xs);
    font-family: var(--al-font-secondary);
    font-weight: var(--al-weight-semi);
    border-radius: var(--al-radius-pill);
    padding: 3px 10px;
    line-height: 1.4;
}

.al-badge-accent {
    background: var(--al-accent-soft);
    color: var(--al-accent);
    border: 1px solid var(--al-accent-border);
}

.al-badge-dark {
    background: rgba(0,0,0,0.07);
    color: var(--al-text-secondary);
    border: 1px solid var(--al-border-soft);
}

.al-badge-new {
    background: var(--al-accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255,59,48,0.3);
}

/* ────────────────────────────────────────────────────────────────
   8. PROGRESS BAR
   ──────────────────────────────────────────────────────────────── */
.al-progress {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: var(--al-radius-pill);
    overflow: hidden;
}

.al-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--al-accent) 0%, var(--al-accent-hover) 100%);
    border-radius: var(--al-radius-pill);
    transition: width 1s var(--al-ease);
}

/* ────────────────────────────────────────────────────────────────
   9. DIVIDERS
   ──────────────────────────────────────────────────────────────── */
.al-divider {
    border: none;
    border-top: 1px solid var(--al-border);
    margin-block: var(--al-space-8);
}

.al-divider-accent {
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--al-accent), var(--al-accent-hover));
    border-radius: var(--al-radius-pill);
    border: none;
    margin-inline: auto;
}

/* ────────────────────────────────────────────────────────────────
   10. LIVE INDICATOR
   ──────────────────────────────────────────────────────────────── */
.al-live {
    display: inline-flex;
    align-items: center;
    gap: var(--al-space-2);
    font-size: var(--al-text-xs);
    font-family: var(--al-font-secondary);
    font-weight: var(--al-weight-semi);
    letter-spacing: var(--al-tracking-caps);
    text-transform: uppercase;
    color: var(--al-accent);
}

.al-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--al-accent);
    flex-shrink: 0;
    animation: ds-pulse-dot 1.6s ease-in-out infinite;
}

@keyframes ds-pulse-dot {
    0%, 100% { transform: scale(1);   box-shadow: 0 0 0 0   rgba(255,59,48,0.45); }
    50%       { transform: scale(1.3); box-shadow: 0 0 0 6px rgba(255,59,48,0); }
}

/* ────────────────────────────────────────────────────────────────
   11. COLOUR UTILITIES
   ──────────────────────────────────────────────────────────────── */
.al-text-primary   { color: var(--al-text-primary)   !important; }
.al-text-secondary { color: var(--al-text-secondary) !important; }
.al-text-muted     { color: var(--al-text-muted)     !important; }
.al-text-faint     { color: var(--al-text-faint)     !important; }
.al-text-accent    { color: var(--al-accent)          !important; }

.al-bg-white  { background: var(--al-bg)        !important; }
.al-bg-soft   { background: var(--al-bg-soft)   !important; }
.al-bg-subtle { background: var(--al-bg-subtle) !important; }
.al-bg-accent { background: var(--al-accent-soft) !important; }

/* ────────────────────────────────────────────────────────────────
   12. ACCESSIBILITY / PREFERS REDUCED MOTION
   ✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨ */
:focus-visible {
    outline: 2px solid var(--al-accent);
    outline-offset: 3px;
    border-radius: var(--al-radius-sm);
}

::selection {
    background: rgba(224, 33, 122, 0.15);
    color: var(--al-text-primary);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transform: none !important;
    }
}

/* ────────────────────────────────────────────────────────────────
   13. RESPONSIVE OVERRIDES
   ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .al-section,
    .al-section-soft {
        padding-block: var(--al-space-12);   /* 48px on tablet/mobile */
    }
}

@media (max-width: 480px) {
    .al-section,
    .al-section-soft {
        padding-block: var(--al-space-10);   /* 40px on small phones */
    }
}



/* ----------------------------------------------------------------
   GLOBAL CONTAINER SYSTEM
   ---------------------------------------------------------------- */
.al-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 1024px) {
    .al-container {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .al-container {
        padding: 0 16px;
    }
}

/* ----------------------------------------------------------------
   GLOBAL SECTION SPACING (RHYTHM)
   ---------------------------------------------------------------- */
.al-section-lg {
    padding: 120px 0;
}
.al-section-md {
    padding: 96px 0;
}
.al-section-sm {
    padding: 64px 0;
}

@media (max-width: 1024px) {
    .al-section-lg { padding: 96px 0; }
    .al-section-md { padding: 80px 0; }
    .al-section-sm { padding: 56px 0; }
}

@media (max-width: 768px) {
    .al-section-lg { padding: 80px 0; }
    .al-section-md { padding: 64px 0; }
    .al-section-sm { padding: 48px 0; }
}

/* ----------------------------------------------------------------
   GLOBAL TYPOGRAPHY CLAMPS
   ---------------------------------------------------------------- */
.al-h1-fluid {
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Scales from 40px to ~72px */
    line-height: var(--al-leading-tight);
}
.al-h2-fluid {
    font-size: clamp(2rem, 4vw, 3rem); /* Scales from 32px to 48px */
    line-height: var(--al-leading-tight);
}
.al-h3-fluid {
    font-size: clamp(1.5rem, 3vw, 2.25rem); /* Scales from 24px to 36px */
    line-height: var(--al-leading-snug);
}
.al-h4-fluid {
    font-size: clamp(1.25rem, 2vw, 1.5rem); /* Scales from 20px to 24px */
    line-height: var(--al-leading-snug);
}

/* ----------------------------------------------------------------
   GLOBAL BUTTON SYSTEM
   ---------------------------------------------------------------- */
.al-btn-primary, .al-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px; /* Standardized height */
    padding: 0 24px;
    font-family: var(--al-font-sans, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.al-btn-primary {
    background: var(--al-accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(224, 33, 122, 0.15);
}

.al-btn-primary:hover {
    background: #c01a65;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 33, 122, 0.25);
    color: #fff;
}

.al-btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    color: #111;
    border: 1px solid rgba(0,0,0,0.08);
}

.al-btn-secondary:hover {
    background: #fff;
    border-color: rgba(0,0,0,0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .al-btn-primary, .al-btn-secondary {
        height: 52px; /* Taller on mobile for better touch targets */
        width: 100%; /* Default to full width on mobile for major CTAs */
    }
}

/* ----------------------------------------------------------------
   GLOBAL CARD SYSTEM
   ---------------------------------------------------------------- */
.al-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.04), 
                inset 0 1px 0 rgba(255,255,255,0.8);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.al-card-solid {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .al-card-glass, .al-card-solid {
        padding: 24px;
        border-radius: 20px;
    }
}

/* ----------------------------------------------------------------
   EXPRESSIVE TYPOGRAPHY UTILITIES
   ---------------------------------------------------------------- */

.text-highlight {
    font-family: var(--al-font-sans);
    font-weight: 600;
    color: var(--al-text-brand);
}

.text-editorial {
    font-family: var(--al-font-editorial);
    font-weight: 400;
    font-style: italic;
    color: var(--al-text-primary);
}

.text-mono {
    font-family: var(--al-font-mono);
    color: var(--al-text-primary);
}

.text-secondary {
    font-family: var(--al-font-secondary);
    font-weight: 500;
}

.text-accent {
    color: var(--al-text-brand);
}

.text-bold {
    font-family: var(--al-font-sans);
    font-weight: 600;
}

.text-underline {
    position: relative;
    display: inline-block;
}

.text-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    background: var(--al-accent-soft);
    border-radius: 2px;
    z-index: -1;
    transition: background 0.2s ease;
}

.text-soft-highlight {
    background: var(--al-text-brand-soft);
    padding: 2px 8px;
    border-radius: 8px;
    color: var(--al-text-primary);
}



