:root {
    --bg: #f5f7ff;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-dark: rgba(11, 18, 34, 0.9);
    --stroke: rgba(100, 116, 139, 0.16);
    --stroke-strong: rgba(37, 99, 235, 0.18);
    --text: #0f172a;
    --muted: #475569;
    --muted-soft: #64748b;
    --brand: #2563eb;
    --brand-deep: #1d4ed8;
    --teal: #0f8b8d;
    --coral: #ff7a59;
    --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 26px 80px rgba(13, 19, 38, 0.18);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shell: min(1180px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.16), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(255, 122, 89, 0.18), transparent 18%),
        linear-gradient(180deg, #f8fbff 0%, #f4f6fb 36%, #f9fbff 100%);
    overflow-x: clip;
    position: relative;
}

body.is-modal-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: -3;
}

.ambient {
    position: fixed;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.6;
    pointer-events: none;
    z-index: -2;
}
.ambient-a { width: 300px; height: 300px; background: rgba(37, 99, 235, 0.14); top: -40px; left: -70px; }
.ambient-b { width: 360px; height: 360px; background: rgba(255, 122, 89, 0.16); top: 220px; right: -120px; }
.ambient-c { width: 280px; height: 280px; background: rgba(15, 139, 141, 0.16); bottom: 80px; left: 12%; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: var(--shell); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(10px);
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}
.brand-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, #2563eb 0%, #0f8b8d 55%, #ff7a59 100%);
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.24);
}
.brand-icon-image {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(37, 99, 235, 0.12);
    overflow: hidden;
}
.brand-icon-image img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    display: block;
}
.brand-copy { display: grid; min-width: 0; }
.brand-copy strong {
    font-family: "Sora", sans-serif;
    font-size: 1.16rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
}
.brand-copy small {
    color: var(--muted-soft);
    font-size: 0.84rem;
    line-height: 1.2;
    font-weight: 600;
}

.site-nav {
    display: inline-flex;
    justify-content: center;
    gap: 22px;
    color: var(--muted);
    font-weight: 800;
}
.site-nav a {
    position: relative;
    padding: 0;
    border-radius: 0;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    transform: scaleX(0);
    transition: transform 0.22s ease;
    background: linear-gradient(90deg, var(--brand), var(--coral));
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.95rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
    background: linear-gradient(135deg, #2563eb 0%, #0f8b8d 100%);
    color: white;
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.22);
}
.button-secondary,
.button-ghost {
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    border-color: var(--stroke);
    box-shadow: var(--shadow-soft);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
}
.mobile-nav {
    display: none;
    width: var(--shell);
    margin: 0 auto 16px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-soft);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
    color: var(--muted);
}
.mobile-nav a:hover { background: rgba(37, 99, 235, 0.08); color: var(--brand-deep); }
.mobile-nav-action {
    width: 100%;
    margin-top: 8px;
    padding: 13px 14px;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--brand-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
}

.hero-section { padding: 42px 0 24px; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 34px;
    align-items: center;
}
.eyebrow,
.status-pill,
.preview-chip,
.role-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.58rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.eyebrow {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--stroke-strong);
    color: var(--brand-deep);
}

.hero-copy h1,
.section-heading h2,
.deploy-copy h2,
.contact-copy h2 {
    margin: 18px 0 14px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.04em;
}
.hero-copy h1 { font-size: clamp(2.35rem, 4.9vw, 4rem); max-width: 13ch; }
.hero-text,
.section-heading p,
.deploy-copy p,
.contact-copy p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 62ch;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-deep);
    font-weight: 800;
    padding: 0.9rem 0.2rem;
}
.hero-link i { color: var(--coral); }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}
.stat-card,
.signal-card,
.module-group,
.capability-card,
.workflow-card,
.role-panel-copy,
.role-panel-card,
.deploy-point,
.deploy-card,
.contact-card,
.contact-tile {
    background: var(--surface);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.signal-card::before,
.module-group::before,
.capability-card::before,
.workflow-card::before,
.role-panel-copy::before,
.role-panel-card::before,
.deploy-point::before,
.deploy-card::before,
.contact-card::before,
.contact-tile::before,
.module-card::before,
.webapp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 122, 89, 0.10), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(246, 249, 255, 0.78));
    z-index: -1;
}
.module-group::after,
.role-panel-copy::after,
.role-panel-card::after,
.deploy-card::after,
.contact-card::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.92), rgba(15, 139, 141, 0.72), rgba(255, 122, 89, 0.78));
    opacity: 0.95;
}
.stat-card {
    border-radius: 20px;
    padding: 18px 16px;
}
.stat-card strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 4px;
}
.stat-card span {
    color: var(--muted-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.78rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--stroke);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}
