/* 24racks Cloud — landing (shared): hero, eyebrows, pills, technical panel, feature/service cards, dark-band, network */

/* ── Container + landing wrapper + section spacing ─────────── */
.main-container {
    width: min(100% - 32px, 1240px);
    margin: 0 auto;
}

.landing-page {
    overflow-x: hidden;
}

.landing-section {
    padding: 84px 0;
}

/* ── Hero (default + centered Tailark-style) ───────────────── */
.hero {
    display: grid;
    align-items: center;
    min-height: calc(100vh - var(--header-height));
    padding: 76px 0 42px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    gap: 56px;
    align-items: center;
}

.hero-layout > * {
    min-width: 0;
}

.hero-copy {
    max-width: 790px;
}

/* ─────────────────────────────────────────────────────────────
   Hero centrado (Tailark-style) — usado en main.blade.php
   ───────────────────────────────────────────────────────────── */

.hero-centered {
    position: relative;
    /* Pull hero up under the transparent header so the aurora bleeds through.
       Padding compensates so visible content stays put. */
    margin-top: calc(-1 * var(--header-height));
    padding: calc(112px + var(--header-height)) 0 96px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-aurora {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 1400px;
    height: 1100px;
    transform: translateX(-50%);
    background:
        radial-gradient(ellipse 55% 50% at 50% 50%, rgba(59, 130, 246, .35) 0%, rgba(59, 130, 246, .12) 35%, transparent 70%),
        radial-gradient(ellipse 70% 40% at 50% 60%, rgba(147, 197, 253, .18) 0%, transparent 70%);
    filter: blur(60px);
    opacity: .85;
}

:root[data-theme="dark"] .hero-bg-aurora {
    background:
        radial-gradient(ellipse 55% 50% at 50% 50%, rgba(59, 130, 246, .55) 0%, rgba(59, 130, 246, .18) 35%, transparent 70%),
        radial-gradient(ellipse 70% 40% at 50% 60%, rgba(147, 197, 253, .22) 0%, transparent 70%);
    opacity: 1;
}

.hero-bg-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--bg-root) 100%);
}

.hero-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero-announce {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 5px 6px 5px 6px;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-pill);
    background: var(--bg-raised);
    color: var(--text-2);
    font-size: 13px;
    font-weight: 640;
    text-decoration: none;
    transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.hero-announce:hover {
    color: var(--text-1);
    border-color: var(--blue-border);
    background: var(--bg-elevated);
}

.hero-announce-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    background: var(--brand);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1;
}

.hero-announce-text {
    line-height: 1;
    padding: 2px 0;
}

.hero-announce-divider {
    width: 1px;
    height: 16px;
    background: var(--border-dim);
}

.hero-announce-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 6px;
    color: var(--text-2);
    transition: transform var(--transition-base), color var(--transition-base);
}

.hero-announce-arrow svg {
    width: 14px;
    height: 14px;
}

.hero-announce:hover .hero-announce-arrow {
    color: var(--brand);
    transform: translateX(3px);
}

/* ── Hero kicker / panel-label pills + section eyebrow ─────── */
/* Pill-style badges — used in hero kickers and panel labels.
   .section-eyebrow has its own minimal bar+mono treatment below. */
.hero-kicker,
.panel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--brand);
    background: var(--brand-soft);
    border: 1px solid var(--blue-border);
    border-radius: var(--radius-pill);
    padding: 7px 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

:root[data-theme="dark"] .hero-kicker,
:root[data-theme="dark"] .panel-label {
    color: var(--blue-text);
    background: var(--blue-dim);
}

/* Unified section-eyebrow — short brand bar + monospace label, no pill.
   The bar is auto-injected via ::before so existing HTML stays untouched. */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px;
    color: var(--brand);
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    flex: 0 0 auto;
}

:root[data-theme="dark"] .section-eyebrow {
    color: #93c5fd;
}

/* On intentional dark bands the eyebrow needs lighter brand-blue regardless
   of the global theme (the band itself is always dark). */
.dark-band .section-eyebrow {
    color: #93c5fd;
}

/* ── Hero title + description + buttons + service-chips ────── */
.hero-title {
    max-width: 900px;
    margin: 0;
    color: var(--text-1);
    font-size: clamp(48px, 8vw, 104px);
    font-weight: 860;
    letter-spacing: 0;
    line-height: .92;
}

.hero-title .blue {
    color: var(--brand);
}

.hero-title-center {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(46px, 7.6vw, 96px);
    letter-spacing: -.02em;
    line-height: .98;
}

