:root {
    --portal-bg: #f4f6fa;
    --portal-panel: #ffffff;
    --portal-panel-soft: #f8fafc;
    --portal-line: #e7ebf2;
    --portal-line-strong: #d8deea;
    --portal-text: #14213a;
    --portal-muted: #6e7a91;
    --portal-blue: #3168d8;
    --portal-blue-dark: #1d4fb5;
    --portal-blue-soft: #edf3ff;
    --portal-green: #169568;
    --portal-green-soft: #e9f8f1;
    --portal-amber: #df9419;
    --portal-amber-soft: #fff6e5;
    --portal-purple: #8154d8;
    --portal-purple-soft: #f3edff;
    --portal-danger: #d95252;
    --portal-danger-soft: #fff0f0;
    --portal-shadow: 0 8px 30px rgba(26, 43, 73, .06);
    --portal-shadow-hover: 0 16px 38px rgba(26, 43, 73, .11);
    --portal-radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--portal-bg);
    font-size: 14px;
}

body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 5% -10%, rgba(49, 104, 216, .07), transparent 28rem),
        var(--portal-bg);
    color: var(--portal-text);
    font-family: "Segoe UI Variable", "Segoe UI", Aptos, system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--portal-blue);
}

button,
input,
select,
textarea {
    font: inherit;
}

.layout-root {
    min-height: 100vh;
}

.main-area {
    width: 100%;
    max-width: 1640px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 16px clamp(14px, 2.3vw, 38px) 36px;
}

.portal-header {
    position: sticky;
    z-index: 100;
    top: 12px;
    display: flex;
    min-height: 70px;
    align-items: center;
    gap: clamp(16px, 2vw, 32px);
    width: 100%;
    margin: 0 0 22px;
    padding: 10px 13px 10px 16px;
    border: 1px solid rgba(222, 228, 239, .9);
    border-radius: 18px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 10px 34px rgba(24, 43, 73, .07);
    backdrop-filter: blur(16px);
}

.portal-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: var(--portal-text);
    text-decoration: none;
}

.portal-brand:hover {
    color: var(--portal-text);
}

.portal-brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(145deg, #477ae6, #204faa);
    box-shadow: 0 8px 18px rgba(49, 104, 216, .24);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 850;
}

.portal-brand strong,
.portal-brand small {
    display: block;
    line-height: 1.12;
}

.portal-brand strong {
    font-size: 1rem;
    letter-spacing: .04em;
}

.portal-brand small {
    margin-top: 3px;
    color: var(--portal-muted);
    font-size: .73rem;
    font-weight: 650;
}

.portal-navigation {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    gap: 5px;
}

.portal-navigation a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    border-radius: 11px;
    color: #66728a;
    font-size: .79rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.portal-navigation a:hover {
    background: var(--portal-blue-soft);
    color: var(--portal-blue-dark);
    transform: translateY(-1px);
}

.portal-navigation a.active {
    background: linear-gradient(135deg, #edf3ff, #e8f0ff);
    color: var(--portal-blue-dark);
    box-shadow: inset 0 0 0 1px rgba(49, 104, 216, .08);
}

.navigation-icon {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 7px;
    background: rgba(94, 112, 145, .09);
    font-size: .82rem;
    line-height: 1;
}

.portal-navigation a.active .navigation-icon {
    background: var(--portal-blue);
    color: #fff;
}

.portal-user {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    padding-left: 15px;
    border-left: 1px solid var(--portal-line);
}

.portal-user-avatar {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #e9effb, #dbe6fa);
    color: var(--portal-blue-dark);
    font-size: .9rem;
    font-weight: 800;
}

.portal-user-copy strong,
.portal-user-copy small {
    display: block;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.portal-user-copy strong {
    font-size: .78rem;
}

.portal-user-copy small {
    margin-top: 2px;
    color: var(--portal-muted);
    font-size: .67rem;
}

.portal-exit {
    padding: 7px 9px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--portal-muted);
    cursor: pointer;
    font-size: .72rem;
    font-weight: 750;
}

.portal-exit:hover {
    background: var(--portal-danger-soft);
    color: var(--portal-danger);
}

.dashboard-page {
    width: 100%;
}

.dashboard-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin: 8px 2px 24px;
}

.eyebrow,
.panel-kicker {
    color: var(--portal-blue);
    font-size: .69rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.dashboard-hero h1 {
    margin: 7px 0 5px;
    color: #101c31;
    font-size: clamp(2rem, 3.6vw, 3.15rem);
    font-weight: 820;
    letter-spacing: -.055em;
    line-height: 1.04;
}

.dashboard-hero p {
    margin: 0;
    color: var(--portal-muted);
    font-size: .96rem;
}

.dashboard-toolbar {
    display: flex;
    flex: 0 0 auto;
    align-items: flex-end;
    gap: 9px;
    padding: 10px;
    border: 1px solid var(--portal-line);
    border-radius: 15px;
    background: rgba(255, 255, 255, .8);
}

.dashboard-toolbar label {
    display: block;
}

.dashboard-toolbar label > span {
    display: block;
    margin: 0 0 5px 2px;
    color: var(--portal-muted);
    font-size: .68rem;
    font-weight: 750;
}

.dashboard-toolbar .form-control,
.dashboard-toolbar .form-select {
    min-width: 128px;
    height: 39px;
}

.dashboard-refresh {
    height: 39px;
    padding-inline: 16px;
}

.refresh-symbol {
    margin-right: 4px;
    font-size: 1.05rem;
}

.dashboard-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: -6px 2px 13px;
    color: var(--portal-muted);
    font-size: .72rem;
}

.dashboard-meta span + span {
    padding-left: 14px;
    border-left: 1px solid var(--portal-line-strong);
}

.live-indicator {
    color: var(--portal-green);
    font-weight: 750;
}

.live-indicator i {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--portal-green);
    box-shadow: 0 0 0 4px rgba(22, 149, 104, .12);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.kpi-card {
    position: relative;
    overflow: hidden;
    min-height: 175px;
    padding: 21px 22px 18px;
    border: 1px solid var(--portal-line);
    border-radius: var(--portal-radius);
    background: var(--portal-panel);
    box-shadow: var(--portal-shadow);
    transition: box-shadow .2s ease, transform .2s ease;
}