.highlight-pill i { color: var(--brand); }

.preview-window {
    background: linear-gradient(180deg, rgba(11, 18, 34, 0.94), rgba(18, 24, 46, 0.9));
    color: white;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}
.preview-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.preview-dots { display: inline-flex; gap: 8px; }
.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}
.preview-dots span:nth-child(1) { background: rgba(255, 122, 89, 0.9); }
.preview-dots span:nth-child(2) { background: rgba(245, 158, 11, 0.92); }
.preview-dots span:nth-child(3) { background: rgba(16, 185, 129, 0.92); }
.preview-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.preview-body {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 660px;
}
.preview-rail {
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.rail-badge,
.rail-item,
.module-group-icon,
.module-icon,
.capability-icon,
.contact-icon,
.deploy-point-icon,
.signal-icon,
.feed-avatar {
    display: grid;
    place-items: center;
}
.rail-badge {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    font-family: "Sora", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}
.rail-stack { display: grid; gap: 14px; margin-top: 26px; }
.rail-item {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
}
.rail-item.active {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    box-shadow: 0 16px 26px rgba(37, 99, 235, 0.22);
}
.preview-content { padding: 22px; display: grid; gap: 18px; }
.preview-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.32), rgba(15, 139, 141, 0.28)), rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.status-pill,
.preview-chip {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
}
.preview-hero-card h2 {
    margin: 14px 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.58rem;
    line-height: 1.12;
}
.preview-hero-card p,
.feed-card p,
.feed-card small {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.68;
}
.preview-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.preview-mini-stats div {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px;
    min-width: 0;
}
.preview-mini-stats strong {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.preview-mini-stats span { font-family: "Sora", sans-serif; font-size: 1.2rem; }
.preview-app-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.app-icon-card {
    min-height: 120px;
    padding: 18px 14px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.app-icon-card i { font-size: 1.45rem; }
.app-icon-card span { font-weight: 800; line-height: 1.2; }
.gradient-indigo { background: linear-gradient(180deg, #3b82f6, #1d4ed8); }
.gradient-cyan { background: linear-gradient(180deg, #22d3ee, #0891b2); }
.gradient-coral { background: linear-gradient(180deg, #ff7a59, #ea580c); }
.gradient-amber { background: linear-gradient(180deg, #fbbf24, #f59e0b); }
.gradient-emerald { background: linear-gradient(180deg, #34d399, #059669); }
.gradient-sky { background: linear-gradient(180deg, #38bdf8, #2563eb); }
.preview-feed { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.feed-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.feed-card header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.feed-avatar {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
}

.signal-strip { padding: 18px 0 12px; }
.signal-grid,
.capability-grid,
.workflow-timeline,
.contact-grid {
    display: grid;
    gap: 16px;
}
.signal-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.webapp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 22px;
    align-items: start;
}
.webapp-copy {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 247, 255, 0.84));
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-soft);
}
.webapp-copy h2 {
    margin: 18px 0 14px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.webapp-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}
.webapp-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.webapp-advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.webapp-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.webapp-card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(255, 122, 89, 0.18));
    color: var(--brand-deep);
}
.webapp-card h3 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
}
.webapp-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}
.signal-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.signal-icon,
.module-group-icon,
.capability-icon,
.contact-icon,
.deploy-point-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(255, 122, 89, 0.16));
    color: var(--brand-deep);
}
.signal-card strong,
.deploy-point strong {
    display: block;
    margin-bottom: 6px;
}
.signal-card p,
.deploy-point p,
.module-group-copy p,
.module-card p,
.capability-card p,
.workflow-card p,
.footer-shell p,
.footer-shell small {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.section { padding: 56px 0; }
.section-heading { max-width: 860px; margin-bottom: 28px; }
.section-heading h2 { font-size: clamp(2.05rem, 4vw, 3.4rem); max-width: 15ch; }

.role-tabs,
.module-filter-row,
.role-chip-row,
.hero-highlights,
.footer-links,
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.role-tabs { margin-bottom: 10px; }
.role-tab,
.filter-chip {
    padding: 0.98rem 1.18rem;
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.75);
    color: var(--muted);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.18s ease, background 0.18s ease;
}
.role-tab:hover,
.filter-chip:hover,
.contact-tile:hover,
.button:hover {
    transform: translateY(-1px);
}
.role-tab.is-active,
.filter-chip.is-active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(15, 139, 141, 0.92));
    color: white;
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.18);
}

.role-showcase,
.deploy-grid,
.footer-shell {
    display: grid;
    gap: 22px;
}
.role-showcase,
.deploy-grid { grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); }
.role-panel-copy,
.role-panel-card,
.module-group,
.capability-card,
.workflow-card,
.deploy-card,
.contact-card {
    padding: 30px;
    border-radius: var(--radius-xl);
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow:
        0 22px 56px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.role-showcase { margin-top: 14px; gap: 26px; }
.role-panel-copy h3 {
    margin: 18px 0 12px;
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.role-panel-copy p { margin: 0; color: var(--muted); line-height: 1.75; }
.role-kicker { background: rgba(37, 99, 235, 0.08); color: var(--brand-deep); }
.role-chip { padding: 0.55rem 0.82rem; border-radius: 999px; background: rgba(15, 139, 141, 0.08); color: var(--teal); font-size: 0.82rem; font-weight: 800; }
.role-panel-head {
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--stroke);
}
.role-panel-head strong { display: block; font-size: 1.1rem; margin-bottom: 5px; }
.role-panel-head span { color: var(--muted-soft); line-height: 1.6; }
.role-metric-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.role-metric {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.84));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    padding: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.role-metric strong { display: block; font-family: "Sora", sans-serif; margin-bottom: 6px; }
.role-metric span { color: var(--muted-soft); font-size: 0.88rem; }
.role-module-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.role-module-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.92rem 0.95rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 255, 0.88));
    border: 1px solid rgba(148, 163, 184, 0.18);
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}
.role-module-item i { color: var(--brand); }

