:root {
    --ink: #070914;
    --ink-soft: #0d1020;
    --panel: #111526;
    --panel-light: #171c30;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f7f8fc;
    --muted: #a3aac0;
    --accent: #f04a37;
    --accent-dark: #b90122;
    --gold: #f6bd60;
    --mint: #6cf2cb;
    --blue: #75a8ff;
    --font-display: "Manrope", sans-serif;
    --font-body: "Manrope", sans-serif;
    --nav-height: 82px;
    --program-bar-height: 34px;
    --section-space: 132px;
    --radius-lg: 30px;
    --radius-md: 22px;
}

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

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + var(--program-bar-height) + 20px);
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--ink);
    font-family: var(--font-body);
    line-height: 1.7;
    word-break: normal;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-body);
}

::selection {
    color: #fff;
    background: var(--accent);
}

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

img {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 12px;
    z-index: 2000;
    padding: 10px 16px;
    color: #080a13;
    background: #fff;
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.program-bar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1040;
    height: var(--program-bar-height);
    display: flex;
    align-items: center;
    color: #e9ecf7;
    background: linear-gradient(90deg, #12162a 0%, #251428 48%, #12162a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.program-bar__divider {
    width: 1px;
    height: 12px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.22);
}

.status-dot {
    position: relative;
    display: inline-block;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: var(--mint);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(108, 242, 203, 0.09), 0 0 18px rgba(108, 242, 203, 0.72);
}

.status-dot::after {
    position: absolute;
    inset: -4px;
    content: "";
    border: 1px solid rgba(108, 242, 203, 0.45);
    border-radius: inherit;
    animation: statusPulse 2.4s ease-out infinite;
}

.program-is-upcoming .status-dot {
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(246, 189, 96, 0.09), 0 0 18px rgba(246, 189, 96, 0.72);
}

.program-is-complete .status-dot {
    background: #8f96aa;
    box-shadow: none;
}

.program-is-complete .status-dot::after {
    animation: none;
}