.kpi-card::before {
    position: absolute;
    top: -42px;
    right: -36px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: var(--kpi-soft);
    content: "";
}

.kpi-card:hover {
    box-shadow: var(--portal-shadow-hover);
    transform: translateY(-2px);
}

.kpi-blue { --kpi: var(--portal-blue); --kpi-soft: var(--portal-blue-soft); }
.kpi-green { --kpi: var(--portal-green); --kpi-soft: var(--portal-green-soft); }
.kpi-amber { --kpi: var(--portal-amber); --kpi-soft: var(--portal-amber-soft); }
.kpi-purple { --kpi: var(--portal-purple); --kpi-soft: var(--portal-purple-soft); }

.kpi-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.kpi-label {
    color: var(--portal-muted);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.kpi-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    background: var(--kpi-soft);
    color: var(--kpi);
    font-size: 1rem;
    font-weight: 850;
}

.kpi-value {
    position: relative;
    z-index: 1;
    display: block;
    margin: 22px 0 17px;
    color: #101c31;
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 830;
    letter-spacing: -.055em;
    line-height: .9;
}

.kpi-foot {
    display: flex;
    min-height: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--portal-muted);
    font-size: .72rem;
}

.kpi-foot a {
    color: var(--kpi);
    font-weight: 750;
    text-decoration: none;
}

.positive-pill {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--portal-green-soft);
    color: var(--portal-green);
    font-weight: 800;
}

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

.dashboard-panel {
    overflow: hidden;
    border: 1px solid var(--portal-line);
    border-radius: var(--portal-radius);
    background: var(--portal-panel);
    box-shadow: var(--portal-shadow);
}

.movement-panel { grid-column: span 8; min-height: 430px; }
.readiness-panel { grid-column: span 4; }
.progress-panel { grid-column: span 6; padding-bottom: 20px; }
.process-panel { grid-column: span 12; }
.sku-panel { grid-column: span 8; }
.attention-panel { grid-column: span 4; }
.priority-panel { grid-column: span 12; }

.panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 23px 18px;
}

.panel-header h2 {
    margin: 5px 0 0;
    color: #132039;
    font-size: 1.07rem;
    font-weight: 800;
    letter-spacing: -.018em;
}

.panel-header p {
    margin: 5px 0 0;
    color: var(--portal-muted);
    font-size: .75rem;
}

.compact-header {
    align-items: center;
}

.panel-link {
    align-self: center;
    color: var(--portal-blue);
    font-size: .74rem;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.panel-total {
    align-self: center;
    padding: 6px 10px;
    border-radius: 9px;
    background: var(--portal-blue-soft);
    color: var(--portal-blue-dark);
    font-size: .72rem;
    font-weight: 800;
}

.chart-legend {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 6px;
    color: var(--portal-muted);
    font-size: .71rem;
    font-weight: 650;
}

.chart-legend i,
.readiness-breakdown i {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 4px;
    border-radius: 50%;
}

.legend-inbound { background: var(--portal-blue); }
.legend-outbound { background: var(--portal-purple); }

.movement-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0 23px;
    border: 1px solid var(--portal-line);
    border-radius: 12px;
    background: var(--portal-line);
    overflow: hidden;
}

.movement-summary > div {
    padding: 11px 13px;
    background: var(--portal-panel-soft);
}

.movement-summary span,
.movement-summary strong {
    display: block;
}

.movement-summary span {
    color: var(--portal-muted);
    font-size: .66rem;
}

.movement-summary strong {
    margin-top: 3px;
    font-size: .91rem;
}