.module-controls { display: grid; gap: 14px; margin-bottom: 24px; }
.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.15rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-soft);
}
.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    color: var(--text);
    font-size: 0.98rem;
}
.module-groups { display: grid; gap: 22px; }
.module-group { padding: 32px 34px; }
.module-group-head { margin-bottom: 12px; }
.module-group-copy { display: flex; gap: 18px; align-items: flex-start; }
.module-group-copy h3,
.capability-card h3,
.workflow-card h3 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}
.module-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.module-card {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 249, 255, 0.90));
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.76);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.module-card:hover,
.capability-card:hover,
.workflow-card:hover,
.contact-tile:hover,
.signal-card:hover,
.deploy-point:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.module-card-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 14px;
}
.module-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(15, 139, 141, 0.20), rgba(255, 122, 89, 0.10));
    color: var(--brand-deep);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}
.module-card h4 { margin: 0 0 6px; font-size: 1rem; font-weight: 800; }
.module-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.module-points li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.58;
}
.module-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--coral));
}

.capability-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.workflow-timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.capability-card,
.workflow-card {
    border-color: rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.86));
}
.workflow-step {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--brand);
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.deploy-copy { padding: 10px 0; }
.deploy-points { display: grid; gap: 14px; margin-top: 22px; }
.deploy-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.88));
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.76);
}
.deploy-card-header { display: grid; gap: 10px; margin-bottom: 18px; }
.deploy-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.deploy-checklist li {
    padding: 1rem 1rem 1rem 3rem;
    position: relative;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 18px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 700;
}
.deploy-checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 1.05rem;
    top: 1rem;
    color: var(--brand);
}

.contact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 22px; }
.contact-tile {
    display: grid;
    gap: 10px;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 255, 0.90));
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
}
.contact-tile small {
    color: var(--muted-soft);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.contact-tile strong {
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    white-space: pre-line;
}

.site-footer { padding: 28px 0 110px; }
.footer-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--stroke);
}
.footer-shell strong { display: block; margin-bottom: 6px; }
.footer-links {
    gap: 16px;
    color: var(--muted);
    font-weight: 700;
}
.footer-meta {
    display: grid;
    gap: 10px;
    justify-items: end;
}
.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--stroke);
    color: var(--brand-deep);
}

.app-home-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    overflow-y: auto;
    padding: 12px 0 calc(24px + env(safe-area-inset-bottom));
}
.app-home-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 14, 28, 0.72);
    backdrop-filter: blur(8px);
}
.app-home-dialog {
    position: relative;
    width: min(1160px, calc(100vw - 24px));
    max-height: calc(100dvh - 24px);
    margin: 0 auto;
    overflow: auto;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(248, 250, 255, 0.98), rgba(240, 245, 255, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-strong);
}
.app-home-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
    gap: 24px;
    padding: 32px;
}
.app-home-copy h2 {
    margin: 18px 0 14px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.app-home-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}
