:root {
    --bg-primary: #eef2ff;
    --bg-secondary: #e0e7ff;
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-hover: rgba(255, 255, 255, 0.9);
    --border-subtle: rgba(59, 130, 246, 0.2);
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --blue-400: #3b82f6;
    --blue-500: #2563eb;
    --blue-600: #1d4ed8;
    --cyan-400: #06b6d4;
    --purple-400: #8b5cf6;
    --pink-400: #ec4899;
    --green-400: #10b981;
    --glow-blue: 0 0 20px rgba(37, 99, 235, 0.25);
    --glow-blue-strong: 0 0 30px rgba(37, 99, 235, 0.35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.background-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    mix-blend-mode: multiply;
}

.glow-orb-1 {
    top: 0%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.35);
    opacity: 0.7;
    animation: pulse 10s ease-in-out infinite;
}

.glow-orb-2 {
    top: 12%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: rgba(14, 165, 233, 0.3);
    opacity: 0.65;
}

.glow-orb-3 {
    top: 42%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.28);
    opacity: 0.6;
}

.glow-orb-4 {
    top: 64%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.22);
    opacity: 0.6;
}

.glow-orb-5 {
    top: 78%;
    left: 5%;
    width: 650px;
    height: 650px;
    background: rgba(59, 130, 246, 0.26);
    opacity: 0.65;
    animation: pulse-slow 12s ease-in-out infinite;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-card);
    backdrop-filter: blur(12px);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    color: white;
    fill: currentColor;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.logo-text span {
    color: var(--blue-400);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue-400);
}

.btn-primary,
.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.6rem;
    background: var(--blue-600);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    box-shadow: var(--glow-blue);
    transition: all 0.2s;
}

.btn-primary:hover,
.btn-primary-lg:hover {
    background: var(--blue-500);
    box-shadow: var(--glow-blue-strong);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.8rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #1e3a8a;
    backdrop-filter: blur(10px);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.25);
}

.capabilities-page {
    position: relative;
    z-index: 1;
}

.capabilities-hero {
    padding: 8rem 0 3rem;
}

@media (min-width: 1024px) {
    .capabilities-hero {
        padding: 11rem 0 4rem;
    }
}

.hero-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 2rem;
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(20px);
}

@media (min-width: 1100px) {
    .hero-card {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
        align-items: center;
        padding: 2.25rem;
    }
}

.hero-badge,
.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.18);
    color: #2563eb;
    font-size: 0.84rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero-title,
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-title {
    margin: 1.1rem 0 1rem;
    max-width: 14ch;
}

.hero-subtitle,
.section-subtitle {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.04rem;
}

.hero-subtitle {
    max-width: 44rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .hero-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 54px;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.05);
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-point-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
    flex-shrink: 0;
}

.hero-preview {
    position: relative;
    min-height: 100%;
    padding: 1rem;
    border-radius: 1.7rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(79, 70, 229, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 20px 40px rgba(37, 99, 235, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-preview::before {
    content: "";
    position: absolute;
    inset: 12% -15% auto auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 65%);
    pointer-events: none;
}

.dashboard-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 520px;
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 1.8rem;
    background: rgba(250, 252, 255, 0.96);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

.dashboard-sidebar {
    padding: 1rem 0.85rem;
    background: linear-gradient(180deg, #eaf5ff 0%, #edf5ff 45%, #f3f8ff 100%);
    border-right: 1px solid rgba(37, 99, 235, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-brand {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #6ee7ff, #6366f1 65%, #7c3aed);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.25);
}

.dashboard-menu {
    display: grid;
    gap: 0.7rem;
}

.dashboard-menu-item {
    height: 42px;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.dashboard-menu-item.active {
    background: linear-gradient(135deg, #4ea5ff, #388cff);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.18);
}

.dashboard-menu-item.short {
    width: 78%;
}

.dashboard-content {
    padding: 1rem 1rem 1.1rem;
    display: grid;
    align-content: start;
    gap: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 250, 255, 0.9));
}

.dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.dashboard-breadcrumbs {
    width: 140px;
    height: 12px;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.3), rgba(99, 102, 241, 0.22));
}

.dashboard-user {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #6ee7ff, #6366f1 65%, #7c3aed);
    box-shadow: 0 8px 18px rgba(99, 102, 241, 0.2);
}

.dashboard-header {
    display: grid;
    gap: 0.6rem;
}

.dashboard-title-line {
    height: 14px;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.7), rgba(191, 219, 254, 0.28));
}

.dashboard-title-line.lg {
    width: 62%;
}

.dashboard-title-line.sm {
    width: 34%;
}

.dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.dashboard-widget {
    padding: 1rem;
    border-radius: 1.1rem;
    background: linear-gradient(180deg, rgba(238, 247, 255, 0.95), rgba(247, 250, 255, 0.94));
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.06);
    display: grid;
    gap: 0.35rem;
}