.movement-chart {
    position: relative;
    display: flex;
    height: 245px;
    align-items: stretch;
    gap: 3px;
    margin: 20px 20px 17px;
    padding: 12px 5px 0;
    border-bottom: 1px solid var(--portal-line-strong);
    background: repeating-linear-gradient(to bottom, transparent 0, transparent 59px, #eef1f6 60px);
    overflow-x: auto;
    overflow-y: hidden;
}

.movement-day {
    display: flex;
    min-width: 18px;
    flex: 1 0 18px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.movement-bars {
    display: flex;
    width: 100%;
    height: 200px;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
}

.movement-bar {
    display: block;
    width: min(7px, 42%);
    min-height: 0;
    border-radius: 5px 5px 2px 2px;
    transition: opacity .15s ease;
}

.movement-bar.inbound { background: linear-gradient(180deg, #5f8beb, #2f65d5); }
.movement-bar.outbound { background: linear-gradient(180deg, #a17be9, #7f52d4); }
.movement-day:hover .movement-bar { opacity: .72; }

.movement-day small {
    width: 100%;
    height: 23px;
    margin-top: 5px;
    color: #8b95a8;
    font-size: .56rem;
    text-align: center;
    white-space: nowrap;
}

.readiness-content {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 26px 25px;
}

.donut-chart {
    --oran: 0;
    position: relative;
    display: grid;
    width: 178px;
    height: 178px;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--portal-blue) calc(var(--oran) * 1%), #e9edf4 0);
    box-shadow: inset 0 0 0 1px rgba(18, 31, 53, .025);
}

.donut-chart::after {
    position: absolute;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 24px rgba(28, 47, 78, .04);
    content: "";
}

.donut-chart > div {
    position: relative;
    z-index: 1;
    text-align: center;
}

.donut-chart strong,
.donut-chart span {
    display: block;
}

.donut-chart strong {
    font-size: 2rem;
    font-weight: 830;
    letter-spacing: -.045em;
}

.donut-chart span {
    margin-top: 2px;
    color: var(--portal-muted);
    font-size: .7rem;
    font-weight: 700;
}

.readiness-breakdown {
    width: 100%;
    margin-top: 25px;
}

.readiness-breakdown > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid var(--portal-line);
    font-size: .75rem;
}

.readiness-breakdown span {
    color: var(--portal-muted);
}

.ready-dot { background: var(--portal-blue); }
.waiting-dot { background: #dfe4ed; }

.header-rate {
    color: var(--portal-green);
    font-size: 1.65rem;
    font-weight: 830;
    letter-spacing: -.04em;
}

.outbound-progress-panel .header-rate {
    color: var(--portal-purple);
}

.progress-track {
    overflow: hidden;
    border-radius: 999px;
    background: #e9edf4;
}

.progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2f66d6, #5e8deb);
}

.large-progress {
    height: 12px;
    margin: 8px 23px 20px;
}

.purple-progress span {
    background: linear-gradient(90deg, #7347c9, #a27de8);
}

.triple-stat {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 23px;
}

.triple-stat > div {
    padding: 3px 16px;
}

.triple-stat > div:first-child { padding-left: 0; }
.triple-stat > div + div { border-left: 1px solid var(--portal-line); }

.triple-stat span,
.triple-stat strong {
    display: block;
}

.triple-stat span {
    color: var(--portal-muted);
    font-size: .68rem;
}

.triple-stat strong {
    margin-top: 4px;
    font-size: 1.14rem;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0 23px 23px;
}

.process-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--portal-line);
    border-radius: 13px;
    background: var(--portal-panel-soft);
}

.process-status {
    min-width: 0;
    overflow: hidden;
    color: #35425a;
    font-size: .76rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.process-row > strong {
    color: #15223a;
    font-size: 1rem;
}

.process-row > small {
    grid-column: 2;
    color: var(--portal-muted);
    font-size: .62rem;
    text-align: right;
}

.process-bar {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: #e3e7ef;
}

.process-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--portal-blue), #6f95eb);
}

.status-2 + .process-bar span { background: linear-gradient(90deg, #e19a25, #f1bb5e); }
.status-3 + .process-bar span { background: linear-gradient(90deg, #7c56ce, #a784eb); }
.status-4 + .process-bar span { background: linear-gradient(90deg, #24a777, #61c39d); }
.status-5 + .process-bar span { background: linear-gradient(90deg, #2d7cbb, #61a7dc); }
.status-6 + .process-bar span { background: linear-gradient(90deg, #58667d, #8793a6); }

.sku-list {
    padding: 0 23px 20px;
}

.sku-row {
    display: grid;
    grid-template-columns: 27px minmax(135px, 1.25fr) minmax(100px, 1fr) 74px;
    gap: 11px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid var(--portal-line);
}

.sku-rank {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 8px;
    background: var(--portal-blue-soft);
    color: var(--portal-blue-dark);
    font-size: .66rem;
    font-weight: 800;
}

.sku-copy {
    min-width: 0;
}

.sku-copy strong,
.sku-copy small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sku-copy strong {
    font-size: .75rem;
}

.sku-copy small {
    margin-top: 2px;
    color: var(--portal-muted);
    font-size: .64rem;
}

.sku-bar {
    height: 7px;
    overflow: hidden;
    border-radius: 99px;
    background: #e9edf4;
}

.sku-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #3d70da, #7da0ed);
}

.sku-value {
    font-size: .75rem;
    text-align: right;
}

.attention-list {
    padding: 0 20px;
}

.attention-item {
    display: grid;
    grid-template-columns: 39px 1fr auto;
    gap: 11px;
    align-items: center;
    margin-bottom: 10px;
    padding: 13px;
    border: 1px solid var(--portal-line);
    border-radius: 13px;
    color: var(--portal-text);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.attention-item:hover {
    color: var(--portal-text);
    box-shadow: 0 8px 20px rgba(23, 41, 70, .07);
    transform: translateX(2px);
}

.attention-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    font-size: 1rem;
    font-weight: 800;
}

.warning-attention .attention-icon { background: var(--portal-amber-soft); color: var(--portal-amber); }
.purple-attention .attention-icon { background: var(--portal-purple-soft); color: var(--portal-purple); }
.neutral-attention .attention-icon { background: #eef1f5; color: #68758c; }

.attention-item span:nth-child(2) {
    min-width: 0;
}

.attention-item strong,
.attention-item small {
    display: block;
}

.attention-item strong {
    font-size: 1rem;
}

.attention-item small {
    margin-top: 3px;
    color: var(--portal-muted);
    font-size: .66rem;
}

.attention-item b {
    color: #9aa4b4;
}

.attention-note {
    margin: 8px 20px 20px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f7f8fb;
    color: var(--portal-muted);
    font-size: .63rem;
    line-height: 1.45;
}

.modern-table-wrap {
    overflow: auto;
    border-top: 1px solid var(--portal-line);
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .75rem;
}

.modern-table th {
    padding: 12px 15px;
    background: #f8f9fc;
    color: #7a8599;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.modern-table td {
    padding: 13px 15px;
    border-top: 1px solid var(--portal-line);
    color: #39465e;
    vertical-align: middle;
}

.modern-table tbody tr:hover {
    background: #fbfcff;
}

.type-badge {
    display: inline-block;
    padding: 4px 7px;
    border-radius: 7px;
    background: var(--portal-blue-soft);
    color: var(--portal-blue-dark);
    font-size: .64rem;
    font-weight: 800;
}

.truncate-cell {
    display: block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.remaining-value {
    color: var(--portal-amber);
}

.mini-progress {
    width: 80px;
    height: 6px;
    overflow: hidden;
    border-radius: 99px;
    background: #e8ecf3;
}

.mini-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1b9b6d, #5cc49d);
}

.empty-table {
    padding: 28px !important;
    color: var(--portal-muted) !important;
    text-align: center;
}

.dashboard-loading {
    display: flex;
    min-height: 410px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--portal-line);
    border-radius: var(--portal-radius);
    background: var(--portal-panel);
    box-shadow: var(--portal-shadow);
}

.loading-mark {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border: 4px solid #e7ecf5;
    border-top-color: var(--portal-blue);
    border-radius: 50%;
    animation: portal-spin .8s linear infinite;
}

.dashboard-loading strong {
    font-size: 1rem;
}

.dashboard-loading small {
    margin-top: 6px;
    color: var(--portal-muted);
}

@keyframes portal-spin {
    to { transform: rotate(360deg); }
}

.portal-alert {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 1px solid;
    border-radius: 14px;
}

.portal-alert > span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    font-weight: 850;
}

.portal-alert div {
    flex: 1;
}

.portal-alert strong,
.portal-alert p {
    display: block;
    margin: 0;
}

.portal-alert p {
    margin-top: 3px;
    font-size: .75rem;
}

.portal-alert-danger {
    border-color: #f2caca;
    background: var(--portal-danger-soft);
    color: #9e3535;
}

.portal-alert-danger > span {
    background: #f9dada;
}

/* Mevcut onaylı sayfalarda ortak görsel dil */
.main-area > .row,
.main-area > form + .row {
    margin-right: 0;
    margin-left: 0;
}

.main-area > .row > [class*="col-"] {
    padding-right: 8px;
    padding-left: 8px;
}

.page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin: 6px 0 19px;
}

.page-heading h1 {
    margin: 5px 0 0;
    color: #111e34;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 820;
    letter-spacing: -.04em;
}

.page-heading p {
    margin: 5px 0 0;
    color: var(--portal-muted);
    font-size: .82rem;
}

.card {
    border-color: var(--portal-line) !important;
    border-radius: 16px !important;
    background: var(--portal-panel);
    box-shadow: var(--portal-shadow) !important;
}

.card-header {
    padding: 17px 19px !important;
    border-bottom: 1px solid var(--portal-line) !important;
    border-radius: 16px 16px 0 0 !important;
    background: #fbfcfe !important;
}

.card-title {
    color: var(--portal-text) !important;
}

.table-responsive {
    border: 1px solid var(--portal-line);
    border-radius: 16px !important;
    background: var(--portal-panel) !important;
    box-shadow: var(--portal-shadow) !important;
}

.table {
    margin-bottom: 0;
    color: #364158;
    font-size: .78rem !important;
    --bs-table-bg: transparent;
    --bs-table-striped-bg: #fafbfe;
    --bs-table-hover-bg: #f4f7fd;
}

.table > :not(caption) > * > * {
    padding: 12px 13px;
    border-bottom-color: var(--portal-line);
    vertical-align: middle;
}

.table thead th,
.table .table-dark th,
.table-dark th,
.table-light th {
    border-color: var(--portal-line) !important;
    background: #f7f9fc !important;
    color: #707d93 !important;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
    white-space: nowrap;
}

.table tbody tr:last-child td {
    border-bottom: 0;
}

.form-control,
.form-select,
.inp {
    min-height: 39px;
    padding: 7px 10px;
    border: 1px solid var(--portal-line-strong);
    border-radius: 10px;
    background-color: #fff;
    color: var(--portal-text);
    font-size: .78rem;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus,
.inp:focus {
    border-color: #94b1ed;
    box-shadow: 0 0 0 3px rgba(49, 104, 216, .1);
}

.btn {
    min-height: 36px;
    padding: 7px 13px;
    border: 0;
    border-radius: 10px;
    font-size: .75rem;
    font-weight: 750;
    box-shadow: none !important;
    transition: transform .16s ease, filter .16s ease;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(.98);
}

.btn-primary {
    background: linear-gradient(135deg, #3d71dc, #285bbf);
}

.btn-success {
    background: linear-gradient(135deg, #21a878, #148860);
}

.btn-secondary {
    background: #68758b;
}

.btn-outline-primary {
    border: 1px solid #a9bfea;
    background: #fff;
    color: var(--portal-blue);
}

.btn-link {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--portal-blue);
    font-weight: 750;
    text-decoration: none;
}

.badge {
    padding: 5px 8px;
    border-radius: 7px;
    font-size: .64rem;
    font-weight: 800;
}

.alert {
    border: 1px solid var(--portal-line);
    border-radius: 12px;
    font-size: .77rem;
}

.bg-white.p-3.rounded-3.shadow-sm,
.bg-white.p-4.rounded-3.shadow-sm,
.d-flex.bg-white.p-3.rounded-3.shadow-sm {
    border: 1px solid var(--portal-line);
    border-radius: 14px !important;
    box-shadow: var(--portal-shadow) !important;
}

.auth-card {
    position: relative;
    overflow: hidden;
    width: min(430px, calc(100vw - 32px));
    margin: clamp(55px, 11vh, 120px) auto;
    padding: 34px;
    border: 1px solid var(--portal-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 24px 70px rgba(24, 43, 74, .13);
}

.auth-card::before {
    position: absolute;
    top: -65px;
    right: -55px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(145deg, #edf3ff, #dce8ff);
    content: "";
}

.auth-card h1 {
    position: relative;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 820;
    letter-spacing: -.04em;
}

.auth-card > p {
    position: relative;
    margin: 6px 0 24px;
    color: var(--portal-muted);
}

.auth-field {
    margin-bottom: 14px;
}

.auth-field label {
    display: block;
    margin: 0 0 6px 2px;
    color: #57647a;
    font-size: .73rem;
    font-weight: 750;
}

.auth-inp {
    width: 100%;
}

.auth-card .btn-primary {
    width: 100%;
    margin-top: 7px;
}

.auth-error,
.auth-card .bg-danger {
    display: block;
    margin-top: 14px;
    padding: 10px 12px;
    border: 1px solid #f2cccc;
    border-radius: 10px;
    background: var(--portal-danger-soft) !important;
    color: #a43b3b;
    font-size: .74rem;
}

.text-primary { color: var(--portal-blue) !important; }
.text-success { color: var(--portal-green) !important; }
.text-warning { color: var(--portal-amber) !important; }
.text-secondary,
.text-muted { color: var(--portal-muted) !important; }

#blazor-error-ui {
    position: fixed;
    z-index: 9999;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: none;
    max-width: 720px;
    margin: auto;
    padding: 13px 42px 13px 16px;
    border: 1px solid #edc7c7;
    border-radius: 12px;
    background: #fff3f3;
    box-shadow: 0 15px 35px rgba(60, 30, 30, .16);
    color: #9d3838;
}

#blazor-error-ui .dismiss {
    position: absolute;
    top: 9px;
    right: 13px;
    cursor: pointer;
    font-size: 1.1rem;
}

@media (max-width: 1280px) {
    .portal-user-copy {
        display: none;
    }

    .portal-navigation a {
        padding-inline: 8px;
        font-size: .73rem;
    }

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

    .sku-panel,
    .attention-panel {
        grid-column: span 6;
    }
}

@media (max-width: 1050px) {
    .portal-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .portal-navigation {
        order: 3;
        width: 100%;
        overflow-x: auto;
    }

    .portal-user {
        margin-left: auto;
    }

    .dashboard-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .movement-panel,
    .readiness-panel {
        grid-column: span 12;
    }

    .readiness-content {
        min-height: auto;
        flex-direction: row;
        gap: 35px;
    }

    .readiness-breakdown {
        max-width: 360px;
        margin-top: 0;
    }

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

@media (max-width: 760px) {
    .main-area {
        padding: 8px 10px 24px;
    }

    .portal-header {
        top: 5px;
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .portal-brand small,
    .portal-exit {
        display: none;
    }

    .portal-user {
        padding-left: 8px;
    }

    .dashboard-hero h1 {
        font-size: 2rem;
    }

    .dashboard-toolbar {
        width: 100%;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .dashboard-toolbar label {
        min-width: 135px;
        flex: 1;
    }

    .dashboard-toolbar .form-control,
    .dashboard-toolbar .form-select {
        width: 100%;
    }

    .dashboard-refresh {
        align-self: flex-end;
    }

    .dashboard-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .dashboard-meta span + span {
        padding-left: 0;
        border-left: 0;
    }

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

    .kpi-card {
        min-height: 155px;
    }

    .progress-panel,
    .sku-panel,
    .attention-panel {
        grid-column: span 12;
    }

    .movement-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .movement-chart {
        height: 225px;
    }

    .movement-bars {
        height: 180px;
    }

    .readiness-content {
        flex-direction: column;
    }

    .readiness-breakdown {
        width: 100%;
        margin-top: 20px;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .sku-row {
        grid-template-columns: 27px 1fr 70px;
    }

    .sku-bar {
        display: none;
    }

    .panel-header {
        padding: 18px 17px 15px;
    }

    .panel-link,
    .panel-total {
        display: none;
    }

    .triple-stat,
    .movement-summary {
        margin-right: 17px;
        margin-left: 17px;
    }

    .large-progress {
        margin-right: 17px;
        margin-left: 17px;
    }

    .triple-stat strong {
        font-size: .95rem;
    }

    .page-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

/* -------------------------------------------------------
   Ulustrans kurumsal tanıtım ve demo giriş deneyimi
   ------------------------------------------------------- */
.main-area:has(.landing-page) {
    max-width: none;
    padding: 0;
}

.main-area:has(.login-page) {
    max-width: none;
    padding: 0;
}

.landing-page {
    --landing-ink: #0a1730;
    --landing-muted: #66728a;
    --landing-blue: #1254de;
    --landing-blue-bright: #2e78ff;
    --landing-cyan: #5de1e6;
    width: 100%;
    overflow: hidden;
    background: #fff;
    color: var(--landing-ink);
}

.landing-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 50%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
    width: min(100% - 48px, 1440px);
    min-height: 92px;
    transform: translateX(-50%);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    text-decoration: none;
}

.landing-brand:hover {
    color: #fff;
}

.landing-brand-mark {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 12px 12px 12px 4px;
    background: linear-gradient(145deg, #2f7fff, #0c4ac8);
    box-shadow: 0 12px 28px rgba(17, 87, 228, .28);
    font-size: 1.15rem;
    font-weight: 900;
}

.landing-brand strong,
.landing-brand small {
    display: block;
    line-height: 1.08;
}

.landing-brand strong {
    font-size: 1.03rem;
    letter-spacing: .16em;
}

.landing-brand small {
    margin-top: 5px;
    color: rgba(255, 255, 255, .6);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.landing-navigation {
    display: flex;
    justify-content: center;
    gap: clamp(22px, 3vw, 46px);
}

.landing-navigation a {
    position: relative;
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
    font-weight: 650;
    text-decoration: none;
}

.landing-navigation a::after {
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--landing-cyan);
    content: "";
    transition: width .2s ease;
}

.landing-navigation a:hover {
    color: #fff;
}

.landing-navigation a:hover::after {
    width: 100%;
}

.landing-login-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 11px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: .78rem;
    font-weight: 750;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: background .2s ease, transform .2s ease;
}

.landing-login-link:hover {
    transform: translateY(-2px);
    background: #fff;
    color: var(--landing-ink);
}

.landing-hero {
    position: relative;
    display: grid;
    min-height: 780px;
    grid-template-columns: minmax(0, .93fr) minmax(500px, 1.07fr);
    align-items: center;
    gap: clamp(30px, 5vw, 90px);
    padding: 130px max(24px, calc((100vw - 1390px) / 2)) 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 42%, rgba(31, 113, 255, .28), transparent 29rem),
        radial-gradient(circle at 15% 100%, rgba(16, 87, 218, .23), transparent 30rem),
        linear-gradient(122deg, #071329 0%, #0a1b38 56%, #08162f 100%);
    color: #fff;
}

.landing-hero::before {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    mask-image: linear-gradient(to right, #000, transparent 65%);
}

.landing-hero-copy,
.landing-hero-visual {
    position: relative;
    z-index: 2;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--landing-blue);
    font-size: .69rem;
    font-weight: 850;
    letter-spacing: .17em;
}

.landing-hero .landing-eyebrow {
    color: #87c4ff;
}

.landing-eyebrow > i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--landing-cyan);
    box-shadow: 0 0 0 5px rgba(93, 225, 230, .11);
}

.landing-hero h1 {
    max-width: 720px;
    margin: 25px 0 24px;
    font-size: clamp(3.2rem, 5.2vw, 5.75rem);
    font-weight: 780;
    line-height: .98;
    letter-spacing: -.065em;
}

.landing-hero h1 em {
    display: block;
    background: linear-gradient(90deg, #72b9ff, #67e4e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: normal;
}

.landing-hero-copy > p {
    max-width: 610px;
    margin: 0;
    color: rgba(230, 239, 255, .7);
    font-size: 1.1rem;
    line-height: 1.75;
}

.landing-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 35px;
}

.landing-primary-action,
.landing-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.landing-primary-action {
    gap: 18px;
    min-height: 55px;
    padding: 0 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2b77fb, #1254de);
    box-shadow: 0 16px 40px rgba(12, 84, 222, .3);
    color: #fff;
    font-weight: 760;
    transition: transform .2s ease, box-shadow .2s ease;
}

.landing-primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(12, 84, 222, .42);
    color: #fff;
}

.landing-primary-action span {
    font-size: 1.15rem;
}

.landing-secondary-action {
    min-height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .26);
    color: rgba(255, 255, 255, .73);
    font-size: .84rem;
    font-weight: 700;
}

.landing-secondary-action:hover {
    border-color: #fff;
    color: #fff;
}

.landing-proof {
    display: flex;
    gap: 0;
    margin-top: 55px;
}

.landing-proof > div {
    min-width: 138px;
    padding-right: 26px;
}

.landing-proof > div + div {
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, .13);
}

.landing-proof strong,
.landing-proof span {
    display: block;
}

.landing-proof strong {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 780;
}

.landing-proof span {
    margin-top: 5px;
    color: rgba(255, 255, 255, .48);
    font-size: .7rem;
}

.landing-hero-visual {
    min-height: 540px;
}

.visual-glow {
    position: absolute;
    top: 5%;
    left: 15%;
    width: 68%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(33, 113, 252, .24);
    filter: blur(70px);
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(88, 157, 255, .16);
    border-radius: 50%;
}

.orbit-one {
    top: 5%;
    left: 4%;
    width: 88%;
    aspect-ratio: 1;
}

.orbit-two {
    top: 17%;
    left: 17%;
    width: 62%;
    aspect-ratio: 1;
}

.operations-window {
    position: absolute;
    top: 48%;
    left: 50%;
    width: min(92%, 620px);
    padding: 18px;
    transform: translate(-50%, -50%) rotate(-1.5deg);
    border: 1px solid rgba(139, 182, 255, .23);
    border-radius: 24px;
    background: rgba(12, 31, 63, .86);
    box-shadow: 0 35px 90px rgba(0, 5, 19, .43);
    backdrop-filter: blur(24px);
}

.operations-window-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 3px 17px;
    color: rgba(255, 255, 255, .78);
    font-size: .75rem;
    font-weight: 750;
}

.operations-window-top span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.operations-window-top span i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #49d7a0;
    box-shadow: 0 0 0 5px rgba(73, 215, 160, .1);
}

.operations-window-top small {
    padding: 5px 8px;
    border-radius: 7px;
    background: rgba(73, 215, 160, .12);
    color: #61e0ad;
    font-size: .57rem;
    letter-spacing: .1em;
}

.operations-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.operations-metrics article {
    position: relative;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 15px;
    background: rgba(255, 255, 255, .045);
}

.operations-metrics span,
.operations-metrics strong {
    display: block;
}

.operations-metrics span {
    color: rgba(255, 255, 255, .45);
    font-size: .62rem;
}

.operations-metrics strong {
    margin-top: 7px;
    color: #fff;
    font-size: 1.17rem;
}

.operations-metrics b {
    position: absolute;
    top: 17px;
    right: 15px;
    font-size: .58rem;
    font-weight: 750;
}

.metric-blue { color: #77aaff; }
.metric-green { color: #61e0ad; }

.operations-chart {
    margin-top: 11px;
    padding: 17px 17px 13px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 15px;
    background: rgba(255, 255, 255, .035);
}

.chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .78);
    font-size: .68rem;
    font-weight: 700;
}

.chart-head small {
    color: rgba(255, 255, 255, .36);
    font-size: .56rem;
}

.chart-lines {
    display: flex;
    height: 115px;
    align-items: flex-end;
    gap: clamp(8px, 2vw, 21px);
    margin-top: 16px;
    padding: 0 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: repeating-linear-gradient(to top, rgba(255, 255, 255, .045) 0 1px, transparent 1px 33%);
}

.chart-lines i {
    width: 100%;
    height: var(--h);
    border-radius: 5px 5px 1px 1px;
    background: linear-gradient(to top, rgba(32, 101, 233, .45), #4b8eff);
    box-shadow: 0 -7px 25px rgba(66, 133, 255, .14);
}

.chart-lines i:nth-child(3n + 2) {
    background: linear-gradient(to top, rgba(48, 197, 182, .35), #63ddd2);
}

.operations-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 18px 7px 3px;
    color: rgba(255, 255, 255, .55);
    font-size: .6rem;
    font-weight: 700;
}

.operations-flow span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.operations-flow b {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, rgba(75, 142, 255, .08), rgba(75, 142, 255, .42), rgba(75, 142, 255, .08));
}

.flow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.inbound-dot { background: #57a2ff; }
.stock-dot { background: #65ddd2; }
.outbound-dot { background: #9b7eff; }

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(16, 38, 75, .86);
    box-shadow: 0 20px 50px rgba(0, 8, 26, .32);
    backdrop-filter: blur(16px);
}

.floating-card-top {
    top: 8%;
    right: 1%;
}

.floating-card-bottom {
    bottom: 5%;
    left: -2%;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: #fff;
    font-size: .71rem;
}

.floating-card small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .43);
    font-size: .56rem;
}

.floating-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    background: rgba(80, 219, 166, .15);
    color: #5cdfac;
}

.pulse-ring {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(91, 159, 255, .26);
    border-radius: 50%;
}

.pulse-ring i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #5b9fff;
    box-shadow: 0 0 0 5px rgba(91, 159, 255, .1);
}

.brand-strip {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: center;
    gap: clamp(17px, 3vw, 48px);
    padding: 20px 24px;
    border-bottom: 1px solid #e8edf5;
    background: #f8faff;
    color: #6e7890;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .15em;
}

.brand-strip i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #b8c2d4;
}

.landing-section {
    width: min(100% - 48px, 1390px);
    margin: 0 auto;
    padding: 120px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 55px;
}

.section-heading h2,
.technology-copy h2,
.about-copy h2,
.demo-callout h2 {
    margin: 17px 0 0;
    color: var(--landing-ink);
    font-size: clamp(2.3rem, 3.6vw, 4.4rem);
    font-weight: 760;
    line-height: 1.04;
    letter-spacing: -.052em;
}

.section-heading > p {
    margin: 0;
    color: var(--landing-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1.12fr 1fr 1fr;
    gap: 18px;
}

.solution-card {
    position: relative;
    min-height: 355px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid #e4e9f2;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(19, 39, 76, .045);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: #cbd9f1;
    box-shadow: 0 24px 60px rgba(19, 39, 76, .1);
}

.solution-card.featured-solution {
    background: linear-gradient(145deg, #1257e2, #0b3fa7);
    color: #fff;
}

.solution-card.featured-solution::before {
    position: absolute;
    right: -110px;
    bottom: -120px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(255, 255, 255, .025), 0 0 0 90px rgba(255, 255, 255, .018);
    content: "";
}

.solution-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #b3bdcf;
    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .1em;
}

.featured-solution .solution-number {
    color: rgba(255, 255, 255, .48);
}

.solution-icon {
    position: relative;
    width: 58px;
    height: 58px;
    margin-top: 13px;
    border-radius: 16px;
    background: #edf3ff;
}

.featured-solution .solution-icon {
    background: rgba(255, 255, 255, .12);
}

.warehouse-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    padding-bottom: 13px;
}

.warehouse-icon::before {
    position: absolute;
    top: 13px;
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
    transform: rotate(16deg);
}

.warehouse-icon i {
    width: 8px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 2px;
}

.trace-icon::before,
.trace-icon::after,
.trace-icon i {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.trace-icon::before {
    top: 14px;
    left: 13px;
    width: 31px;
    height: 31px;
    border: 2px solid var(--landing-blue);
}

.trace-icon::after {
    top: 25px;
    left: 25px;
    width: 8px;
    height: 8px;
    background: var(--landing-blue);
}

.trace-icon i:first-child { top: 10px; left: 27px; width: 5px; height: 5px; background: #64dacc; }
.trace-icon i:last-child { right: 8px; bottom: 12px; width: 6px; height: 6px; background: #7d65dd; }

.insight-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    padding-bottom: 14px;
}

.insight-icon i {
    width: 6px;
    border-radius: 3px 3px 1px 1px;
    background: var(--landing-blue);
}

.insight-icon i:nth-child(1) { height: 11px; opacity: .45; }
.insight-icon i:nth-child(2) { height: 18px; opacity: .62; }
.insight-icon i:nth-child(3) { height: 25px; opacity: .8; }
.insight-icon i:nth-child(4) { height: 31px; }

.solution-card h3 {
    margin: 37px 0 13px;
    color: var(--landing-ink);
    font-size: 1.3rem;
    font-weight: 760;
    letter-spacing: -.025em;
}

.featured-solution h3 {
    color: #fff;
}

.solution-card p {
    max-width: 340px;
    margin: 0;
    color: var(--landing-muted);
    font-size: .86rem;
    line-height: 1.7;
}

.featured-solution p {
    color: rgba(255, 255, 255, .67);
}

.solution-card > a {
    position: absolute;
    z-index: 2;
    bottom: 26px;
    left: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: .75rem;
    font-weight: 750;
    text-decoration: none;
}

.technology-section {
    position: relative;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: clamp(60px, 8vw, 135px);
    min-height: 690px;
    padding: 95px max(24px, calc((100vw - 1390px) / 2));
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 48%, rgba(42, 114, 235, .24), transparent 28rem),
        linear-gradient(135deg, #08162e, #0b1c38);
    color: #fff;
}

.technology-section::before {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, .13) 50%, transparent 50.1%);
    background-size: 100px 100%;
    content: "";
}

.technology-copy,
.technology-panel {
    position: relative;
    z-index: 2;
}

.light-eyebrow {
    color: #76b6ff;
}

.technology-copy h2,
.demo-callout h2 {
    color: #fff;
}

.technology-copy > p {
    max-width: 590px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
    line-height: 1.8;
}

.technology-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 22px;
    margin-top: 36px;
}

.technology-features span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .75);
    font-size: .74rem;
    font-weight: 650;
}

.technology-features i {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 6px;
    background: rgba(77, 216, 167, .13);
    color: #65dfae;
    font-size: .62rem;
    font-style: normal;
}

.technology-panel {
    min-height: 475px;
    border: 1px solid rgba(117, 168, 245, .15);
    border-radius: 50%;
}

.tech-grid {
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(112, 168, 250, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 52px rgba(65, 126, 220, .025), 0 0 0 104px rgba(65, 126, 220, .018);
}

.tech-grid::before,
.tech-grid::after {
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, transparent, rgba(86, 150, 245, .24), transparent);
    content: "";
    transform: translate(-50%, -50%);
}

.tech-grid::before { width: 140%; height: 1px; }
.tech-grid::after { width: 1px; height: 140%; }

.tech-center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 235px;
    height: 235px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(116, 175, 255, .25);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 93, 189, .42), rgba(11, 29, 57, .95));
    box-shadow: 0 0 65px rgba(39, 113, 232, .23);
}