.app-home-folder-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.app-home-folder {
    padding: 0.86rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.82);
    color: var(--muted);
    font-weight: 800;
}
.app-home-folder.is-active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(15, 139, 141, 0.96));
    color: white;
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.18);
}
.app-home-phone {
    background: linear-gradient(180deg, rgba(8, 14, 26, 0.96), rgba(15, 22, 39, 0.94));
    color: white;
    border-radius: 38px;
    padding: 16px;
    min-height: 760px;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 14px;
    box-shadow: var(--shadow-strong);
}
.app-home-phone-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}
.app-home-phone-meta {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.app-home-notch {
    width: 116px;
    height: 28px;
    border-radius: 999px;
    justify-self: center;
    background: rgba(255, 255, 255, 0.1);
}
.app-home-phone-copy {
    padding: 6px 6px 2px;
    display: grid;
    gap: 4px;
}
.app-home-phone-copy strong {
    font-family: "Sora", sans-serif;
    font-size: 1.22rem;
}
.app-home-phone-copy span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}
.app-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-content: start;
    overflow: auto;
    padding: 8px 4px 4px;
}
.phone-app-icon {
    display: grid;
    gap: 10px;
    text-align: center;
    align-content: start;
    position: relative;
    cursor: pointer;
}
.phone-app-icon-badge {
    width: 78px;
    height: 78px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 24px;
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.phone-app-icon-badge i { font-size: 1.7rem; }
.phone-app-icon strong {
    font-size: 0.86rem;
    line-height: 1.35;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
}
.phone-app-tooltip {
    display: none;
    width: 100%;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    font-size: 0.76rem;
    line-height: 1.5;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.22);
    margin-top: 2px;
}
.phone-app-icon:hover .phone-app-tooltip,
.phone-app-icon:focus .phone-app-tooltip,
.phone-app-icon.is-active .phone-app-tooltip {
    display: block;
}
.app-home-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    display: grid;
    place-items: center;
}

.mobile-contact-dock {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    display: none;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(11, 18, 34, 0.84);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-strong);
}
.mobile-contact-dock a {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, #2563eb, #0f8b8d);
}

.empty-state {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 220px;
    padding: 28px;
    text-align: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px dashed rgba(148, 163, 184, 0.26);
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .hero-grid,
    .webapp-grid,
    .role-showcase,
    .deploy-grid,
    .app-home-shell,
    .footer-shell { grid-template-columns: 1fr; }
    .hero-copy h1 { max-width: none; }
    .signal-grid,
    .capability-grid,
    .workflow-timeline,
    .webapp-advantage-grid,
    .module-card-grid,
    .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .app-home-phone { min-height: 0; }
}

@media (max-width: 860px) {
    .site-nav,
    .hide-mobile { display: none; }
    .nav-toggle { display: inline-grid; place-items: center; }
    .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .preview-hero-card,
    .preview-feed,
    .preview-mini-stats,
    .role-metric-grid,
    .role-module-list,
    .signal-grid,
    .capability-grid,
    .workflow-timeline,
    .webapp-advantage-grid,
    .module-card-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .app-home-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    :root { --shell: min(100vw - 20px, 100%); }
    .header-shell { gap: 14px; padding: 14px 0; }
    .brand-mark { gap: 12px; }
    .brand-icon { width: 75px; height: 75px; border-radius: 22px; }
    .brand-copy strong { font-size: 1.4rem; line-height: 1.06; }
    .brand-copy small { font-size: 1.05rem; }
    .hero-section { padding-top: 28px; }
    .hero-copy h1 { font-size: 2.55rem; }
    .hero-actions { flex-direction: column; }
    .button { width: 100%; }
    .hero-stats { grid-template-columns: 1fr; }
    .preview-window { border-radius: 28px; }
    .preview-body { grid-template-columns: 1fr; min-height: 0; }
    .preview-rail { display: none; }
    .preview-content { padding: 18px; }
    .preview-app-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .app-home-modal { padding: 8px 0 calc(28px + env(safe-area-inset-bottom)); }
    .app-home-dialog { width: 100vw; max-width: 100vw; max-height: calc(100dvh - 12px); margin: 0 auto; border-radius: 24px; }
    .app-home-shell { padding: 14px 6px 18px; gap: 16px; }
    .app-home-phone { border-radius: 24px; padding: 12px 8px; }
    .app-home-phone-top { gap: 8px; }
    .app-home-phone-copy { padding: 6px 0 2px; }
    .app-home-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; padding: 8px 0 4px; }
    .phone-app-icon { gap: 8px; }
    .phone-app-icon-badge { width: min(100%, 70px); height: 68px; border-radius: 20px; }
    .phone-app-icon-badge i { font-size: 1.42rem; }
    .phone-app-icon strong { font-size: 0.72rem; }
    .phone-app-tooltip { font-size: 0.72rem; }
    .role-panel-copy,
    .role-panel-card,
    .module-group,
    .capability-card,
    .workflow-card,
    .deploy-card,
    .contact-card,
    .webapp-copy,
    .webapp-card { padding: 20px; border-radius: 24px; }
    .module-group-copy { flex-direction: column; }
    .mobile-contact-dock { display: inline-flex; }
    .site-footer { padding-bottom: 100px; }
}

