:root {
    --bg-color: #eaf4ff;
    --bg-dark: #2f86db;
    --text-color: #12385d;
    --text-muted: #5c7794;
    --accent-purple: #3a8ee8;
    --accent-purple-dark: #2f86db;
    --accent-glow: rgba(58, 142, 232, 0.28);
    --border-color: #cfe0f2;
    --card-bg: rgba(255, 255, 255, 0.82);
    --card-bg-strong: rgba(255, 255, 255, 0.92);
    --font-heading: "Arial Narrow", Arial, sans-serif;
    --font-body: Arial, Helvetica, sans-serif;
    --video-height: 420px;
    --review-image-ratio: 3 / 4;
    --shadow-soft: 0 18px 45px rgba(27, 85, 140, 0.16);
    --section-space: clamp(3.5rem, 6vw, 4.75rem);
    --section-space-mobile: 3rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #f2f8ff 0%, #e7f2ff 45%, #eef6ff 100%);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 38rem;
    height: 38rem;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(20px);
}

body::before {
    top: 8rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(58, 142, 232, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
}

body::after {
    right: -10rem;
    bottom: 5rem;
    background: radial-gradient(circle, rgba(96, 171, 244, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

button {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

.container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.section-title,
.hero-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
    color: #154b79;
}

.title-underline {
    width: 60px;
    height: 2px;
    background: #72afea;
    margin-bottom: 1.875rem;
    position: relative;
}

.title-underline::before {
    content: "//";
    position: absolute;
    top: -11px;
    left: 0;
    color: #666;
    font-size: 0.875rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 0.9rem 1.9rem;
    border: 1px solid var(--accent-purple);
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn:hover {
    background: var(--accent-purple-dark);
    box-shadow: 0 0 20px var(--accent-glow);
}

.image-shell {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(58, 142, 232, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(223, 237, 251, 0.98));
    border: 1px solid rgba(58, 142, 232, 0.14);
    display: grid;
    place-items: center;
    min-height: 100%;
}

.image-shell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.image-shell img[src=""] {
    opacity: 0;
}

.image-shell > span:not(.collection-badge) {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: #3f6f9d;
    background: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem;
}

.image-shell img[src=""] + span:not(.collection-badge) {
    display: inline-flex;
}

.image-shell--logo,
.image-shell--footer {
    width: 82px;
    aspect-ratio: 1;
    border-radius: 50%;
}

.image-shell--logo img,
.image-shell--footer img {
    opacity: 1;
    object-fit: contain;
    padding: 0.5rem;
}

.image-shell--logo span,
.image-shell--footer span {
    inset: auto;
    font-size: 0.68rem;
    padding: 0.35rem 0.5rem;
    min-height: auto;
}

.image-shell--hero,
.image-shell--collection,
.image-shell--feature,
.image-shell--video {
    border-radius: inherit;
}

.image-shell--collection {
    aspect-ratio: 1;
    min-height: auto;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    padding: 1.5rem;
}

.modal-content {
    width: min(420px, 100%);
    padding: 2rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(58, 142, 232, 0.2);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.modal-eyebrow {
    margin-bottom: 0.5rem;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.modal-content h2 {
    margin-bottom: 0.65rem;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.modal-copy {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-actions button {
    min-width: 110px;
    padding: 0.8rem 1rem;
    border: 0;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

#yesBtn {
    background: var(--accent-purple-dark);
}

#noBtn {
    background: var(--accent-purple);
}

.warn {
    width: 100%;
    max-height: 3rem;
    padding: 0.2rem 1rem;
    text-align: center;
    background: #ffffff;
    color: #2f86db;
    font-size: 0.92rem;
    font-weight: 700;
    opacity: 1;
    overflow: hidden;
    transform: translateY(0);
    transition:
        max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.24s ease,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: max-height, opacity, transform;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(47, 134, 219, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 0.7rem 0;
    transition: padding 0.3s ease;
}

.header.is-scrolled {
    background: rgba(47, 134, 219, 0.98);
    box-shadow: 0 14px 30px rgba(18, 56, 93, 0.14);
}

.header.is-scrolled .warn {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-10px);
}

.header.is-scrolled .header-container {
    padding: 0.55rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    flex: 1 1 auto;
}

.logo img {
    width: auto;
    height: 48px;
    max-width: min(100%, 255px);
    object-fit: contain;
    flex: 0 1 auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    line-height: 1.1;
    min-width: 0;
}

.logo-text span:first-child {
    font-size: 1.15rem;
    font-weight: 700;
}

.logo-text span:last-child {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
}

.nav-desktop ul {
    display: flex;
    gap: 1.9rem;
}

.nav-desktop a {
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    font-size: 0.86rem;
}

.nav-desktop a:hover,
.mobile-menu a:hover {
    color: #fff;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: #ffffff;
    color: #2f86db;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(24, 92, 153, 0.18);
}

.header-cta:hover {
    color: #1f6fbd;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(24, 92, 153, 0.22);
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex: 0 0 44px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 100%;
    right: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    min-height: calc(100vh - 100%);
    padding: 2rem 1.25rem 2.5rem;
    background: rgba(47, 134, 219, 0.98);
    display: none;
    align-items: flex-start;
    justify-content: center;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li + li {
    margin-top: 1.3rem;
}

.mobile-menu a {
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 1.5rem;
}

.hero {
    padding: 7.5rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(180deg, #348ce2 0%, #4597e8 45%, #eaf4ff 100%);
}

.hero-container {
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.75rem;
    color: #ffffff;
}

.hero-cards {
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-slider {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-card {
    position: absolute;
    width: 400px;
    height: 460px;
    border-radius: 24px;
    opacity: 0;
    transform: translateX(0) scale(0.8);
    transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
    pointer-events: none;
}

.hero-card.active {
    opacity: 1;
    transform: translateX(0) scale(1.12);
    z-index: 10;
    box-shadow: 0 0 40px rgba(58, 142, 232, 0.28);
    pointer-events: auto;
}

.hero-card.prev {
    opacity: 0.62;
    transform: translateX(-300px) scale(0.85);
    z-index: 5;
}

.hero-card.next {
    opacity: 0.62;
    transform: translateX(300px) scale(0.85);
    z-index: 5;
}

.hero-card.prev-2,
.hero-card.next-2 {
    opacity: 0;
    transform: scale(0.5);
    z-index: 0;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    border: 1px solid var(--accent-purple);
    background: linear-gradient(180deg, #f7fbff 0%, #dcecff 100%);
}

.image-shell--hero {
    width: 100%;
    height: 100%;
}

.card-copy {
    position: absolute;
    left: 1.1rem;
    top: 1.1rem;
    right: 1.1rem;
    text-align: left;
}

.card-kicker {
    color: rgba(21, 75, 121, 0.72);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-copy h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.1;
    color: #154b79;
}

.card-frame-overlay {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(58, 142, 232, 0.4);
    pointer-events: none;
    border-radius: inherit;
}

.card-cta {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    transform: translateX(-50%) translateY(12px);
    padding: 0.72rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-dark));
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    font-family: var(--font-heading);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 22px rgba(58, 142, 232, 0.24);
}

.hero-card.active .card-cta,
.hero-card:hover .card-cta {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.8rem;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ctrl-dot {
    width: 6px;
    height: 6px;
    border: 1px solid #9ab8d8;
    border-radius: 50%;
}

.ctrl-btn {
    width: 60px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #a9c5e4;
    background: transparent;
    color: #517296;
    cursor: pointer;
}

.ctrl-btn:hover {
    border-color: var(--accent-purple);
    color: #fff;
    box-shadow: 0 0 12px var(--accent-glow);
}

.ctrl-btn span {
    font-size: 1.5rem;
    line-height: 1;
}

.control-divider {
    width: 50px;
    height: 1px;
    background: #a9c5e4;
}

.hero-text {
    width: min(700px, 100%);
    margin: 0 auto 2rem;
    color: #184e7c;
    font-weight: 500;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.hero-cta .btn {
    border: 0;
    background: linear-gradient(135deg, #4ea0f1 0%, #2f86db 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(47, 134, 219, 0.22);
}

.hero-cta .btn:hover {
    background: linear-gradient(135deg, #5baaf6 0%, #2478cb 100%);
    box-shadow: 0 18px 34px rgba(47, 134, 219, 0.3);
}

.stats {
    padding: 1.9rem 0;
    border-top: 1px solid rgba(58, 142, 232, 0.14);
    border-bottom: 1px solid rgba(58, 142, 232, 0.14);
    background: rgba(255, 255, 255, 0.78);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-purple);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 50px;
    height: 1px;
    background: #b7d0ea;
}

.about,
.collection,
.roadmap,
.articles,
.faq,
.how-to-mint {
    padding: var(--section-space) 0;
}

.about,
.articles,
.roadmap {
    background: transparent;
}

.collection,
.faq,
.how-to-mint {
    background: rgba(255, 255, 255, 0.52);
}

.how-to-mint {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.about-container {
    display: flex;
    gap: 3rem;
}

.how-to-mint .heading-left {
    margin-bottom: 1.4rem;
}

.how-to-mint .title-underline {
    margin-bottom: 1.1rem;
}

.about-container {
    align-items: flex-start;
}

.about-image,
.about-content,
.mint-text-col {
    flex: 1;
}

.about-image {
    flex: 0 0 42%;
    max-width: 520px;
    padding: 0.65rem;
    border: 1px solid rgba(58, 142, 232, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
}

.about-content {
    flex: 1 1 58%;
}

.mint-content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: start;
    gap: clamp(1.5rem, 3vw, 2.6rem);
}

.mint-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.mint-text-col p {
    margin: 0;
    max-width: 63ch;
    line-height: 1.72;
}

.btn-mint {
    background: #2f86db;
    border-color: #2f86db;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(24, 92, 153, 0.18);
}

.btn-mint:hover {
    background: #1f6fbd;
    border-color: #1f6fbd;
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(24, 92, 153, 0.24);
}

.image-shell--feature {
    aspect-ratio: 0.92;
    border-radius: 8px;
}

.image-shell--feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transform-origin: center;
}

.about-desc,
.mint-text-col p,
.roadmap-card p,
.faq-answer p,
.featured-meta {
    color: var(--text-muted);
}

.specs-table-container {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.specs-table th,
.specs-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.specs-table th {
    background: rgba(58, 142, 232, 0.12);
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
}

.specs-table td:first-child {
    width: 40%;
    font-weight: 700;
}

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

.mint-steps-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: start;
    gap: 1rem;
    margin-top: -80px;
}

.mint-step-card,
.roadmap-card,
.featured-inner,
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.mint-step-card {
    height: 100%;
    padding: 1.45rem 1.35rem;
}

.step-number {
    display: block;
    margin-bottom: 0.5rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-purple);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.step-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.video-showcase {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.video-card {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(228, 240, 253, 0.96));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(58, 142, 232, 0.12);
}

.video-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    min-height: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(58, 142, 232, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(232, 242, 252, 0.96), rgba(255, 255, 255, 0.98));
}

.video-card video {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    background: transparent;
}

.video-card-copy {
    padding: 1rem 1.1rem 1.15rem;
}

.video-card-tag {
    display: inline-flex;
    margin-bottom: 0.45rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(58, 142, 232, 0.12);
    color: var(--accent-purple);
    font-size: 0.76rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.video-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-dark));
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    font-family: var(--font-heading);
    box-shadow: 0 8px 22px rgba(58, 142, 232, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.video-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(58, 142, 232, 0.28);
    filter: brightness(1.03);
}

.section-divider-top,
.section-divider-lines::before,
.section-divider-lines::after {
    background: linear-gradient(90deg, transparent, #9bc5ef, transparent);
}

.section-divider-top {
    width: 100%;
    height: 1px;
    margin-bottom: 2.75rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
    justify-items: center;
}

.collection-item {
    width: 100%;
    aspect-ratio: auto;
    position: relative;
    overflow: hidden;
    padding: 0.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 255, 0.96));
    box-shadow: 0 8px 30px rgba(58, 142, 232, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.collection-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 50px rgba(58, 142, 232, 0.16);
}

.collection-item::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    pointer-events: none;
}

.collection-item.large {
    grid-column: span 1;
    grid-row: span 1;
}

.collection-item.medium {
    height: auto;
}

.collection-item.small {
    height: auto;
}

.collection-link {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    height: auto;
}

.image-shell--collection .collection-badge {
    position: absolute;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    inset: 0 0 auto auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0.62rem 0.95rem;
    border: 0;
    border-radius: 0 0 0 12px;
    background: linear-gradient(90deg, rgba(12, 109, 69, 0.96), rgba(20, 146, 92, 0.96));
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-size: 0.78rem;
    line-height: 1;
    font-family: var(--font-heading);
    font-weight: 700;
    z-index: 5;
    opacity: 1 !important;
    visibility: visible !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 22px rgba(12, 109, 69, 0.28);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
    pointer-events: none;
    margin: 0 !important;
}

.collection-title {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(47, 134, 219, 0.92), rgba(81, 162, 238, 0.86));
    box-shadow: 0 8px 20px rgba(58, 142, 232, 0.22);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    text-align: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: 1.5rem;
}

.featured-article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.featured-inner {
    width: 100%;
}

.featured-inner,
.roadmap-card {
    padding: 1.65rem;
}

.featured-title,
.roadmap-title {
    font-size: 1.22rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.review-image-shell {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px dashed rgba(58, 142, 232, 0.42);
    background:
        radial-gradient(circle at top, rgba(58, 142, 232, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(223, 237, 251, 0.96));
    min-height: auto;
}

.review-image-shell img {
    display: block;
    width: 100%;
    aspect-ratio: var(--review-image-ratio);
    height: auto;
    object-fit: cover;
}

.review-image-shell span {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #3f6f9d;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.review-image-shell img[src=""] + span {
    display: flex;
}

.articles-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.read-all-btn {
    min-width: 320px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-dark));
    color: #fff;
    border: 2px solid rgba(47, 134, 219, 0.95);
    box-shadow: 0 14px 30px rgba(58, 142, 232, 0.24);
}

.read-all-btn:hover {
    background: linear-gradient(90deg, #2f86db, #1f6fbe);
    box-shadow: 0 18px 34px rgba(58, 142, 232, 0.32);
    transform: translateY(-2px);
}

.faq {
    text-align: left;
}

.faq-list {
    width: 100%;
    margin: 1.5rem auto 0;
    display: grid;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
}

.faq-item.active {
    border-color: rgba(58, 142, 232, 0.45);
    box-shadow: 0 0 16px rgba(58, 142, 232, 0.14);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.35rem;
    border: 0;
    background: transparent;
    color: #154b79;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--accent-purple);
}

.faq-answer {
    display: none;
    padding: 0 1.35rem 1.2rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.section-divider-lines {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 2.25rem;
}

.section-divider-lines::before,
.section-divider-lines::after {
    content: "";
    width: 200px;
    height: 1px;
}

.roadmap-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.roadmap-card {
    width: auto;
    text-align: left;
}

.footer {
    padding: 1.25rem 0 1.5rem;
    background: linear-gradient(180deg, #dcebfb 0%, #eaf4ff 100%);
    position: relative;
    z-index: 2;
}

.faq .section-divider-lines:last-child {
    margin: 2.25rem 0 0;
}

.roadmap .section-title,
.articles .section-title,
.faq .section-title,
.collection .section-title {
    margin-bottom: 0;
}

.footer-wrap {
    width: min(1400px, calc(100% - 40px));
    margin-inline: auto;
    background: #ffffff;
    border: 1px solid #d9dfeb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 35, 66, 0.08);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    gap: 2.25rem;
    padding: 2rem 2.25rem 1.5rem;
}

.footer-col h3 {
    margin-bottom: 0.9rem;
    color: #0f1117;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-col:not(:first-child) {
    padding-top: 2.6rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links a {
    color: #5a6478;
    font-size: 0.85rem;
    line-height: 1.4;
    padding-block: 0.22rem;
}

.footer-links a:hover {
    color: #0077cc;
}

.footer-expand {
    padding: 1.1rem 2.25rem 1.35rem;
    text-align: center;
    border-top: 1px solid #dde1ea;
}

.footer-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #0f1117;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-toggle:hover {
    background: rgba(0, 119, 204, 0.07);
    color: #0077cc;
}

.footer-toggle-arrow {
    color: #5a6478;
    font-size: 0.72rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-toggle[aria-expanded="true"] .footer-toggle-arrow {
    transform: rotate(180deg);
}

.footer-cities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.9rem 0 0;
    padding: 0;
}

.footer-cities[hidden] {
    display: none;
}

.footer-cities li {
    flex: 0 0 auto;
}

.footer-cities li a {
    display: inline-block;
    padding: 0.38rem 0.9rem;
    border: 1px solid #d9e3ef;
    border-radius: 999px;
    background: linear-gradient(180deg, #fbfdff 0%, #f2f7fc 100%);
    color: #5a6478;
    font-size: 0.78rem;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(15, 35, 66, 0.04);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-cities li a:hover {
    background: rgba(0, 119, 204, 0.07);
    color: #0077cc;
    border-color: #0077cc;
    box-shadow: 0 10px 20px rgba(0, 119, 204, 0.12);
    transform: translateY(-1px);
}

.footer-copy {
    margin-top: 1rem;
    color: #5a6478;
    font-size: 0.78rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 1024px) {
    .hero-cards {
        height: 540px;
    }

    .card-slider {
        height: 540px;
    }

    .hero-card {
        width: 330px;
        height: 400px;
    }

    .hero-card.prev {
        transform: translateX(-220px) scale(0.85);
    }

    .hero-card.next {
        transform: translateX(220px) scale(0.85);
    }

    .card-copy h2 {
        font-size: 1.95rem;
    }

    .about-container {
        flex-direction: column;
    }

    .mint-content-wrapper {
        grid-template-columns: 1fr;
    }

    .mint-steps-grid {
        margin-top: 0;
    }

}

@media (max-width: 768px) {
    .about,
    .collection,
    .roadmap,
    .articles,
    .faq,
    .how-to-mint {
        padding: var(--section-space-mobile) 0;
    }

    .section-divider-top {
        margin-bottom: 2rem;
    }

    .section-divider-lines {
        margin: 0 0 1.75rem;
    }

    .faq .section-divider-lines:last-child {
        margin: 1.75rem 0 0;
    }

    .warn {
        font-size: 0.63rem;
        padding-inline: 0.75rem;
    }

    .nav-desktop {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-container {
        gap: 0.75rem;
        padding: 0.6rem 0;
    }

    .logo {
        gap: 0.65rem;
    }

    .logo img {
        height: 34px;
        max-width: calc(100vw - 92px);
    }

    .logo-text span:first-child {
        font-size: 0.92rem;
        letter-spacing: 1.2px;
    }

    .logo-text span:last-child {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .hero {
        padding-top: 8rem;
    }

    .hero-title {
        line-height: 1.12;
        margin-bottom: 1.25rem;
    }

    .hero-cards {
        height: auto;
        margin: 0 auto 1rem;
    }

    .card-slider {
        height: auto;
        min-height: 0;
    }

    .hero-card {
        display: none;
        position: relative;
        width: min(100%, 340px);
        height: auto;
    }

    .hero-card.active {
        display: block;
        transform: translateX(0) scale(1);
    }

    .hero-card.prev,
    .hero-card.next,
    .hero-card.prev-2,
    .hero-card.next-2 {
        display: none;
    }

    .card-inner {
        min-height: 500px;
        display: flex;
        flex-direction: column;
        padding: 1rem 1rem 5.5rem;
    }

    .image-shell--hero {
        order: 2;
        flex: 1;
        min-height: 290px;
    }

    .card-copy {
        position: relative;
        order: 1;
        left: auto;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
        text-align: center;
    }

    .card-copy h2 {
        font-size: 1.9rem;
    }

    .card-cta {
        width: calc(100% - 2.5rem);
        max-width: 170px;
        padding-inline: 1rem;
        text-align: center;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 0.9rem;
        align-items: start;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        width: 100%;
    }

    .stat-label {
        display: block;
        max-width: 12ch;
        margin-inline: auto;
    }

    .hero-cta .btn {
        min-width: min(220px, 100%);
        padding: 0.95rem 1.5rem;
        letter-spacing: 1.4px;
    }

    .mint-steps-grid {
        grid-template-columns: 1fr;
    }

    .video-showcase {
        grid-template-columns: 1fr;
    }

    .collection-grid {
        display: flex;
        flex-direction: column;
    }

    .collection-item.large,
    .collection-item.medium,
    .collection-item.small {
        height: auto;
    }

    .roadmap-card {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .footer-col:not(:first-child) {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 24px, 1400px);
    }

    .warn {
        font-size: 0.56rem;
        padding-inline: 0.55rem;
    }

    .stats-container {
        gap: 1rem 0.7rem;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: 0.78rem;
        letter-spacing: 0.8px;
    }

    .hero-cta .btn {
        width: 100%;
        min-width: 0;
    }

    .header-container {
        gap: 0.55rem;
        padding: 0.55rem 0;
    }

    .logo img {
        height: 28px;
        max-width: calc(100vw - 82px);
    }

    .logo-text span:first-child {
        font-size: 0.78rem;
    }

    .logo-text span:last-child {
        font-size: 0.62rem;
    }

    .mobile-menu {
        padding-top: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cards {
        margin-bottom: 0.75rem;
    }

    .hero-card {
        width: min(100%, 300px);
    }

    .card-inner {
        min-height: 440px;
    }

    .image-shell--hero {
        min-height: 240px;
    }

    .card-copy h2 {
        font-size: 1.7rem;
    }

    .card-cta {
        bottom: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .ctrl-btn {
        width: 52px;
    }

    .specs-table th,
    .specs-table td {
        padding: 0.8rem 0.9rem;
        font-size: 0.88rem;
    }

    .video-frame,
    .video-card video {
        min-height: 0;
    }

    .footer {
        padding: 1rem 0 1.25rem;
    }

    .footer-wrap {
        width: min(100% - 24px, 1400px);
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.25rem 1.15rem;
    }

    .footer-expand {
        padding: 1rem 1.25rem 1.15rem;
    }

    .footer-cities {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 0.6rem;
        margin-top: 1rem;
        padding: 0.15rem 0 0.35rem;
    }

    .footer-cities li {
        width: 100%;
    }

    .footer-cities li a {
        display: block;
        width: 100%;
        padding: 0.52rem 0.95rem;
        font-size: 0.8rem;
        text-align: center;
        background: linear-gradient(180deg, #ffffff 0%, #eef5fc 100%);
        box-shadow: 0 8px 18px rgba(47, 134, 219, 0.08);
    }
}