.tech-logo {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px 15px 15px 5px;
    background: linear-gradient(145deg, #2f7fff, #1254de);
    box-shadow: 0 12px 25px rgba(18, 84, 222, .35);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
}

.tech-center strong {
    margin-top: 17px;
    color: #fff;
    font-size: .82rem;
}

.tech-center small {
    margin-top: 5px;
    color: rgba(255, 255, 255, .4);
    font-size: .56rem;
}

.tech-node {
    position: absolute;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 1px solid rgba(104, 169, 255, .22);
    border-radius: 50%;
    background: #10284f;
    box-shadow: 0 12px 30px rgba(0, 5, 19, .25);
    color: rgba(255, 255, 255, .68);
    font-size: .54rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.node-one { top: 5%; left: 44%; }
.node-two { top: 43%; right: 3%; }
.node-three { bottom: 6%; left: 46%; }
.node-four { top: 43%; left: 3%; }

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 8vw, 130px);
    align-items: center;
}

.about-statement {
    padding: 52px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 0, rgba(74, 141, 255, .17), transparent 18rem),
        #f3f7ff;
}

.about-statement blockquote {
    margin: 28px 0 0;
    color: var(--landing-ink);
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 690;
    line-height: 1.2;
    letter-spacing: -.045em;
}

.about-copy h2 {
    font-size: clamp(2.25rem, 3.3vw, 3.8rem);
}