/* Corporate refresh */
:root {
    --bg: #f2f5fa;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --surface-dark: rgba(16, 24, 39, 0.96);
    --stroke: rgba(148, 163, 184, 0.22);
    --stroke-strong: rgba(30, 64, 175, 0.18);
    --text: #0f172a;
    --muted: #526074;
    --muted-soft: #6b778c;
    --brand: #1f4fb8;
    --brand-deep: #163985;
    --teal: #155e75;
    --coral: #8a6b3f;
    --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 24px 56px rgba(15, 23, 42, 0.18);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
}

body {
    background:
        radial-gradient(circle at top left, rgba(31, 79, 184, 0.09), transparent 26%),
        radial-gradient(circle at top right, rgba(21, 94, 117, 0.07), transparent 18%),
        linear-gradient(180deg, #f4f7fb 0%, #f1f4f8 46%, #edf1f6 100%);
}

body::before {
    background-image: none;
}

.ambient {
    opacity: 0.22;
    filter: blur(120px);
}

.ambient-a { background: rgba(31, 79, 184, 0.12); }
.ambient-b { background: rgba(64, 93, 138, 0.09); }
.ambient-c { background: rgba(21, 94, 117, 0.09); }

.site-header {
    background: rgba(244, 247, 251, 0.86);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
    background: rgba(244, 247, 251, 0.96);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-shell {
    padding: 14px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.brand-icon {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: none;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.brand-copy strong {
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.brand-copy small {
    color: var(--muted);
    font-weight: 700;
}

.site-nav {
    gap: 18px;
    color: #425168;
    font-size: 0.95rem;
}

.site-nav a::after {
    bottom: -5px;
    height: 1px;
    background: var(--brand);
}

.button-primary {
    background: linear-gradient(135deg, #1f4fb8 0%, #163985 100%);
    box-shadow: 0 14px 28px rgba(22, 57, 133, 0.18);
}

.button-secondary,
.button-ghost,
.nav-toggle,
.mobile-nav,
.mobile-nav-action {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.eyebrow,
.status-pill,
.preview-chip,
.role-kicker {
    background: rgba(31, 79, 184, 0.06);
    border: 1px solid rgba(31, 79, 184, 0.14);
    color: var(--brand-deep);
}

.hero-section {
    padding: 46px 0 28px;
}

.hero-copy h1 {
    font-size: clamp(2.45rem, 4.6vw, 3.85rem);
    max-width: 14ch;
}

.hero-text,
.section-heading p,
.deploy-copy p,
.contact-copy p,
.webapp-copy p,
.module-card p,
.capability-card p,
.workflow-card p,
.signal-card p,
.deploy-point p,
.footer-shell p,
.footer-shell small {
    color: var(--muted);
}

.hero-link {
    color: var(--brand-deep);
}

.hero-link i {
    color: var(--teal);
}

.stat-card,
.signal-card,
.module-group,
.capability-card,
.workflow-card,
.role-panel-copy,
.role-panel-card,
.deploy-point,
.deploy-card,
.contact-card,
.contact-tile,
.webapp-copy,
.webapp-card,
.search-box,
.highlight-pill,
.role-tab,
.filter-chip {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow-soft);
    backdrop-filter: none;
}

.signal-card::before,
.module-group::before,
.capability-card::before,
.workflow-card::before,
.role-panel-copy::before,
.role-panel-card::before,
.deploy-point::before,
.deploy-card::before,
.contact-card::before,
.contact-tile::before,
.module-card::before,
.webapp-card::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 253, 0.94));
}

.module-group::after,
.role-panel-copy::after,
.role-panel-card::after,
.deploy-card::after,
.contact-card::after {
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--teal));
}

.highlight-pill {
    border-radius: 16px;
}

.preview-window {
    background: linear-gradient(180deg, rgba(16, 24, 39, 0.98), rgba(23, 37, 61, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-strong);
}

.preview-hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

.preview-mini-stats div,
.feed-card,
.rail-item {
    background: rgba(255, 255, 255, 0.06);
}

.rail-badge {
    background: linear-gradient(135deg, #1f4fb8, #163985);
}

.rail-item.active {
    background: linear-gradient(135deg, #1f4fb8, #2a6bb4);
    box-shadow: 0 12px 24px rgba(31, 79, 184, 0.2);
}

.gradient-indigo { background: linear-gradient(180deg, #1e3a8a, #1d4ed8); }
.gradient-cyan { background: linear-gradient(180deg, #155e75, #0f766e); }
.gradient-coral { background: linear-gradient(180deg, #475569, #334155); }
.gradient-amber { background: linear-gradient(180deg, #b08940, #8a6b1f); }
.gradient-emerald { background: linear-gradient(180deg, #116466, #0f766e); }
.gradient-sky { background: linear-gradient(180deg, #3b5b8a, #1f4fb8); }

.webapp-copy {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 253, 0.92));
}

.webapp-card,
.capability-card,
.workflow-card,
.module-card,
.role-metric,
.role-module-item,
.deploy-point,
.deploy-checklist li,
.contact-tile {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 253, 0.95));
}

.role-tab,
.filter-chip {
    border-radius: 14px;
    color: #445168;
}

.role-tab.is-active,
.filter-chip.is-active,
.app-home-folder.is-active {
    background: linear-gradient(135deg, #1f4fb8, #163985);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(22, 57, 133, 0.16);
}

.role-chip {
    background: rgba(31, 79, 184, 0.06);
    color: var(--brand-deep);
}

.role-panel-head,
.footer-shell {
    border-color: rgba(148, 163, 184, 0.16);
}

.module-card:hover,
.capability-card:hover,
.workflow-card:hover,
.contact-tile:hover,
.signal-card:hover,
.deploy-point:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 79, 184, 0.2);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.module-icon,
.capability-icon,
.contact-icon,
.deploy-point-icon,
.signal-icon,
.feed-avatar,
.webapp-card-icon {
    background: linear-gradient(135deg, rgba(31, 79, 184, 0.1), rgba(21, 94, 117, 0.12));
    color: var(--brand-deep);
    box-shadow: none;
}

.module-points li::before {
    background: var(--brand);
}

.deploy-checklist li::before {
    color: var(--brand);
}

.workflow-step {
    background: rgba(31, 79, 184, 0.06);
    color: var(--brand-deep);
}

.deploy-checklist li {
    background: rgba(31, 79, 184, 0.05);
}

.footer-links,
.footer-socials a {
    color: #425168;
}

.footer-socials a {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(148, 163, 184, 0.18);
}

.app-home-dialog {
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow-strong);
}

.app-home-folder {
    background: rgba(255, 255, 255, 0.94);
}

.app-home-phone {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(26, 38, 58, 0.96));
}

.package-grid-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.package-showcase-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.package-showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.94));
    z-index: -1;
}

.package-showcase-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 1.3rem;
    flex: 0 0 auto;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.package-showcase-card h3 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.package-showcase-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.package-tone-1 {
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(219, 234, 254, 0.58));
}

.package-tone-1 .package-showcase-icon {
    background: linear-gradient(135deg, #1f4fb8, #3b82f6);
}

.package-tone-2 {
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.98), rgba(204, 251, 241, 0.58));
}

.package-tone-2 .package-showcase-icon {
    background: linear-gradient(135deg, #155e75, #0f766e);
}

.package-tone-3 {
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.98), rgba(254, 215, 170, 0.52));
}

.package-tone-3 .package-showcase-icon {
    background: linear-gradient(135deg, #b45309, #d97706);
}

.package-tone-4 {
    background: linear-gradient(180deg, rgba(245, 243, 255, 0.98), rgba(221, 214, 254, 0.56));
}

.package-tone-4 .package-showcase-icon {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

@media (max-width: 1120px) {
    .package-grid-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .package-grid-showcase {
        grid-template-columns: 1fr;
    }
}
