/* cleaned from roadmap.css */

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #0d0f1a;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
    padding: 0;
}

header.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 6rem;
    padding-right: 6rem;
    background: radial-gradient(circle at top left, #1e2a3a, #05192b);
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-text button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background: #3b82f6;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.hero-graphic img {
    max-width: 100%;
}

section {
    pointer-events: none;
    padding-left: 6rem;
    border-bottom: 1px solid #1f2937;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.why-skindex ul,
.what-is ul {
    list-style: none;
    padding: 0;
}

.why-skindex li,
.what-is li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.why-skindex li::before,
.what-is li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
}

.cta button {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    margin-top: 1rem;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.text-left .what-is,
.text-left .hero-graphic {
    width: 50%;
}

.text-left .hero-graphic {
    display: flex;
    justify-content: center;
}

.text-left .hero-graphic img {
    height: auto;
    display: block;
}

.vault-contents img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-card {
    background: #1f2937;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    max-width: none;
    margin: auto;
    width: 90%;
}

.hero-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.text-left.center-align > div:first-child {
    flex: 1 1 33.333%;
}

.text-left.center-align > .hero-graphic {
    flex: 2 1 60%;
    display: flex;
    justify-content: flex-start;
    padding-right: 3.333%;
}

.header-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    left: auto;
    z-index: 1001;
    background: #1f2937;
    color: #fff;
    border: none;
    padding: 0.5rem;
    font-size: 1.5rem;
    border-radius: 4px;
}

body.header-open .side-nav {
    transform: translateX(0);
}

.side-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vault-banner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #374151;
}

.modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f9fafb;
}

.modal-body {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.modal-body h3 {
    margin-top: 0;
    color: #f9fafb;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.modal-body .chart-container {
    padding-left: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111827;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    flex: 0 0 33.33%;
}

.modal-body .items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    flex: 0 0 66.66%;
}

.modal-body .items-grid a {
    display: block;
    background: #374151;
    border-radius: 0.5rem;
    overflow: hidden;
    text-align: center;
    padding: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.modal-body .items-grid a:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.modal-body .items-grid img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 0.5rem;
}

.modal-body .items-grid .item-name {
    font-size: 0.875rem;
    color: #e5e7eb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-footer button {
    background: #2563eb;
    color: #f9fafb;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-footer button:hover {
    background: #1e40af;
}

.vault-heading button {
    background: #2563eb;
    color: #f9fafb;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.vault-heading button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.inventory-item img {
    width: 100%;
    border-radius: 4px;
}

.vault-card .card-icon img {
    max-width: 5rem;
    max-height: 5rem;
    display: block;
}

.roadmap-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: #05192b;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.roadmap-phase {
    margin-bottom: 2rem;
}

.roadmap-phase h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
}

.roadmap-phase ul {
    list-style: none;
    padding-left: 1.2rem;
    position: relative;
}

.roadmap-phase ul::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #007bff;
}

.roadmap-phase ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1rem;
    transition: color 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
    animation-delay: calc(0.2s * var(--animation-order));
}

.roadmap-phase ul li::before {
    content: "•";
    color: #007bff;
    font-size: 1.2rem;
    position: absolute;
    left: -0.3rem;
    top: 0;
}

.roadmap-phase ul li.completed {
    text-decoration: line-through;
}

.cta-section {
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    background: #05192b;
    border-radius: 8px;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section button {
    padding: 0.8rem 2rem;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-section button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.roadmap-phase ul li:nth-child(1) {
    --animation-order: 1;
}

.roadmap-phase ul li:nth-child(2) {
    --animation-order: 2;
}

.roadmap-phase ul li:nth-child(3) {
    --animation-order: 3;
}

.roadmap-phase ul li:nth-child(4) {
    --animation-order: 4;
}

.roadmap-phase ul li:nth-child(5) {
    --animation-order: 5;
}

.roadmap-phase ul li:nth-child(6) {
    --animation-order: 6;
}

.roadmap-phase ul li:nth-child(7) {
    --animation-order: 7;
}

.hero {
    width: 100vw;
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 1rem 0;
    background: transparent;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    text-align: center;
    color: #fff;
}

.hero,
.hero-center {
    width: 100vw;
    box-sizing: border-box;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }

}