.hero-description {
    max-width: 680px;
    margin: 26px 0 0;
    color: var(--text-2);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.55;
}

.hero-description-center {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-buttons-center {
    justify-content: center;
    margin-top: 12px;
    gap: 6px;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    max-width: 720px;
    margin: 26px auto 0;
    border: 1px solid var(--border-dim);
    border-radius: 22px;
    background: var(--bg-raised);
    overflow: hidden;
}

.hero-stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 88px;
    padding: 18px 16px 16px;
    background: transparent;
    text-align: center;
    overflow: hidden;
}

.hero-stat-item + .hero-stat-item::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 1px;
    background: var(--border-dim);
}

.hero-stat-item strong {
    margin: 0;
    color: var(--text-1);
    font-size: clamp(30px, 3.4vw, 38px);
    font-weight: 860;
    letter-spacing: -.035em;
    line-height: .9;
}

.hero-stat-item span {
    margin: 0;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

:root[data-theme="dark"] .hero-stats-row {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .045);
}

.btn-hero-primary {
    padding: 14px 26px;
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
    box-shadow: none;
    font-weight: 740;
}

.btn-hero-primary:hover {
    color: var(--paper);
    background: var(--ink-2);
    border-color: var(--ink-2);
}

:root[data-theme="dark"] .btn-hero-primary {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--paper);
}

:root[data-theme="dark"] .btn-hero-primary:hover {
    color: var(--ink);
    background: #fff;
    border-color: #fff;
}

.btn-hero-ghost {
    color: var(--text-2);
    background: transparent;
    border-color: transparent;
    padding: 14px 18px;
    font-weight: 720;
}

.btn-hero-ghost:hover {
    color: var(--text-1);
    background: transparent;
}

.btn-hero-ghost svg {
    transition: transform var(--transition-base);
}

.btn-hero-ghost:hover svg {
    transform: translateX(3px);
}

.service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-pill);
    color: var(--text-2);
    background: var(--surface-muted);
    font-size: 13px;
    font-weight: 680;
}

.service-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

/* ── Theme-aware technical panel ───────────────────────────── */
/* Theme-aware technical panel — paper in light theme, ink in dark theme.
   Uses local CSS vars so the inner elements adapt automatically. */
.technical-panel {
    --tp-bg: var(--bg-raised);
    --tp-fg: var(--text-1);
    --tp-fg-soft: var(--text-2);
    --tp-fg-mute: var(--text-3);
    --tp-border: var(--border-dim);
    --tp-divider: var(--border-dim);
    --tp-nav-active-bg: var(--brand-soft);

    color: var(--tp-fg);
    background: var(--tp-bg);
    border: 1px solid var(--tp-border);
    border-radius: 22px;
    box-shadow: none;
    overflow: hidden;
}

:root[data-theme="dark"] .technical-panel {
    --tp-bg: #0D1117;
    --tp-fg: #F7F3EA;
    --tp-fg-soft: rgba(247, 243, 234, .78);
    --tp-fg-mute: rgba(247, 243, 234, .58);
    --tp-border: rgba(255, 255, 255, .10);
    --tp-divider: rgba(255, 255, 255, .09);
    --tp-nav-active-bg: rgba(59, 130, 246, .22);
}

.technical-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--tp-divider);
}

.technical-panel-title {
    margin: 0;
    color: var(--tp-fg);
    font-size: 15px;
    font-weight: 800;
}

.technical-panel-subtitle {
    margin: 4px 0 0;
    color: var(--tp-fg-mute);
    font-family: var(--font-mono);
    font-size: 11px;
}

.panel-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4E7656;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

:root[data-theme="dark"] .panel-status {
    color: #BFE4C5;
}

.panel-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4E7656;
}

.technical-panel-body {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 0;
    min-height: 340px;
}

.panel-sidebar {
    padding: 18px 14px;
    border-right: 1px solid var(--tp-divider);
}

.panel-nav-item {
    display: block;
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--tp-fg-mute);
    font-size: 12px;
    font-weight: 700;
}

.panel-nav-item.active {
    color: var(--brand);
    background: var(--tp-nav-active-bg);
}

:root[data-theme="dark"] .panel-nav-item.active {
    color: #F7F3EA;
}

.panel-content {
    padding: 18px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.metric-card {
    min-height: 94px;
    padding: 14px;
    border: 1px solid var(--tp-border, var(--border-dim));
    border-radius: 14px;
    background: var(--tp-bg, var(--bg-raised));
}

:root[data-theme="dark"] .metric-card {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .055);
}