.widget-value {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.04em;
}

.widget-label {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.5;
}

.dashboard-calendar {
    padding: 1rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(238, 247, 255, 0.95), rgba(247, 250, 255, 0.94));
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.06);
    display: grid;
    gap: 1rem;
}

.calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.calendar-month {
    width: 120px;
    height: 18px;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.92);
}

.calendar-filters {
    display: flex;
    gap: 0.6rem;
}

.calendar-filters span {
    width: 72px;
    height: 36px;
    border-radius: 0.9rem;
    border: 1px solid rgba(37, 99, 235, 0.14);
    background: rgba(255, 255, 255, 0.82);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.calendar-cell {
    height: 64px;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.calendar-cell.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(129, 140, 248, 0.2));
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.capabilities-overview,
.capabilities-detail,
.capabilities-process,
.capabilities-cta {
    position: relative;
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.6rem;
}

.section-subtitle {
    max-width: 48rem;
    margin: 1rem auto 0;
}

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

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .capabilities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.capability-card {
    position: relative;
    min-height: 250px;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
    backdrop-filter: blur(18px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.18);
}

.capability-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #2563eb, #60a5fa, #a78bfa);
    opacity: 0.95;
}

.capability-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(147, 197, 253, 0.18));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.capability-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.capability-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.18rem;
    line-height: 1.3;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.capability-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1100px) {
    .detail-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
        align-items: start;
    }
}

.detail-text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    max-width: 48rem;
}

.detail-list {
    margin-top: 1.75rem;
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.05rem 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.06);
}

.detail-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.16));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.detail-item h3 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.detail-item p {
    font-size: 0.93rem;
    line-height: 1.65;
    color: #64748b;
}

.detail-panels {
    display: grid;
    gap: 1rem;
}

.detail-panel {
    padding: 1.4rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
    backdrop-filter: blur(18px);
}

.detail-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.detail-panel-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.8rem;
    border-radius: 9999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: #2563eb;
    font-size: 0.78rem;
    font-weight: 700;
}

.detail-panel-chip.alt {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.14);
}

.detail-panel-chip.green {
    color: #0f766e;
    background: rgba(13, 148, 136, 0.08);
    border-color: rgba(13, 148, 136, 0.14);
}

.detail-panel-line {
    height: 10px;
    width: 120px;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.7), rgba(191, 219, 254, 0.28));
}

.detail-panel-line.short {
    width: 90px;
}

.detail-panel-line.medium {
    width: 110px;
}

.detail-panel h3 {
    margin-bottom: 0.55rem;
    font-size: 1.16rem;
    line-height: 1.3;
    font-weight: 700;
    color: #0f172a;
}

.detail-panel p {
    font-size: 0.94rem;
    line-height: 1.7;
    color: #64748b;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.process-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
    backdrop-filter: blur(18px);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.2);
}

.process-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 700;
    color: #0f172a;
}

.process-card p {
    font-size: 0.94rem;
    line-height: 1.72;
    color: #64748b;
}

.capabilities-cta {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.cta-box {
    text-align: center;
    margin: 0 auto;
    max-width: 960px;
    padding: 3rem 2rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(22px);
}

.cta-box .section-badge {
    margin-bottom: 1rem;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #0f172a;
}

.cta-box p {
    max-width: 46rem;
    margin: 1rem auto 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 991px) {
    .btn-primary {
        display: none;
    }
}

@media (max-width: 767px) {
    .capabilities-overview,
    .capabilities-detail,
    .capabilities-process,
    .capabilities-cta {
        padding: 4.5rem 0;
    }

    .hero-card,
    .cta-box {
        padding: 1.4rem;
        border-radius: 1.5rem;
    }

    .dashboard-shell {
        min-height: 440px;
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .dashboard-content {
        padding: 0.85rem;
    }

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.75;
        transform: scale(1.08);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.58;
        transform: scale(1);
    }
    50% {
        opacity: 0.74;
        transform: scale(1.06);
    }
}