.about-copy p {
    margin: 22px 0 0;
    color: var(--landing-muted);
    font-size: .94rem;
    line-height: 1.78;
}

.demo-callout {
    display: flex;
    width: min(100% - 48px, 1390px);
    min-height: 330px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin: 10px auto 90px;
    padding: 60px clamp(32px, 5vw, 76px);
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 20%, rgba(72, 153, 255, .34), transparent 23rem),
        linear-gradient(135deg, #0b1d3a, #0c2b61);
    box-shadow: 0 28px 70px rgba(13, 39, 81, .17);
}

.demo-callout h2 {
    max-width: 790px;
    font-size: clamp(2.3rem, 3.7vw, 4.3rem);
}

.demo-callout p {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, .57);
}

.demo-callout > a {
    display: inline-flex;
    min-width: 220px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 13px;
    background: #fff;
    color: #12356c;
    font-weight: 780;
    text-decoration: none;
    transition: transform .2s ease;
}

.demo-callout > a:hover {
    transform: translateY(-3px);
}

.landing-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 45px max(24px, calc((100vw - 1390px) / 2));
    background: #071329;
    color: rgba(255, 255, 255, .52);
}

.landing-footer p {
    margin: 0;
    font-size: .72rem;
}

.landing-footer > div {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.landing-footer > div a {
    color: rgba(255, 255, 255, .58);
    font-size: .69rem;
    font-weight: 650;
    text-decoration: none;
}

.landing-footer > small {
    grid-column: 1 / -1;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .31);
    font-size: .6rem;
}

