/* Object Storage landing — reuse epyc spacing tokens */
.osi-landing-s1 {
    background: linear-gradient(165deg, #f0fdfa 0%, #fff 45%, #f8fafc 100%);
}

.osi-mock-card {
    max-width: 22rem;
    width: 100%;
    border-radius: 1rem;
    border: 1px solid #ccfbf1;
    background: #fff;
    box-shadow: 0 20px 45px rgba(13, 148, 136, 0.12);
    overflow: hidden;
}

.osi-mock-card__head {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    color: #fff;
    padding: 1rem 1.25rem;
}

.osi-mock-card__body {
    padding: 1rem 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: #475569;
}

.osi-mock-stat {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.osi-mock-stat:last-child {
    border-bottom: 0;
}

.osi-use-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .osi-use-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .osi-use-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.osi-use-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.osi-use-card__icon {
    color: #0d9488;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.osi-plan-mini {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .osi-plan-mini {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .osi-plan-mini {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .osi-plan-mini {
        grid-template-columns: repeat(4, 1fr);
    }
}

.osi-plan-mini__card {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
}

.osi-plan-mini__card--sweet {
    border-color: #5eead4;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
}

.osi-plan-mini__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #ccfbf1;
    color: #0f766e;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
}

.osi-plan-mini__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f766e;
}

.osi-addon-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .osi-addon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.osi-addon-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.osi-addon-panel__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.osi-addon-panel__unit {
    font-size: 0.875rem;
    color: #0f766e;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.osi-addon-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.osi-addon-table {
    width: 100%;
    min-width: 36rem;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.osi-addon-table th,
.osi-addon-table td {
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.65rem;
    text-align: center;
    white-space: nowrap;
}

.osi-addon-table thead th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
}

.osi-addon-table tbody th {
    background: #f8fafc;
    color: #334155;
    font-weight: 600;
    text-align: left;
}

.osi-addon-table tbody td {
    color: #0f766e;
    font-weight: 600;
}

.osi-addon-table--catalog {
    width: 100%;
    min-width: 36rem;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.osi-addon-table--catalog th,
.osi-addon-table--catalog td {
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0.75rem;
    text-align: center;
    white-space: nowrap;
}

.osi-addon-table--catalog thead th {
    background: #f9fafb;
    color: #4b5563;
    font-weight: 600;
}

.osi-addon-table--catalog tbody th {
    background: #f9fafb;
    color: #374151;
    font-weight: 600;
    text-align: left;
}

.osi-addon-table--catalog tbody td {
    color: #0f766e;
    font-weight: 600;
}

/* Custom configurator */
.osi-configurator__layout {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .osi-configurator__layout {
        grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.8fr);
        align-items: start;
    }
}

.osi-configurator__controls {
    display: grid;
    gap: 1.25rem;
}

.osi-configurator__field {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.osi-configurator__field-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.osi-configurator__field-head label {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}

.osi-configurator__input-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: #f8fafc;
}

.osi-configurator__input-wrap input {
    width: 5.5rem;
    border: 0;
    background: transparent;
    text-align: right;
    font-weight: 600;
    color: #0f766e;
    outline: none;
}

.osi-configurator__input-wrap span {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.osi-configurator__field input[type="range"] {
    width: 100%;
    accent-color: #0d9488;
    margin-bottom: 0.75rem;
}

.osi-configurator__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.osi-configurator__quick-btn {
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.osi-configurator__quick-btn:hover {
    border-color: #14b8a6;
    color: #0f766e;
    background: #f0fdfa;
}

.osi-configurator__summary-card {
    background: linear-gradient(165deg, #f0fdfa 0%, #fff 100%);
    border: 1px solid #99f6e4;
    border-radius: 0.875rem;
    padding: 1.25rem;
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.08);
}

.osi-configurator__summary-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    font-weight: 700;
}

.osi-configurator__price {
    font-size: 2rem;
    font-weight: 800;
    color: #0f766e;
    margin: 0.35rem 0;
    line-height: 1.1;
}

.osi-configurator__summary-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.osi-configurator__summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    color: #475569;
}

.osi-configurator__summary-list strong {
    color: #0f172a;
    text-align: right;
}