.metric-label {
    margin: 0;
    color: var(--tp-fg-mute, var(--text-3));
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.metric-value {
    margin: 10px 0 0;
    color: var(--tp-fg, var(--text-1));
    font-size: 24px;
    font-weight: 850;
    line-height: 1;
}

.metric-note {
    margin: 7px 0 0;
    color: var(--tp-fg-mute, var(--text-3));
    font-size: 12px;
}

.traffic-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 96px;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid var(--tp-border, var(--border-dim));
    border-radius: 14px;
    background:
        linear-gradient(rgba(13, 17, 23, .06) 1px, transparent 1px),
        var(--bg-raised);
    background-size: 100% 24px;
}

:root[data-theme="dark"] .traffic-chart {
    border-color: rgba(255, 255, 255, .10);
    background:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        rgba(255, 255, 255, .035);
    background-size: 100% 24px;
}

.traffic-bar {
    flex: 1;
    min-width: 10px;
    border-radius: 999px 999px 4px 4px;
    background: #3b82f6;
}

/* ── Section header + title + description (landing) ────────── */
.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.section-copy {
    max-width: 720px;
}

.section-title {
    margin: 0;
    max-width: 100%;
    color: var(--text-1);
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 840;
    line-height: 1.08;
    letter-spacing: -.018em;
    /* break-word is a safety net for narrow columns when a single word
       (e.g. "Infraestructura") would otherwise overflow the track. */
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.section-description {
    max-width: 620px;
    margin: 16px 0 0;
    color: var(--text-2);
    font-size: 16px;
}

/* ── Feature-card / service-card (shared activation pattern) ─ */
.features-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature-card,
.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    color: var(--text-2);
    background: var(--bg-raised);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-xl);
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.feature-card:hover,
.service-card:hover {
    border-color: var(--blue-border);
    background: var(--bg-elevated);
    transform: translateY(-3px);
}

:root[data-theme="dark"] .feature-card:hover,
:root[data-theme="dark"] .service-card:hover {
    background: rgba(255, 255, 255, .045);
    border-color: rgba(59, 130, 246, .42);
}

/* ── Shared card activation (feature-card + service-card) ─────
   Icon glows + lifts, title gets a short brand underline.
   Replaces the legacy left-edge line accent. */

.feature-card,
.service-card {
    position: relative;
}

.feature-card .service-icon-wrapper,
.feature-card .feature-icon,
.service-card .service-icon-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    transition:
        background .35s ease,
        border-color .35s ease,
        color .35s ease,
        box-shadow .45s cubic-bezier(.22, .61, .36, 1),
        transform .35s cubic-bezier(.22, .61, .36, 1);
}

/* Icon "activation" on hover — soft brand halo + subtle scale */
.feature-card:hover .service-icon-wrapper,
.feature-card:hover .feature-icon,
.service-card:hover .service-icon-wrapper {
    color: var(--brand);
    background: var(--brand-soft);
    border-color: var(--brand);
    box-shadow: 0 0 0 5px var(--blue-dim);
    transform: scale(1.04);
}

:root[data-theme="dark"] .feature-card:hover .service-icon-wrapper,
:root[data-theme="dark"] .feature-card:hover .feature-icon,
:root[data-theme="dark"] .service-card:hover .service-icon-wrapper {
    background: var(--blue-dim);
    border-color: rgba(147, 197, 253, .55);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, .14);
}

/* Featured service-card has a dark background — use a vivid solid brand fill
   so the icon pops instead of disappearing into the surface. */
.service-card.featured:hover .service-icon-wrapper {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, .28);
}

/* Title underline accent — short brand line grows from left on hover */
.feature-card .feature-title,
.service-card .service-title {
    position: relative;
    padding-bottom: 12px;
}

.feature-card .feature-title::after,
.service-card .service-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .42s cubic-bezier(.22, .61, .36, 1), width .42s ease;
}

.feature-card:hover .feature-title::after,
.service-card:hover .service-title::after {
    transform: scaleX(1);
    width: 44px;
}

/* On featured (dark) cards use a lighter blue so the underline stays visible */
.service-card.featured .service-title::after {
    background: #93c5fd;
}

.feature-title,
.service-title {
    margin: 20px 0 0;
    min-height: 2.4em;
    color: var(--text-1);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 820;
    letter-spacing: -.018em;
    line-height: 1.2;
}