.footer-brand .landing-brand-mark {
    width: 38px;
    height: 38px;
}

.login-page {
    position: relative;
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 65px 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 25%, rgba(36, 114, 244, .28), transparent 26rem),
        radial-gradient(circle at 20% 90%, rgba(59, 206, 192, .16), transparent 24rem),
        linear-gradient(135deg, #071329, #0b1e3c);
}

.login-page::before {
    position: absolute;
    inset: 0;
    opacity: .17;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 55px 55px;
    content: "";
}

.login-back {
    position: absolute;
    z-index: 3;
    top: 28px;
    left: 32px;
    color: rgba(255, 255, 255, .65);
    font-size: .75rem;
    font-weight: 650;
    text-decoration: none;
}

.login-back:hover {
    color: #fff;
}

.demo-auth-card {
    position: relative;
    z-index: 2;
    width: min(100%, 455px);
    margin: 0;
    padding: 42px 40px 35px;
    text-align: left;
}

.auth-brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 14px 14px 14px 5px;
    background: linear-gradient(145deg, #367ffc, #1254de);
    box-shadow: 0 12px 27px rgba(18, 84, 222, .3);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
}

.auth-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--portal-blue);
    font-size: .62rem;
    font-weight: 850;
    letter-spacing: .14em;
}

.demo-auth-card h1 {
    margin: 0;
    font-size: 2.15rem;
}