.intro-navbar {
    top: var(--program-bar-height);
    z-index: 1035;
    min-height: var(--nav-height);
    padding: 14px 0;
    background: linear-gradient(180deg, rgba(5, 7, 17, 0.84), rgba(5, 7, 17, 0));
    border-bottom: 1px solid transparent;
    transition: min-height 0.35s ease, padding 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.intro-navbar.is-scrolled {
    min-height: 70px;
    padding: 8px 0;
    background: rgba(7, 9, 20, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.intro-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.intro-brand__mark {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(240, 74, 55, 0.2), rgba(117, 168, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
}

.intro-brand__mark::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 48%);
}

.intro-brand__mark img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.intro-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.intro-brand__text strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.intro-brand__text small {
    margin-top: 6px;
    color: #858da6;
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.28em;
}

.intro-navbar .navbar-nav {
    gap: 4px;
}

.intro-navbar .nav-link {
    position: relative;
    padding: 12px 13px !important;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.intro-navbar .nav-link::after {
    position: absolute;
    right: 13px;
    bottom: 5px;
    left: 13px;
    height: 1px;
    content: "";
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.intro-navbar .nav-link:hover,
.intro-navbar .nav-link:focus,
.intro-navbar .nav-link.active {
    color: #fff;
}

.intro-navbar .nav-link:hover::after,
.intro-navbar .nav-link:focus::after,
.intro-navbar .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.intro-navbar .nav-link--external i {
    margin-left: 2px;
    font-size: 10px;
}

.intro-navbar .navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    line-height: 1;
    border-color: rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    box-shadow: none;
}

.intro-navbar .navbar-toggler-icon {
    display: block;
    margin: 0;
}

.intro-navbar .navbar-toggler:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.btn-myoffice,
.btn-accent,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-myoffice {
    min-height: 46px;
    padding: 11px 21px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-myoffice:hover,
.btn-myoffice:focus {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(240, 74, 55, 0.24);
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-bottom: 84px;
    background:
        radial-gradient(circle at 75% 26%, rgba(93, 68, 203, 0.17), transparent 29%),
        radial-gradient(circle at 22% 14%, rgba(240, 74, 55, 0.12), transparent 26%),
        linear-gradient(180deg, #050711 0%, #080a16 68%, #0a0d19 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

.hero-grid::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(115deg, transparent 0 48%, rgba(240, 74, 55, 0.08) 48.2% 48.35%, transparent 48.55% 100%);
}

.hero-glow {
    position: absolute;
    z-index: -1;
    width: 420px;
    height: 420px;
    pointer-events: none;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.22;
}

.hero-glow--one {
    top: 21%;
    right: -220px;
    background: #754df4;
}

.hero-glow--two {
    bottom: 5%;
    left: -260px;
    background: #f04a37;
}

.hero-swiper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: min(900px, 100svh);
    min-height: 800px;
}

.hero-slide {
    display: flex;
    align-items: center;
    min-height: 800px;
    padding: calc(var(--nav-height) + var(--program-bar-height) + 90px) 0 150px;
}

.hero-container {
    position: relative;
    z-index: 2;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.eyebrow::before {
    width: 26px;
    height: 1px;
    content: "";
    background: currentColor;
}

.hero-title {
    max-width: 820px;
    margin: 24px 0 24px;
    color: #f8f9ff;
    font-family: var(--font-display);
    font-size: clamp(58px, 7vw, 104px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-title span,
.section-heading h2 span,
.access-panel h2 span {
    color: transparent;
    background: linear-gradient(105deg, #fff 8%, #f0b98a 44%, #f04a37 96%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-title--sub {
    font-size: clamp(48px, 5.8vw, 82px);
    line-height: 1.04;
}

.hero-description {
    max-width: 660px;
    margin: 0;
    color: #aab1c6;
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 400;
    line-height: 1.9;
}

.hero-description strong {
    color: #fff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.btn-accent,
.btn-ghost {
    min-height: 54px;
    padding: 15px 28px;
}

.btn-accent {
    color: #fff;
    background: linear-gradient(135deg, #f35c44, #d62925 58%, #ad001e);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 42px rgba(214, 41, 37, 0.22);
}

.btn-accent:hover,
.btn-accent:focus {
    color: #fff;
    box-shadow: 0 20px 48px rgba(240, 74, 55, 0.36);
    transform: translateY(-3px);
}

.btn-ghost {
    color: #f2f4fb;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover,
.btn-ghost:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 27px 0 0;
    color: #707991;
    font-size: 11px;
}

.hero-note i {
    margin-top: 1px;
    color: var(--mint);
    font-size: 14px;
}

.coin-stage {
    position: relative;
    width: min(100%, 540px);
    aspect-ratio: 1;
    margin-left: auto;
    transform-style: preserve-3d;
    transition: transform 0.22s ease-out;
}

.coin-stage::before {
    position: absolute;
    inset: 14%;
    content: "";
    background: radial-gradient(circle, rgba(240, 74, 55, 0.22), rgba(102, 72, 239, 0.13) 46%, transparent 70%);
    filter: blur(24px);
    border-radius: 50%;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.orbit--outer {
    width: 90%;
    height: 54%;
    transform: translate(-50%, -50%) rotate(-18deg);
    animation: orbitFloat 7s ease-in-out infinite;
}

.orbit--inner {
    width: 68%;
    height: 68%;
    transform: translate(-50%, -50%) rotate(58deg);
    animation: orbitFloatAlt 8s ease-in-out infinite;
}

.orbit span {
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    background: var(--mint);
    border-radius: 50%;
    box-shadow: 0 0 22px var(--mint);
}

.orbit--inner span {
    top: 12%;
    right: 8%;
    left: auto;
    background: var(--accent);
    box-shadow: 0 0 22px var(--accent);
}

.xp-coin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210px;
    height: 210px;
    transform: translate(-50%, -50%);
    animation: logoFloat 5.5s ease-in-out infinite;
}

.xp-coin > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 32px rgba(217, 0, 47, 0.28));
}

.float-card {
    position: absolute;
    z-index: 3;
    padding: 18px 20px;
    background: rgba(17, 21, 38, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.float-card--rate {
    top: 17%;
    right: -2%;
    min-width: 185px;
}

.float-card--rate span {
    display: block;
    color: #7e879e;
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.float-card--rate strong {
    display: block;
    margin-top: 2px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.float-card--period {
    bottom: 16%;
    left: 2%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #dfe3f0;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.float-card--period i {
    color: var(--accent);
}

.date-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 70px 20px;
}

.date-card {
    position: relative;
    width: 205px;
    padding: 28px 25px 25px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.date-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle at 20% 10%, rgba(240, 74, 55, 0.25), transparent 42%);
}

.date-card--end::before {
    background: radial-gradient(circle at 20% 10%, rgba(117, 168, 255, 0.28), transparent 42%);
}

.date-card > * {
    position: relative;
}

.date-card span {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.date-card--end span {
    color: var(--blue);
}

.date-card strong {
    display: block;
    margin: 12px 0 2px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 76px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.07em;
}

.date-card p {
    margin: 13px 0 0;
    color: #929ab0;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.date-connector {
    position: relative;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #596279;
}

.date-connector span {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.1));
}

.date-connector i {
    position: relative;
    padding: 7px;
    background: var(--ink-soft);
}

.location-stage {
    position: relative;
    height: 490px;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 48% 45%, rgba(240, 74, 55, 0.16), transparent 32%),
        #0b0e1b;
    background-size: 42px 42px, 42px 42px, auto, auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.location-stage::after {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle, transparent 0 42%, rgba(7, 9, 20, 0.76) 84%);
}

.location-stage__rings {
    position: absolute;
    top: 47%;
    left: 50%;
    z-index: 1;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(240, 74, 55, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.location-stage__rings::before,
.location-stage__rings::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    border: 1px solid rgba(240, 74, 55, 0.18);
    border-radius: inherit;
    transform: translate(-50%, -50%);
}

.location-stage__rings::before {
    width: 160px;
    height: 160px;
}

.location-stage__rings::after {
    width: 75px;
    height: 75px;
}

.location-pin {
    position: absolute;
    top: 47%;
    left: 50%;
    z-index: 3;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #f55f48, #b80023);
    border: 6px solid rgba(255, 255, 255, 0.1);
    border-radius: 50% 50% 50% 12px;
    box-shadow: 0 18px 44px rgba(240, 74, 55, 0.35);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.location-pin i {
    font-size: 23px;
    transform: rotate(45deg);
}

.location-stage__country {
    position: absolute;
    top: 14px;
    right: 28px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.025);
    font-family: var(--font-display);
    font-size: 102px;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.location-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 4;
    padding: 20px 22px;
    background: rgba(13, 16, 32, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.location-card small {
    display: block;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.location-card strong {
    display: block;
    margin-top: 5px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
}

.location-card span {
    display: block;
    margin-top: 3px;
    color: #81899f;
    font-size: 11px;
}

.hero-slider-ui {
    position: absolute;
    right: 0;
    bottom: 120px;
    left: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.hero-pagination .swiper-pagination-bullet {
    width: 22px;
    height: 3px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 0;
    opacity: 1;
    transition: width 0.3s ease, background 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 62px;
    background: var(--accent);
}

.hero-navigation,
.product-navigation {
    display: flex;
    gap: 8px;
    pointer-events: auto;
}

.hero-navigation button,
.product-navigation button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-navigation button:hover,
.hero-navigation button:focus-visible,
.product-navigation button:hover,
.product-navigation button:focus-visible {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
    outline: none;
    transform: translateY(-2px);
}

.hero-facts-wrap {
    position: relative;
    z-index: 7;
    margin-top: -72px;
}

.hero-facts {
    display: grid;
    grid-template-columns: 0.8fr 1.35fr 1fr;
    overflow: hidden;
    background: rgba(16, 20, 36, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-fact {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-fact:last-child {
    border-right: 0;
}

.hero-fact > span {
    color: #717a92;
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.hero-fact > strong {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 7px;
    color: #f5f7ff;
    font-family: var(--font-display);
    font-size: clamp(16px, 1.7vw, 23px);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.hero-fact:first-child > strong {
    color: #fff;
    font-size: 34px;
}

.hero-fact strong small {
    color: var(--accent);
    font-size: 18px;
}

.hero-fact strong i:not(.status-dot) {
    color: #5d657a;
    font-size: 13px;
}

.hero-fact--status > strong {
    font-size: 14px;
    letter-spacing: 0.05em;
}

.section-space {
    padding: var(--section-space) 0;
}

.program-section {
    position: relative;
    overflow: hidden;
    background: #090c18;
}

.program-section::before {
    position: absolute;
    top: -220px;
    right: -180px;
    width: 520px;
    height: 520px;
    content: "";
    pointer-events: none;
    background: rgba(117, 168, 255, 0.08);
    filter: blur(120px);
    border-radius: 50%;
}

.section-heading {
    max-width: 720px;
}

.section-heading h2,
.access-panel h2 {
    margin: 20px 0 24px;
    color: #f6f7fc;
    font-family: var(--font-display);
    font-size: clamp(38px, 4.8vw, 66px);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.055em;
}

.section-heading p {
    max-width: 640px;
    margin: 0;
    color: #929aaf;
    font-size: 15px;
    line-height: 1.95;
}

.program-links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
}

.program-links a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #e8eaf2;
    font-size: 12px;
    font-weight: 700;
    transition: color 0.2s ease, gap 0.2s ease;
}

.program-links a i,
.text-link i {
    color: var(--accent);
}

.program-links a:hover,
.program-links a:focus,
.text-link:hover,
.text-link:focus {
    gap: 13px;
    color: var(--accent);
}

.program-copy .section-heading {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.program-copy .section-heading p {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.program-copy .program-links {
    justify-content: center;
    gap: 14px;
}

.program-copy .program-link {
    min-width: 220px;
    min-height: 56px;
    justify-content: center;
    padding: 14px 24px;
    color: #fff;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    font-size: 12px;
    letter-spacing: 0.025em;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
    transition: color 0.2s ease, gap 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.program-copy .program-link--primary {
    background: linear-gradient(120deg, #f04a37, #d9002f);
    border-color: rgba(255, 112, 92, 0.72);
    box-shadow: 0 16px 38px rgba(218, 19, 45, 0.22);
}

.program-copy .program-link--primary i {
    color: #fff;
}

.program-copy .program-link--secondary {
    background: rgba(17, 21, 38, 0.72);
}

.program-copy .program-link:hover,
.program-copy .program-link:focus-visible {
    gap: 12px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
    outline: none;
    transform: translateY(-2px);
}

.program-copy .program-link--primary:hover,
.program-copy .program-link--primary:focus-visible {
    border-color: rgba(255, 156, 139, 0.92);
    box-shadow: 0 20px 46px rgba(218, 19, 45, 0.32);
}

.program-visual {
    position: relative;
    min-height: 445px;
    padding: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(117, 168, 255, 0.15), transparent 34%),
        radial-gradient(circle at 10% 90%, rgba(240, 74, 55, 0.2), transparent 42%),
        linear-gradient(145deg, #161a2c, #0b0e1b);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-lg);
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.33);
}

.program-visual::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 45px 45px;
    mask-image: linear-gradient(135deg, #000, transparent 75%);
    -webkit-mask-image: linear-gradient(135deg, #000, transparent 75%);
}

.program-visual__top,
.program-visual__center,
.program-visual__bottom {
    position: relative;
    z-index: 2;
}

.program-visual__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #767f97;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.program-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mint);
}

.program-live i {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 13px currentColor;
}

.program-visual__center {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 72px 0 62px;
}

.program-coin {
    width: 124px;
    height: 124px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #f4d081, #9c632d);
    border: 8px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 0 28px rgba(75, 39, 13, 0.42);
}

.program-coin img {
    width: 72px;
    height: 72px;
}

.program-visual__center small {
    display: block;
    color: #7c849b;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.program-visual__center small i {
    margin: 0 4px;
    color: var(--accent);
}

.program-visual__center strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 70px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.07em;
}

.program-visual__center .program-rate-pair {
    font-size: clamp(42px, 4.6vw, 62px);
    letter-spacing: -0.075em;
    white-space: nowrap;
}

.program-visual__bottom {
    display: grid;
    grid-template-columns: 1.25fr 0.65fr 1fr;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.program-visual__bottom div {
    padding: 0 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.program-visual__bottom div:first-child {
    padding-left: 0;
}

.program-visual__bottom div:last-child {
    padding-right: 0;
    border-right: 0;
}

.program-visual__bottom span,
.program-visual__bottom strong {
    display: block;
}

.program-visual__bottom span {
    color: #69728a;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.program-visual__bottom strong {
    margin-top: 5px;
    color: #dfe3ee;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
}

.program-visual__shine {
    position: absolute;
    top: -45%;
    right: -24%;
    width: 210px;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.035), transparent);
    transform: rotate(25deg);
}

.products-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(9, 12, 24, 0.94), rgba(6, 8, 17, 0.97)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, 80px 80px;
}

.section-topline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 56px;
}

.product-navigation button {
    width: 50px;
    height: 50px;
    background: #111526;
}

.product-swiper {
    overflow: visible;
    padding: 2px 0 28px;
}

.program-card {
    position: relative;
    height: auto;
    min-height: 405px;
    display: flex;
    flex-direction: column;
    padding: 31px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card::before {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    content: "";
    background: rgba(117, 168, 255, 0.07);
    filter: blur(35px);
    border-radius: 50%;
}

.program-card--featured {
    background:
        radial-gradient(circle at 86% 15%, rgba(240, 74, 55, 0.2), transparent 38%),
        linear-gradient(150deg, #24151f, #111526 62%, #0d1020);
    border-color: rgba(240, 74, 55, 0.3);
}

.program-card:hover {
    border-color: rgba(255, 255, 255, 0.23);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.24);
    transform: translateY(-8px);
}

.program-card__index {
    position: absolute;
    top: 26px;
    right: 28px;
    color: rgba(255, 255, 255, 0.1);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

.program-card__icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
}

.program-card__icon i {
    font-size: 27px;
}

.program-card__icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.program-card__label {
    color: #737b92;
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.program-card h3 {
    margin: 8px 0 15px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 650;
    letter-spacing: -0.045em;
}

.program-card .program-card__rate-pair {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    white-space: nowrap;
}

.program-card__rate-pair i {
    color: var(--accent);
    font-size: 15px;
}

.program-card p {
    margin: 0 0 24px;
    color: #8d95aa;
    font-size: 13px;
    line-height: 1.85;
}

.program-card a,
.program-card__meta {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #dfe3ef;
    font-size: 11px;
    font-weight: 700;
    transition: color 0.2s ease, gap 0.2s ease;
}

.program-card a i {
    color: var(--accent);
}

.program-card a:hover,
.program-card a:focus {
    gap: 12px;
    color: var(--accent);
}

.program-card__meta {
    color: #5f687e;
    font-family: var(--font-display);
    font-size: 8px;
    letter-spacing: 0.16em;
}

.product-pagination {
    position: static !important;
    display: none;
    margin-top: 20px;
    text-align: center;
}

.product-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 5px !important;
    background: #677087;
    opacity: 0.55;
}

.product-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--accent);
    border-radius: 999px;
    opacity: 1;
}

.timeline-section {
    position: relative;
    background:
        radial-gradient(circle at 0 55%, rgba(117, 168, 255, 0.08), transparent 30%),
        #0a0d19;
}

.timeline-status {
    padding: 10px 0 14px 34px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline-status > span {
    display: block;
    color: var(--mint);
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.timeline-status strong {
    display: inline-block;
    margin-top: 7px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 62px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.07em;
}

.timeline-status small {
    display: inline-block;
    margin-left: 9px;
    color: #6f7890;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.timeline-panel {
    margin-top: 70px;
    padding: 42px 44px 38px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.timeline-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    color: #707991;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.timeline-progress-meta strong {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0;
}

.timeline-track {
    position: relative;
    height: 5px;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 999px;
}

.timeline-track__fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: linear-gradient(90deg, #b80023, #f04a37 52%, #f6bd60);
    border-radius: inherit;
    box-shadow: 0 0 22px rgba(240, 74, 55, 0.35);
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-track__pulse {
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 4px solid var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(240, 74, 55, 0.11), 0 0 28px rgba(240, 74, 55, 0.6);
    transform: translate(-50%, -50%);
    transition: left 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-dates {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 34px;
}

.timeline-date span,
.timeline-date strong,
.timeline-date small {
    display: block;
}

.timeline-date span {
    color: #6c758d;
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.timeline-date strong {
    margin-top: 5px;
    color: #f0f2f9;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.timeline-date small {
    margin-top: 4px;
    color: #525b70;
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.timeline-date--end {
    text-align: right;
}

.timeline-now {
    position: absolute;
    top: -50px;
    left: 0;
    transform: translateX(-50%);
    transition: left 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-now span {
    display: block;
    padding: 3px 8px;
    color: var(--accent);
    background: rgba(240, 74, 55, 0.09);
    border: 1px solid rgba(240, 74, 55, 0.18);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.rate-schedule {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: 18px;
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rate-schedule__period {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 0;
    padding: 20px 22px;
    background: rgba(117, 168, 255, 0.055);
    border: 1px solid rgba(117, 168, 255, 0.14);
    border-radius: 17px;
}

.rate-schedule__period--primary {
    background: rgba(240, 74, 55, 0.07);
    border-color: rgba(240, 74, 55, 0.18);
}

.rate-schedule__period > div {
    display: flex;
    align-items: baseline;
    gap: 13px;
}

.rate-schedule__period span,
.rate-schedule__period small {
    color: #747d94;
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.rate-schedule__period strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.055em;
}

.rate-schedule__period--primary strong {
    color: #ff7466;
}

.rate-schedule__period small {
    flex: 0 0 auto;
    color: #a1a8bb;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.rate-schedule__arrow {
    display: grid;
    place-items: center;
    color: #596278;
    font-size: 15px;
}

.access-section {
    padding-top: 20px;
    background: #0a0d19;
}

.access-panel {
    position: relative;
    padding: 70px 74px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 20%, rgba(246, 189, 96, 0.16), transparent 29%),
        radial-gradient(circle at 10% 95%, rgba(240, 74, 55, 0.21), transparent 40%),
        linear-gradient(125deg, #22121c 0%, #171527 48%, #111b2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 34px;
    box-shadow: 0 42px 100px rgba(0, 0, 0, 0.34);
}

.access-panel__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.24;
    background-image:
        linear-gradient(30deg, transparent 48%, rgba(255, 255, 255, 0.07) 49%, transparent 50%),
        linear-gradient(150deg, transparent 48%, rgba(255, 255, 255, 0.055) 49%, transparent 50%);
    background-size: 120px 120px;
}

.access-panel h2 {
    margin-bottom: 14px;
}

.access-panel p {
    margin: 0;
    color: #a0a7ba;
    font-size: 14px;
}

.btn-accent--large {
    min-height: 62px;
    padding: 18px 30px;
    white-space: nowrap;
}

.company-section {
    background: #080b16;
}

.company-section .text-link {
    margin-top: 34px;
}

.company-card {
    position: relative;
    min-height: 330px;
    display: flex;
    gap: 27px;
    margin: 0;
    padding: 45px;
    overflow: hidden;
    font-style: normal;
    background: linear-gradient(145deg, #14182a, #0d101e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.company-card::after {
    position: absolute;
    right: -110px;
    bottom: -160px;
    width: 320px;
    height: 320px;
    content: "";
    background: rgba(240, 74, 55, 0.12);
    filter: blur(65px);
    border-radius: 50%;
}

.company-card__icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    flex: 0 0 62px;
    color: var(--accent);
    background: rgba(240, 74, 55, 0.08);
    border: 1px solid rgba(240, 74, 55, 0.18);
    border-radius: 18px;
}

.company-card__icon i {
    font-size: 26px;
}

.company-card__content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.company-card__content span {
    display: block;
    color: #666f87;
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.company-card__content strong {
    display: block;
    margin-top: 7px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.company-card__content hr {
    margin: 26px 0;
    border-color: rgba(255, 255, 255, 0.11);
    opacity: 1;
}

.company-card__content p {
    margin: 7px 0 0;
    color: #c1c6d5;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
}

.company-card__country {
    position: absolute;
    right: 20px;
    bottom: -26px;
    color: rgba(255, 255, 255, 0.025);
    font-family: var(--font-display);
    font-size: 150px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.1em;
}

.site-footer {
    padding: 70px 0 30px;
    background: #050710;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.intro-brand--footer .intro-brand__mark {
    width: 38px;
    height: 38px;
}

.intro-brand--footer .intro-brand__mark img {
    width: 31px;
    height: 31px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.footer-links a {
    color: #858da3;
    font-size: 11px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #fff;
}

.footer-disclosure {
    margin-top: 48px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
}

.footer-disclosure p {
    margin: 0;
    color: #646c81;
    font-size: 10px;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    color: #4f576b;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.04em;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(17, 21, 38, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    background: var(--accent);
    outline: none;
}

.noscript-message {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2000;
    padding: 14px 18px;
    color: #fff;
    background: #a8001f;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .swiper-slide-active .hero-copy .reveal:nth-child(1) {
    transition-delay: 0.08s;
}

.js .swiper-slide-active .hero-copy .reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.js .swiper-slide-active .hero-copy .reveal:nth-child(3) {
    transition-delay: 0.22s;
}

.js .swiper-slide-active .hero-copy .reveal:nth-child(4),
.js .swiper-slide-active .hero-copy .reveal:nth-child(5) {
    transition-delay: 0.29s;
}

@keyframes statusPulse {
    0% { opacity: 0.8; transform: scale(0.72); }
    75%, 100% { opacity: 0; transform: scale(1.65); }
}

@keyframes coinFloat {
    0%, 100% { transform: translate(-50%, -50%) rotateY(-12deg) rotateX(9deg) translateY(0); }
    50% { transform: translate(-50%, -50%) rotateY(-8deg) rotateX(6deg) translateY(-16px); }
}

@keyframes logoFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0) scale(1); }
    50% { transform: translate(-50%, -50%) translateY(-14px) scale(1.025); }
}

@keyframes coinShine {
    0%, 35% { left: -50%; opacity: 0; }
    48% { opacity: 0.75; }
    67%, 100% { left: 115%; opacity: 0; }
}

@keyframes orbitFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(-18deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(-12deg) scale(1.025); }
}

@keyframes orbitFloatAlt {
    0%, 100% { transform: translate(-50%, -50%) rotate(58deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(66deg) scale(0.98); }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 1199.98px) {
    :root {
        --section-space: 112px;
    }

    .intro-navbar .nav-link {
        padding-right: 9px !important;
        padding-left: 9px !important;
        font-size: 12px;
    }

    .hero-title {
        font-size: clamp(56px, 7.4vw, 86px);
    }

    .coin-stage {
        width: 475px;
    }

    .xp-coin {
        width: 185px;
        height: 185px;
    }

    .program-visual__bottom strong {
        font-size: 10px;
    }

    .access-panel {
        padding: 62px 58px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --nav-height: 72px;
        --section-space: 100px;
    }

    .intro-navbar {
        min-height: var(--nav-height);
        background: rgba(7, 9, 20, 0.88);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .intro-navbar .navbar-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .intro-navbar .navbar-collapse {
        max-height: calc(100svh - var(--nav-height) - var(--program-bar-height) - 20px);
        margin-top: 12px;
        padding: 16px;
        overflow-y: auto;
        background: rgba(14, 17, 31, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    }

    .intro-navbar .navbar-nav {
        align-items: stretch !important;
    }

    .intro-navbar .nav-link {
        padding: 11px 9px !important;
    }

    .intro-navbar .nav-link::after {
        right: auto;
        bottom: 5px;
        left: 9px;
        width: 28px;
    }

    .intro-navbar .btn-myoffice {
        width: 100%;
        margin-top: 10px;
    }

    .hero-swiper {
        height: auto;
        min-height: 860px;
    }

    .hero-slide {
        min-height: 860px;
        padding-top: calc(var(--nav-height) + var(--program-bar-height) + 90px);
        padding-bottom: 155px;
    }

    .hero-slide--period,
    .hero-slide--company {
        min-height: 1010px;
    }

    .hero-copy--company {
        max-width: 680px;
    }

    .date-stage {
        padding: 45px 0 0;
    }

    .location-stage {
        height: 380px;
        margin-top: 10px;
    }

    .hero-slider-ui {
        bottom: 104px;
    }

    .hero-facts-wrap {
        margin-top: -56px;
    }

    .hero-facts {
        grid-template-columns: 0.7fr 1.35fr 1fr;
    }

    .hero-fact {
        min-height: 100px;
        padding: 18px 20px;
    }

    .hero-fact > strong {
        font-size: 16px;
    }

    .hero-fact:first-child > strong {
        font-size: 29px;
    }

    .program-visual {
        margin-top: 10px;
    }

    .timeline-status {
        padding-left: 0;
        border-left: 0;
    }

    .access-panel {
        padding: 55px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --program-bar-height: 32px;
        --section-space: 84px;
    }

    .program-bar {
        font-size: 8px;
        letter-spacing: 0.1em;
    }

    .program-bar__divider {
        margin: 0 3px;
    }

    .intro-brand__mark {
        width: 40px;
        height: 40px;
    }

    .intro-brand__mark img {
        width: 31px;
        height: 31px;
    }

    .hero-section {
        padding-bottom: 70px;
    }

    .hero-swiper {
        min-height: 805px;
    }

    .hero-slide {
        min-height: 805px;
        padding-top: 160px;
        padding-bottom: 130px;
    }

    .hero-slide--period,
    .hero-slide--company {
        min-height: 960px;
    }

    .hero-title,
    .hero-title--sub {
        margin-top: 18px;
        font-size: clamp(44px, 13.6vw, 66px);
        line-height: 1.02;
        letter-spacing: -0.055em;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.85;
    }

    .hero-actions {
        margin-top: 27px;
    }

    .hero-actions .btn-accent,
    .hero-actions .btn-ghost {
        min-height: 50px;
        padding: 13px 21px;
        font-size: 10px;
    }

    .hero-note {
        font-size: 10px;
        line-height: 1.7;
    }

    .date-stage {
        gap: 10px;
    }

    .date-card {
        width: 155px;
        padding: 22px 15px 20px;
        border-radius: 20px;
    }

    .date-card strong {
        font-size: 60px;
    }

    .date-connector {
        width: 35px;
    }

    .location-stage {
        height: 350px;
    }

    .hero-slider-ui {
        bottom: 78px;
    }

    .hero-navigation button {
        width: 42px;
        height: 42px;
    }

    .hero-facts-wrap {
        margin-top: -34px;
    }

    .hero-facts {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .hero-fact {
        min-height: 86px;
        padding: 16px 21px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-fact:last-child {
        border-bottom: 0;
    }

    .hero-fact > strong,
    .hero-fact--status > strong {
        font-size: 15px;
    }

    .hero-fact:first-child > strong {
        font-size: 27px;
    }

    .section-heading h2,
    .access-panel h2 {
        margin: 16px 0 19px;
        font-size: clamp(35px, 10vw, 49px);
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.85;
    }

    .program-links {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .program-copy .program-links {
        align-items: center;
    }

    .program-copy .program-link {
        width: 100%;
        max-width: 340px;
    }

    .program-visual {
        min-height: 390px;
        padding: 25px;
        border-radius: 24px;
    }

    .program-visual__center {
        gap: 18px;
        margin: 62px 0 54px;
    }

    .program-coin {
        width: 98px;
        height: 98px;
    }

    .program-coin img {
        width: 59px;
        height: 59px;
    }

    .program-visual__center strong {
        font-size: 58px;
    }

    .program-visual__center .program-rate-pair {
        font-size: 42px;
    }

    .program-visual__bottom {
        grid-template-columns: 1fr 0.55fr 1fr;
    }

    .program-visual__bottom div {
        padding: 0 10px;
    }

    .program-visual__bottom strong {
        font-size: 8px;
    }

    .section-topline {
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .product-navigation {
        display: none;
    }

    .product-pagination {
        display: block;
    }

    .program-card {
        min-height: 375px;
        padding: 27px;
    }

    .program-card__icon {
        margin-bottom: 35px;
    }

    .timeline-status strong {
        font-size: 54px;
    }

    .timeline-panel {
        margin-top: 48px;
        padding: 32px 24px 30px;
        border-radius: 23px;
    }

    .timeline-date strong {
        font-size: 17px;
    }

    .timeline-date small {
        display: none;
    }

    .rate-schedule {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 30px;
        padding-top: 24px;
    }

    .rate-schedule__arrow {
        height: 18px;
        transform: rotate(90deg);
    }

    .access-section {
        padding-top: 0;
    }

    .access-panel {
        padding: 44px 28px;
        border-radius: 25px;
    }

    .access-panel .btn-accent--large {
        width: 100%;
        margin-top: 8px;
    }

    .company-card {
        min-height: auto;
        padding: 32px 26px;
        border-radius: 24px;
    }

    .company-card__icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .company-card__content strong {
        font-size: 22px;
    }

    .company-card__content p {
        font-size: 14px;
    }

    .footer-main,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        gap: 18px;
    }

    .footer-disclosure {
        margin-top: 35px;
    }
}

@media (max-width: 479.98px) {
    .program-bar__date {
        display: none;
    }

    .program-bar__divider {
        display: none;
    }

    .intro-brand__text strong {
        font-size: 11px;
    }

    .intro-brand__text small {
        font-size: 7px;
    }

    .hero-slide {
        padding-right: 2px;
        padding-left: 2px;
    }

    .hero-slide--period {
        min-height: 925px;
    }

    .hero-slide--company {
        min-height: 945px;
    }

    .hero-title,
    .hero-title--sub {
        font-size: clamp(40px, 13vw, 54px);
    }

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

    .hero-actions .btn-accent,
    .hero-actions .btn-ghost {
        width: 100%;
    }

    .date-card {
        width: 134px;
    }

    .date-card strong {
        font-size: 52px;
    }

    .date-card p {
        font-size: 10px;
    }

    .date-connector {
        width: 25px;
    }

    .location-stage {
        height: 330px;
    }

    .location-stage__rings {
        width: 205px;
        height: 205px;
    }

    .location-card {
        right: 14px;
        bottom: 14px;
        left: 14px;
        padding: 16px 17px;
    }

    .location-card strong {
        font-size: 17px;
    }

    .hero-navigation {
        display: none;
    }

    .program-visual {
        min-height: 365px;
        padding: 22px;
    }

    .program-visual__center {
        margin-top: 55px;
    }

    .program-coin {
        width: 82px;
        height: 82px;
        border-width: 6px;
    }

    .program-coin img {
        width: 48px;
        height: 48px;
    }

    .program-visual__center strong {
        font-size: 49px;
    }

    .program-visual__center .program-rate-pair {
        font-size: 34px;
    }

    .program-visual__bottom span {
        font-size: 6px;
    }

    .program-visual__bottom strong {
        font-size: 7px;
        word-break: break-word;
    }

    .program-card .program-card__rate-pair {
        gap: 8px;
        font-size: 30px;
    }

    .rate-schedule__period {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 18px;
    }

    .rate-schedule__period small {
        white-space: normal;
    }

    .timeline-progress-meta {
        font-size: 7px;
    }

    .timeline-date strong {
        font-size: 14px;
    }

    .timeline-date span {
        font-size: 7px;
    }

    .company-card {
        display: block;
    }

    .company-card__icon {
        margin-bottom: 24px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