.feature-desc,
.service-description {
    margin: 10px 0 0;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.55;
}

.service-link {
    color: inherit;
}

.service-card {
    justify-content: space-between;
    min-height: 260px;
}

.service-card.featured {
    color: #F7F3EA;
    background: #0D1117;
    border-color: rgba(255, 255, 255, .14);
}

.service-card.featured .service-title,
.service-card.featured .service-description {
    color: #F7F3EA;
}

.service-card.featured .service-description {
    opacity: .72;
}

.service-icon-wrapper {
    width: 44px;
    height: 44px;
}

.service-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--brand);
    font-weight: 760;
}

.service-card.featured .service-action {
    color: #93c5fd;
}

/* ── Dark band + network grid (used on main + vps landings) ── */
.dark-band {
    margin: 32px 0;
    padding: 72px 0;
    color: #F7F3EA;
    background: #0D1117;
}

.dark-band .section-title,
.dark-band h3 {
    color: #F7F3EA;
}

.dark-band .section-description,
.dark-band p {
    color: rgba(247, 243, 234, .70);
}

.network-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 34px;
    align-items: center;
}

/* CSS grid items default to min-width: auto so they grow to fit their
   content — that lets long titles bust out of the column. Force them to
   respect the column track. */
.network-grid > * {
    min-width: 0;
}

.network-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.network-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(247, 243, 234, .78);
    font-size: 15px;
}

.network-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4E7656;
}

.network-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .055);
}

.network-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.network-row:last-child {
    border-bottom: 0;
}

.network-row span {
    color: rgba(247, 243, 234, .58);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.network-row strong {
    color: #F7F3EA;
    font-size: 16px;
}

/* ── Landing footer wrapper ────────────────────────────────── */
.landing-footer {
    margin-top: 0;
}

/* ── Landing responsive ────────────────────────────────────── */
@media (max-width: 980px) {
    .hero {
        padding-top: 54px;
    }

    .hero-layout,
    .network-grid {
        grid-template-columns: 1fr;
    }

    .technical-panel-body {
        grid-template-columns: 1fr;
    }

    .panel-sidebar {
        display: none;
    }

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

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .main-container {
        width: min(100% - 24px, 1240px);
    }

    .landing-section {
        padding: 58px 0;
    }

    .hero-centered {
        padding: 80px 0 64px;
    }

    .hero-title {
        font-size: clamp(44px, 16vw, 68px);
    }

    .hero-title-center {
        font-size: clamp(40px, 12vw, 60px);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-buttons-center {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-announce {
        font-size: 12px;
        max-width: 100%;
    }

    .hero-announce-text {
        white-space: normal;
        text-align: left;
    }

    .hero-stats-row {
        grid-template-columns: 1fr;
        max-width: 100%;
        border-radius: 18px;
    }

    .hero-stat-item {
        min-height: 0;
        padding: 16px 18px;
    }

    .hero-stat-item + .hero-stat-item::before {
        top: 0;
        right: 16px;
        bottom: auto;
        left: 16px;
        width: auto;
        height: 1px;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .technical-panel-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ── Feature-announcement callout (used on /vps and /vps-ryzen for the
   backups update). Sits inside the features section under the grid. ── */
.backup-callout {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 26px 30px;
    margin-top: 28px;
    border: 1px solid var(--blue-border);
    border-radius: var(--radius-xl);
    background: var(--bg-raised);
}
:root[data-theme="dark"] .backup-callout {
    background: rgba(255, 255, 255, .045);
    border-color: rgba(59, 130, 246, .34);
}

.backup-callout-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--brand);
    background: var(--brand-soft);
    border: 1px solid var(--blue-border);
}
:root[data-theme="dark"] .backup-callout-icon {
    color: #93C5FD;
    background: var(--blue-dim);
    border-color: rgba(147, 197, 253, .30);
}

.backup-callout-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.backup-callout-eyebrow {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.backup-callout-title {
    margin: 0;
    color: var(--text-1);
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 820;
    letter-spacing: -.014em;
}

.backup-callout-desc {
    margin: 0;
    color: var(--text-2);
    font-size: 14.5px;
    line-height: 1.55;
}

.backup-callout-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.backup-callout-meta span { display: inline-flex; align-items: center; gap: 6px; }
.backup-callout-meta span::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green);
}

@media (max-width: 640px) {
    .backup-callout {
        grid-template-columns: 1fr;
        padding: 22px;
        gap: 18px;
    }
    .backup-callout-icon { width: 48px; height: 48px; }
}