.demo-auth-card > p.muted {
    margin-bottom: 28px;
}

.demo-auth-card .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.auth-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 23px;
    color: var(--portal-muted);
    font-size: .65rem;
}

.auth-security-note i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34b986;
    box-shadow: 0 0 0 4px rgba(52, 185, 134, .1);
}

@media (max-width: 1100px) {
    .landing-header {
        width: min(100% - 30px, 1440px);
    }

    .landing-navigation {
        display: none;
    }

    .landing-header {
        grid-template-columns: 1fr auto;
    }

    .landing-hero {
        grid-template-columns: 1fr;
        padding-top: 150px;
    }

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

    .landing-hero-visual {
        min-height: 530px;
    }

    .operations-window {
        width: min(80%, 650px);
    }

    .floating-card-bottom { left: 7%; }
    .floating-card-top { right: 7%; }

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

    .solution-card:last-child {
        grid-column: 1 / -1;
    }

    .technology-section {
        grid-template-columns: 1fr;
    }

    .technology-copy {
        max-width: 760px;
    }

    .technology-panel {
        width: min(100%, 650px);
        min-height: 550px;
        justify-self: center;
    }
}

@media (max-width: 760px) {
    .landing-header {
        min-height: 76px;
    }

    .landing-brand-mark {
        width: 38px;
        height: 38px;
    }

    .landing-brand small {
        display: none;
    }

    .landing-login-link {
        padding: 10px 13px;
    }

    .landing-hero {
        min-height: auto;
        padding: 122px 20px 55px;
    }

    .landing-hero h1 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .landing-hero-copy > p {
        font-size: .95rem;
    }

    .landing-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .landing-secondary-action {
        align-self: flex-start;
    }

    .landing-proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px 0;
    }

    .landing-proof > div {
        padding-right: 15px;
    }

    .landing-proof > div + div {
        padding-left: 15px;
    }

    .landing-proof > div:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .landing-hero-visual {
        min-height: 435px;
    }

    .operations-window {
        width: 100%;
        padding: 13px;
    }

    .floating-card {
        display: none;
    }

    .operations-metrics article {
        padding: 13px;
    }

    .operations-metrics b {
        display: none;
    }

    .chart-lines {
        gap: 8px;
    }

    .brand-strip {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
    }

    .landing-section {
        width: min(100% - 32px, 1390px);
        padding: 80px 0;
    }

    .section-heading,
    .solution-grid,
    .about-section {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 25px;
    }

    .solution-card:last-child {
        grid-column: auto;
    }

    .technology-section {
        padding: 78px 20px;
    }

    .technology-features {
        grid-template-columns: 1fr;
    }

    .technology-panel {
        width: 100%;
        min-height: 390px;
    }

    .tech-center {
        width: 180px;
        height: 180px;
    }

    .tech-node {
        width: 50px;
        height: 50px;
        font-size: .45rem;
    }

    .about-statement {
        padding: 34px 27px;
    }

    .demo-callout {
        width: min(100% - 28px, 1390px);
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 55px;
        padding: 42px 27px;
        border-radius: 22px;
    }

    .demo-callout > a {
        width: 100%;
    }

    .landing-footer {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .landing-footer > div {
        justify-content: flex-start;
    }

    .login-back {
        top: 20px;
        left: 20px;
    }

    .demo-auth-card {
        padding: 35px 25px 29px;
    }
}
