/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --saffron: #E8650A;
    --gold: #C9920A;
    --brass: #B8860B;
    --cream: #F5EDD6;
    --dark: #0D0B08;
    --maroon: #2A0A0A;
    --charcoal: #1A1208;
    --text-light: #F0E8D0;
    --text-muted: #C4A97A;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Urbanist", sans-serif;
    background: var(--dark);
    color: var(--text-light);
    overflow-x: hidden
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgb(13 11 8 / 84%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 101, 10, 0.2);
    padding: 0 2rem
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1rem
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border: 0;
    background: transparent;
    padding: 0.25rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-panel {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(232, 101, 10, 0.15);
}

.mobile-nav-panel a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.55rem 0;
}

.mobile-nav-panel.open {
    display: flex;
}

.nav-logo {
height: -webkit-fill-available;
padding: 10px 0;
}

.nav-logo img{
        height: 30px;
}

.nav-logo span {
    color: var(--gold)
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s
}

.nav-links a:hover {
    color: var(--saffron)
}

.nav-cta {
    background: var(--saffron);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    justify-content: center;
}

.nav-cta:hover {
    background: #d4580a
}

.nav-cta svg {
    animation: ticketFloat 3s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    transform-origin: center;
}

@keyframes ticketFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-3px) rotate(-15deg);
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 60% 40%,
            rgba(232, 101, 10, 0.15) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 10% 80%,
            rgba(201, 146, 10, 0.10) 0%,
            transparent 50%
        ),
        linear-gradient(
            rgba(0, 0, 0, 0.90),
            rgba(0, 0, 0, 0.85)
        ),
        url("../images/banner-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(232, 101, 10, 0.03) 60px, rgba(232, 101, 10, 0.03) 61px), repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(232, 101, 10, 0.03) 60px, rgba(232, 101, 10, 0.03) 61px)
}

.hero-content {
    position: relative;
    gap: 4rem;
    align-items: center;
    width: min(100%, 1400px);
}

.hero-wrap{
   display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow {
    font-family: "Urbanist", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-align: center;
}


.hero-short-title {
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 0.92;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 42px;
}

.hero-title {
   font-family: "Urbanist", sans-serif;
    font-weight: 900;
    font-size: 15rem;
    line-height: 0.92;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
}

.hero-title .line2 {
    color: var(--saffron);
}

.hero-short-title .line2 {
    color: var(--saffron);
    display: inline-block;
    height: 42px;
    display: flex;
    align-items: center;
}

#typing-word {
    display: inline-block;
    border-right: 3px solid var(--saffron);
    white-space: nowrap;
    overflow: hidden;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(232, 101, 10, 0.3);
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted)
}

.badge i {
    color: var(--saffron);
    font-size: 1rem
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--saffron);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
   font-family: "Urbanist", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem
}

.btn-primary:hover {
    background: #d4580a;
    transform: translateY(-1px)
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(245, 237, 214, 0.3);
    padding: 0.85rem 2rem;
   font-family: "Urbanist", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem
}

.btn-outline:hover {
    border-color: var(--saffron);
    color: var(--saffron)
}

/* MEDAL VISUAL */
.hero-medal {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.medal-container {
    position: relative;
    width: 340px;
    height: 400px
}

.medal-svg-wrap {
    animation: float 4s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-14px)
    }
}

/* STATS BAR */
.stats-bar {
    background: var(--maroon);
    border-top: 1px solid rgba(232, 101, 10, 0.2);
    border-bottom: 1px solid rgba(232, 101, 10, 0.2)
}

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 2.5rem 2rem
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(232, 101, 10, 0.15)
}

.stat-item:last-child {
    border-right: none
}

.stat-num {
   font-family: "Urbanist", sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--saffron);
    line-height: 1
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem
}

/* SECTION */
section {
    padding: 6rem 2rem
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto
}

.section-eyebrow {
   font-family: "Urbanist", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.section-eyebrow::before {
    content: '';
    width: 1.5rem;
    height: 2px;
    background: var(--saffron)
}

.section-title {
   font-family: "Urbanist", sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.section-title em {
    color: var(--saffron);
    font-style: normal
}

/* VIRTUAL BADGE */
.virtual-strip {
   background: rgba(232, 101, 10, 0.08);
    border: 1px solid rgba(232, 101, 10, 0.25);
    padding: 1rem 1.5rem;
    width: max-content;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.virtual-strip .vs-title{
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
}

.virtual-strip .vs-date{
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-align: center;
} 

.virtual-strip .vs-date sup{
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1.5rem;
} 

.virtual-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--saffron);
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.6;
        transform: scale(1.4)
    }
}

/* PREMIUM HOW IT WORKS CARDS */

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.how-card {
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    border-radius: 24px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.06) 0%,
        rgba(255,255,255,0.02) 100%
    );
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(.22,1,.36,1);
}

.how-card a{
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    fill: #fff;
}

.how-card:hover a{
    text-decoration: none;
    color: var(--saffron);
    fill: var(--saffron);
}


/* Large faded icon in top-right */
.how-card::after {
    font-family: "Urbanist", sans-serif;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: var(--saffron);
    opacity: 0.08;
    pointer-events: none;
}

/* Card 1 */
.how-card:nth-child(1)::after {
    content: "01";
}

/* Card 2 */
.how-card:nth-child(2)::after {
    content: "02";
}

/* Card 3 */
.how-card:nth-child(3)::after {
    content: "03";
}

/* glow effect */
.how-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(232,101,10,0.18),
            transparent 50%
        );
    opacity: 0;
    transition: opacity .5s ease;
}
.how-card::before,
.how-card::after {
    pointer-events: none;
}

.how-card:hover {
    transform: translateY(-10px);
    border-color: rgba(232,101,10,0.35);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.25),
        0 0 30px rgba(232,101,10,0.08);
}
.how-card:hover::before {
    opacity: 1;
}

.how-num {
    font-family: "Urbanist", sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;

    background: linear-gradient(
        180deg,
        rgba(232,101,10,0.8),
        rgba(232,101,10,0.08)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-icon {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.how-icon i {
    font-size: 2rem;
    color: var(--saffron);
}

.how-card h3 {
       font-family: "Urbanist", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.how-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Responsive */

@media (max-width: 991px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}



.app-icon {
    padding: 10px;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s cubic-bezier(.22,1,.36,1);
}

.how-card:hover .app-icon {
    opacity: 1;
    transform: translateY(0);
}

.how-card:hover .app-icon:nth-child(2) {
    transition-delay: 0.08s;
}

.app-icons{
    position: absolute;
    display: flex;
    right: 30px;
    bottom: 0;
    gap: 5px;
}


.app-icon {
    padding: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: #e8650a30;
}

.app-icon:hover {
    background: var(--saffron);
}

.app-icon svg {
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer;
    fill: #ffffff;
}

/* =========================
   PREMIUM ACTIVITIES
========================= */

.activity-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
    margin-top:3rem;
}

.activity-card{
    position:relative;
    overflow:hidden;

    padding:3rem;

    border-radius:32px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    transition:all .45s cubic-bezier(.22,1,.36,1);

    cursor:pointer;
}

/* numbers */

.activity-card::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .08;
    pointer-events: none;
}

/* Walk */
.activity-card:nth-child(1)::after{
    background-image:url("../images/walk.png");
}

/* Run */
.activity-card:nth-child(2)::after{
    background-image:url("../images/run.png");
}

/* Cycle */
.activity-card:nth-child(3)::after{
    background-image:url("../images/cycle.png");
}


.activity-card:hover::after{
    opacity:.15;
    transform:scale(1.05);
}

.activity-card::after{
    transition:all .4s ease;
}
/* hover glow */

.activity-card::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(232,101,10,.12),
        transparent 50%
    );

    opacity:0;
    transition:.4s;
}

.activity-card:hover::before{
    opacity:1;
}

/* selected card feel */

.activity-card:hover{
    transform:translateY(-8px);

    border-color:rgba(232,101,10,.35);

    box-shadow:
        0 20px 40px rgba(0,0,0,.25),
        0 0 0 1px rgba(232,101,10,.15);
}

/* icon */

.activity-icon{
    width:100px;
    height:100px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:2rem;

    transition:.4s;
}

.activity-icon img{
    width:100%;
    height:auto;
}

.activity-card:hover .activity-icon{
    transform:scale(1.08);
}

/* title */

.activity-card h3{
    font-family:"Urbanist",sans-serif;
    font-size:2rem;
    font-weight:800;

    margin-bottom:1rem;

    color:#fff;

    transition:.3s;
}

.activity-card:hover h3{
    color:var(--saffron);
}

/* text */

.activity-card p{
    color: #ffffff;
    line-height:1.5;
    font-size:.95rem;
    max-width:320px;
}

/* selected indicator */

.activity-card:hover{
    padding-left:3.5rem;
}

.activity-card:hover h3::before{
    content:"";
    position:absolute;
    left:-20px;
    top:50%;
    transform:translateY(-50%);

    width:8px;
    height:40px;

    border-radius:10px;

    background:var(--saffron);
}

.activity-card h3{
    position:relative;
}

@media(max-width:991px){

    .activity-grid{
        grid-template-columns:1fr;
    }

    .activity-card{
        padding:2rem;
    }

    .activity-card::after{
        font-size:6rem;
    }
}


  .route-section{
    background:var(--dark);
    position:relative;
    padding:1px 0;
  }
 
  .vari-milestones{
    margin:3rem auto;
    padding:2.25rem 2rem 2rem;
    border-radius:var(--radius-lg);
    position:relative;
    overflow:hidden;
 border-radius: 32px;
    background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }
 
  .vari-milestones::before{
    content:'';
    position:absolute;
    top:-130px;
    left:50%;
    width:520px;
    height:260px;
    transform:translateX(-50%);
    background:radial-gradient(ellipse at center, rgba(201,146,10,.12), transparent 70%);
    pointer-events:none;
  }
 
  /* header (unchanged from before) */
  .milestone-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:1rem;
    margin-bottom:1.4rem;
    position:relative;
    z-index:1;
  }
 
  .milestone-eyebrow{
    display:block;
    color:var(--gold);
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
  }
 
  .milestone-header h3{
    margin:.4rem 0 0;
    font-weight:600;
    font-size:1.6rem;
    color:var(--cream);
  }
 
  .journey-stat{ text-align:right; }
 
  .journey-stat strong{
    display:block;
    font-weight:600;
    font-size:1.45rem;
    color:var(--gold);
    font-variant-numeric:tabular-nums;
  }
 
  .journey-stat small{ color:var(--text-muted); font-size:.78rem; }
 
  .journey-progress{
    position:relative;
    z-index:1;
    height:4px;
    border-radius:4px;
    background:rgba(255,255,255,.08);
    margin-bottom:3.25rem;
    overflow:hidden;
  }
 
  .journey-progress-fill{
    position:absolute;
    inset:0;
    width:0%;
    border-radius:4px;
    background:linear-gradient(90deg, var(--saffron), var(--gold));
    box-shadow:0 0 12px rgba(201,146,10,.5);
    transition:width 1s cubic-bezier(.22,1,.36,1);
  }
 
  /* ---------- ROAD MAP ---------- */
 
  .road-viewport{
    position:relative;
    z-index:1;
    overflow-x:auto;
    overflow-y:hidden;
    padding:0 .25rem;
 
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
    mask-image:linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
 
    scrollbar-width:thin;
    scrollbar-color:rgba(201,146,10,.35) transparent;
  }
 
  .road-viewport::-webkit-scrollbar{ height:5px; }
  .road-viewport::-webkit-scrollbar-track{ background:transparent; }
  .road-viewport::-webkit-scrollbar-thumb{ background:rgba(201,146,10,.35); border-radius:4px; }
 
  .road-track{
    position:relative;
    height:230px;
  }
 
  /* the path itself */
  .road-segment{
    position:absolute;
    top:50%;
    height:3px;
    border-radius:2px;
    transform:translateY(-50%);
    background:repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 4px, transparent 4px 9px);
  }
 
  .road-segment.completed{
    background:var(--saffron);
    box-shadow:0 0 8px rgba(232,101,10,.4);
  }
 
  .road-segment.current{
    background:linear-gradient(90deg, var(--gold), rgba(201,146,10,.15));
    background-size:200% 100%;
    animation:roadShimmer 2.4s linear infinite;
  }
 
  @keyframes roadShimmer{
    0%{ background-position:0% 0; }
    100%{ background-position:-200% 0; }
  }
 
  /* distance tick, sits right on the path between two stops */
  .road-tick{
    position:absolute;
    top:50%;
    transform:translate(-50%, -210%);
    font-size:.75rem;
    color:var(--text-muted);
    white-space:nowrap;
    letter-spacing:.01em;
  }
 
  /* stop markers */
  .road-marker{
    position:absolute;
    top:50%;
    width:14px;
    height:14px;
    border-radius:50%;
    transform:translate(-50%, -50%);
    z-index:3;
    background:rgba(255,255,255,.18);
    transition:background .3s, box-shadow .3s;
  }
 
  .road-marker.completed{
    background:var(--saffron);
    box-shadow:0 0 12px rgba(232,101,10,.55);
  }
 
  .road-marker.current{
    width:16px;
    height:16px;
    background:#0d9c19;
    box-shadow:0 0 18px rgb(13 156 25 / 85%);
  }
 
  .road-marker.current::after{
    content:'';
    position:absolute;
    inset:-7px;
    border-radius:50%;
    border:2px solid #0d9c19;
    animation:pulseRing 2.2s ease-out infinite;
  }
 
  .road-marker.destination{
    width:18px;
    height:18px;
    background:var(--dark);
    border:2px solid #0d9c19;
    box-shadow:0 0 14px rgba(13, 156, 25, 0.7);
  }
 
  .road-marker.destination::after{
    content:'';
    position:absolute;
    inset:4px;
    border-radius:50%;
    background:var(--gold);
  }
 
  @keyframes pulseRing{
    0%{ transform:scale(.6); opacity:.85; }
    75%{ transform:scale(1.85); opacity:0; }
    100%{ opacity:0; }
  }
 
  /* label blocks, no card chrome — just type + a stem to the path */
  .road-label{
    position:absolute;
    width:128px;
    text-align:center;
    transform:translateX(-50%);
    opacity:0;
    animation:labelIn .5s ease forwards;
    animation-delay:var(--d, 0ms);
  }
 
  @keyframes labelIn{ to{ opacity:1; } }
 
  .road-label.top{ bottom:calc(50% + 26px); }
  .road-label.bottom{ top:calc(50% + 26px); }
 
  .road-label.top::after,
  .road-label.bottom::after{
    content:'';
    position:absolute;
    left:50%;
    width:1px;
    height:22px;
    background:rgba(255,255,255,.18);
  }
 
  .road-label.top::after{ bottom:-22px; }
  .road-label.bottom::after{ top:-22px; }
 
  .road-label.completed::after{ background:rgba(232,101,10,.45); }
  .road-label.current::after{ background:rgba(13, 156, 25, 0.7); }
  .road-label.destination::after{ background:rgba(201,146,10,.6); }
 
  .road-date{
    font-size:.8rem;
    color:var(--text-muted);
    margin-bottom:.2rem;
    font-weight: 500;
  }
 
  .road-place{
    font-weight:600;
    font-size:1rem;
    color:#fff;
    margin-bottom:.2rem;
    line-height:1.2;
  }
 
  .road-km{
    font-size:.72rem;
    color:var(--gold);
    font-weight:600;
    font-variant-numeric:tabular-nums;
  }
 
  .road-label.current .road-place{ color: #0d9c19; }
 
  .road-tag{
    display:block;
    margin-top:.15rem;
    font-size:.6rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--gold);
  }
 
  /* screen-reader-only accessible list, mirrors the visual road */
  .sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
  }
 
  @media (prefers-reduced-motion: reduce){
    .road-label, .road-marker.current::after, .road-segment.current{
      animation:none !important;
    }
    .road-label{ opacity:1; }
  }
 
  @media (max-width:640px){
    .vari-milestones{
      padding:1.5rem 1.25rem;
      margin:2rem auto;
      border-radius:20px;
    }
    .milestone-header{ flex-direction:column; align-items:flex-start; gap:.5rem; }
    .journey-stat{ text-align:left; }
    .milestone-header h3{ font-size:1.3rem; }
    .road-label{ width:104px; }
  }

.text-p{
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 1rem;
        line-height: 1.8;
}

.route-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

.route-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 101, 10, 0.15);
    border-radius: 6px;
    padding: 1.25rem;
    text-align: center
}

.route-stat-num {
   font-family: "Urbanist", sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--gold)
}

.route-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.2rem
}

.medal-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:420px;
}
.medal-left{
  border-right:1px solid rgba(201,146,10,0.15);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:48px 36px;
  gap:0;
  position:relative;
}
.medal-ring{
  width:410px;
  height:410px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  animation:floatUp 3.5s ease-in-out infinite;
}
.medal-ring::before{
  content:'';
  position:absolute;
  inset:8px;
  border-radius:50%;
  /* border:1px solid rgba(201, 147, 10, 0.416); */
}
.medal-inner{
  width:160px;
  height:160px;
  border-radius:50%;
  background:#C9920A;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.medal-inner::after{
  content:'';
  position:absolute;
  inset:6px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,0.2);
}
.medal-img-slot{
  width:160px;
  height:160px;
  border-radius:50%;
  background:#C9920A;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  position:relative;
  overflow:hidden;
}
.medal-img-slot img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;border-radius:50%;}
.slot-icon{font-size:28px;color:rgba(0,0,0,0.35);}
.slot-label{font-size:10px;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:rgba(0,0,0,0.35);}
@keyframes floatUp{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.view-tabs{
  display:flex;
  gap:4px;
  margin-top:24px;
}
.vtab{
  width:36px;
  height:4px;
  border-radius:2px;
  background:rgba(201,146,10,0.25);
  border:none;
  cursor:pointer;
  transition:background 0.2s;
  padding:0;
}
.vtab.active{background:#C9920A;}
.view-label{
  margin-top:12px;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:rgba(201,146,10,0.6);
}
.medal-right{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:48px 40px;
  gap:0;
}
.eyebrow-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:#C9920A;
  background:rgba(201,146,10,0.1);
  border:1px solid rgba(201,146,10,0.25);
  padding:5px 13px;
  border-radius:20px;
  margin-bottom:18px;
  width:fit-content;
}
.medal-title{
  font-size:clamp(26px,4vw,38px);
  font-weight:900;
  line-height:1.04;
  letter-spacing:-0.01em;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:6px;
}
.medal-title em{color:#C9920A;font-style:italic;}
.medal-sub{
  font-size:14px;
  color:rgba(255,255,255,0.48);
  font-family:'Barlow',sans-serif;
  line-height:1.6;
  margin-bottom:28px;
}
.features{list-style:none;margin-bottom:28px;}
.features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:11px 0;
  border-bottom:1px solid rgba(255,255,255,0.05);
  font-size:0.95rem;
  color:rgb(255, 255, 255);
  font-family:'Barlow',sans-serif;
  line-height:1.5;
}
.features li:last-child{border-bottom:none;}
.feat-dot{
  width:25px;height:25px;border-radius:50%;
  background:rgba(201,146,10,0.12);
  border:1px solid rgba(201,146,10,0.3);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:1px;
}
.feat-dot i{font-size:15px;color:#C9920A;}

.blessed-full{  
    border-top: 1px solid rgba(201, 146, 10, 0.15);
    padding: 40px 0 0;
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    align-items: center;
    gap: 40px;
}
.blessed-left{display:flex;flex-direction:column;}
.blessed-kicker{
  display:flex;
  align-items:center;
  gap:5px;
}
.kicker-line{width:28px;height:1.5px;background:#C9920A;}
.kicker-text{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:#C9920A;
}
.blessed-heading{
  font-size:clamp(22px,3.5vw,32px);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:0.02em;
  color:#fff;
  line-height:1.05;
}
.blessed-heading span{color:#C9920A;}
.blessed-desc{
  font-size:14px;
  color:rgba(255,255,255,0.48);
  font-family:'Barlow',sans-serif;
  line-height:1.65;
  max-width:460px;
}
.blessed-seal{
  width:96px;
  height:96px;
  border-radius:50%;
  border:1.5px solid rgba(201,146,10,0.4);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  gap:4px;
  position:relative;
}
.blessed-seal::before{
  content:'';
  position:absolute;
  inset:6px;
  border-radius:50%;
  border:1px solid rgba(201,146,10,0.2);
}
.seal-icon{font-size:26px;color:#C9920A;}
.seal-text{
  font-size:8.5px;
  font-weight:700;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:rgba(201,146,10,0.7);
  text-align:center;
  line-height:1.4;
  z-index:1;
}

.inscription-strip{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-top:1px solid rgba(201,146,10,0.12);
  border-bottom:1px solid rgba(201,146,10,0.12);
}
.insc-item{
  padding:18px 24px;
  border-right:1px solid rgba(201,146,10,0.12);
}
.insc-item:last-child{border-right:none;}
.insc-label{
  font-size:9.5px;
  font-weight:700;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:rgba(201,146,10,0.6);
  margin-bottom:6px;
}
.insc-val{
  font-size:13px;
  color:rgba(255,255,255,0.75);
  font-family:'Barlow',sans-serif;
  font-style:italic;
  line-height:1.5;
}

@media(max-width:620px){
  .medal-hero{grid-template-columns:1fr;}
  .medal-left{border-right:none;border-bottom:1px solid rgba(201,146,10,0.15);padding:36px 24px;}
  .medal-right{padding:32px 24px;}
  .blessed-full{grid-template-columns:1fr;padding:32px 24px;}
  .blessed-seal{display:none;}
  .inscription-strip{grid-template-columns:1fr;}
  .insc-item{border-right:none;border-bottom:1px solid rgba(201,146,10,0.12);}
  .insc-item:last-child{border-bottom:none;}
}

/* APP SECTION */
.app-section {
    background: var(--dark)
}



.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 1rem
}


.download-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-direction: row;
}

.download-btns .downlaod-app-btn {
    width: 100%;
    height: 80px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.download-btns .downlaod-app-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.app-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 700px;
    margin: auto;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    border-radius: 30px;
    transition: all .6s ease;
    transform: translate(-50%, -50%) scale(.8);
    opacity: 0;
}

/* Center Active */
.slide.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 3;
    box-shadow:
        0 30px 60px rgba(0,0,0,.35),
        0 0 40px rgba(255,255,255,.08);
}

/* Previous */
.slide.prev {
    transform: translate(-135%, -50%) scale(.82);
    opacity: .55;
    z-index: 2;
}

/* Next */
.slide.next {
    transform: translate(35%, -50%) scale(.82);
    opacity: .55;
    z-index: 2;
}


.dl-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--text-light)
}

.dl-btn:hover {
    border-color: var(--saffron);
    background: rgba(232, 101, 10, 0.08)
}

.dl-btn i {
    font-size: 1.8rem;
    color: var(--text-light)
}

.dl-btn-text small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase
}

.dl-btn-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600
}

.app-features {
    margin-top: 2rem
}

.app-feature {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.5rem
}

.app-feature i {
    color: var(--saffron);
    margin-top: 3px;
    flex-shrink: 0
}

.app-feature-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-muted)
}

.app-feature-text span {
    font-size: 0.95rem;
    color: #fff;
}

/* LEADERBOARD */
.lb-section {
    background: var(--charcoal)
}

.lb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem
}

.lb-filter {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 3px
}

.lb-filter-btn {
    padding: 0.4rem 0.9rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
    font-family: 'Barlow', sans-serif
}

.lb-filter-btn.active {
    background: var(--saffron);
    color: white
}

.lb-table {
    width: 100%;
    border-collapse: collapse
}

.lb-table thead tr {
    border-bottom: 1px solid rgba(232, 101, 10, 0.2)
}

.lb-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted)
}

.lb-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    vertical-align: middle
}

.lb-rank {
   font-family: "Urbanist", sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    width: 40px
}

.lb-rank.gold {
    color: #FFD700
}

.lb-rank.silver {
    color: #C0C0C0
}

.lb-rank.bronze {
    color: #CD7F32
}

.lb-rank.other {
    color: var(--text-muted)
}

.lb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(232, 101, 10, 0.15);
    border: 2px solid rgba(232, 101, 10, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--saffron);
    margin-right: 0.5rem
}

.lb-name strong {
    display: block;
    font-weight: 600
}

.lb-name span {
    font-size: 0.75rem;
    color: var(--text-muted)
}

.lb-city {
    font-size: 0.8rem;
    color: var(--text-muted)
}

.lb-km {
   font-family: "Urbanist", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold)
}

.lb-km span {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted)
}

.lb-streak {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(232, 101, 10, 0.1);
    padding: 3px 8px;
    border-radius: 2px;
    font-size: 0.75rem;
    color: var(--saffron);
    font-weight: 600
}

.lb-medal-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(201, 146, 10, 0.1);
    padding: 3px 8px;
    border-radius: 2px;
    font-size: 0.75rem;
    color: var(--gold)
}

.lb-top3 td {
    background: rgba(232, 101, 10, 0.04)
}


.booking-section{
    background:
        radial-gradient(circle at top,
            rgba(232,101,10,.15),
            transparent 40%),
        linear-gradient(135deg,#120d08,#1a1009);
}

/* ==========================
   TICKET CARD
========================== */

.ticket-card{
    position:relative;
    overflow:hidden;

    display:grid;
    grid-template-columns:2fr 0.1fr 1fr;
    gap:3rem;

    margin-top:3rem;
    /* padding:2rem 3.5rem; */

    border-radius:28px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    transition:.5s ease;

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);
}

.ticket-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 30px 90px rgba(0,0,0,.35),
        0 0 50px rgba(232,101,10,.15);
}

/* GOLD STRIP */

.ticket-card::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:5px;

    background:
        linear-gradient(
            90deg,
            #ff7a00,
            #ffb347,
            #fff3cf,
            #ff7a00
        );
}

.ticket-content{
    padding:2rem 3.5rem;
}

/* PERFORATED LINE */

/* .ticket-card::after{
    content:"";
    position:absolute;
    top:50%;
    right:28%;
    width:1px;
    height:75%;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,.25) 0 8px,
            transparent 8px 16px
        );
} */

/* TICKET HOLES */

.ticket-hole-left,
.ticket-hole-right{
    position:absolute;
    width:80px;
    height:80px;
    background:#120d08;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
}

.ticket-hole-left{
    left:-50px;
}

.ticket-hole-right{
    right:-50px;
}

/* STATUS */

.ticket-status{
    display:inline-flex;
    align-items:center;

        padding: .5rem 1rem;
    border-radius: 10px;

    background:rgba(232,101,10,.12);
    border:1px solid rgba(232,101,10,.25);

    color:#ffb347;

    font-size:.95rem;
    font-weight:700;
    letter-spacing:.12em;

    margin-bottom:1.2rem;
    gap: 5px;
}

/* TITLE */

.ticket-title{
    font-size:3.5rem;
    font-weight:800;
    color:white;
    margin-bottom:1.5rem;
}

.ticket-title sup{
    font-size:1rem;
    margin-bottom: 5px;
}

/* PASSILO */

.booking-partner{
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}


.booking-partner-logo{
width: 130px;
height: 100%;
}

.passilo-badge{
    padding:.9rem 1.4rem;

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.05)
        );

    border:1px solid rgba(255,255,255,.15);

    font-size:1.3rem;
    font-weight:800;
    font-family:"Urbanist",sans-serif;

    color:white;
}

.passilo-badge span{
    color:#ff9b35;
}

.partner-text{
    color:var(--text-muted);
}

.ticket-id{
    margin-bottom:2rem;

    color:rgba(255,255,255,.4);

    font-size:.8rem;
    letter-spacing:.25em;
}

/* FEATURES */

.booking-meta{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1rem;
}

.booking-meta-item{
      color: #ddd;
    font-size: .95rem;
    display: flex;
    gap: 5px;
    align-items: center;
}

.booking-meta-item svg{
    fill:var(--gold);
    margin-right:.5rem;
}

.ticket-description{
    margin-top:1.8rem;
    color:var(--text-muted);
    line-height:1.8;
    font-size: 0.95rem;
}

/* PRICE SIDE */

.ticket-price-card{
    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    padding: 2rem 3.5rem 2rem 0rem;
}

.limited-badge{
    position:absolute;
    top:20px;
    right:-55px;

    background:#ff7a00;
    color:white;

    padding:.45rem 4rem;

    transform:rotate(40deg);

    font-size:.7rem;
    font-weight:700;
    letter-spacing:.12em;
}

.price-from{
    color:var(--text-muted);
    text-transform:uppercase;
    letter-spacing:.15em;
    font-size:.75rem;
}

.price-amount{
font-size: 4rem;
    font-weight: 900;
    color: #ff9b35;
    line-height: 1;
    margin: .5rem 0;
    display: flex;
    gap: 5px;
    align-items: flex-end;
    
}

.price-amount small{
    font-size:2.5rem;
    font-weight: 300;
    color:#939393;
    line-height:1;
    margin:.5rem 0;
    text-decoration: line-through;
}

.price-note{
    color:var(--text-muted);
    margin-bottom:2rem;
}

.ticket-btn{
    width:100%;
    height:60px;

    border:none;
    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            #ff7a00,
            #ff9b35
        );

    color:white;
    font-weight:700;
    font-size:1rem;

    cursor:pointer;

    transition:.35s;
}

.ticket-btn:hover{
    transform:translateY(-3px);

    box-shadow:
        0 15px 40px rgba(255,122,0,.4);
}

.secure-note{
    margin-top:1rem;
    font-size:.8rem;
    color:var(--text-muted);
}

/* MOBILE */

@media(max-width:992px){

    .ticket-card{
        grid-template-columns:1fr;
        gap:2rem;
        padding:2rem;
    }

    .ticket-card::after{
        display:none;
    }

    .booking-meta{
        grid-template-columns:1fr;
    }

    .price-amount{
        font-size:3rem;
    }

    .limited-badge{
        right:-45px;
    }
}/* PREMIUM FOOTER */
.premium-footer{
    position:relative;
    padding:40px 20px 40px;
    text-align:center;
    background:
    radial-gradient(circle at top center, rgba(232, 101, 10, .18), transparent 35%), linear-gradient(180deg, #0d0b08 0%, #120404 100%);
    border-top:1px solid rgba(232,101,10,.2);
    overflow:hidden;
}

.premium-footer::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    height:2px;
    background:linear-gradient(
        90deg,
        transparent,
        var(--saffron),
        transparent
    );
}

.footer-content{
    margin:auto;
}

.footer-wrap{
     display: grid;
    grid-template-columns: 1.5fr 5fr;
}

.footer-logo{
  width: 100%;
  height: auto;
}

.footer-tagline{
    color:rgba(255,255,255,.75);
    font-size:2rem;
    line-height:1.8;
}

.footer-last-footer{
 display: flex;
    justify-content: space-evenly;
}


.footer-badges{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin:25px 0;
}

.footer-badges span{
    padding:10px 18px;
    border:1px solid rgba(232,101,10,.25);
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(10px);
    border-radius:50px;
    color:rgba(255,255,255,.75);
    font-size:.95rem;
}

.footer-divider{
    width:100%;
    height:0.5px;
    margin:30px auto;
    background:linear-gradient(
        90deg,
        transparent,
        var(--brass),
        transparent
    );
}

.footer-partner{
    color:rgba(255,255,255,.7);
    margin-bottom:12px;
}

.footer-partner strong{
    color:var(--saffron);
}

.footer-legal{
    display: flex;
    gap: 15px;
}

.footer-legal a{
    color:rgba(255,255,255,.55);
    font-size:.95rem;
    margin-bottom:15px;
    text-decoration: none;
}

.footer-legal a:hover{
    color: var(--saffron);
}


.footer-copy{
    color:rgba(255,255,255,.4);
    font-size:.95rem;
    letter-spacing:.5px;
}

/* MOBILE */
@media(max-width:768px){

    .section-inner{
        padding: 0px 15px;
    }

    .footer-logo{
        font-size:2rem;
    }

    .footer-badges{
        gap:10px;
    }

    .footer-last-footer{
      display: flex;
        justify-content: space-evenly;
        flex-direction: column;
    }

    .footer-badges span{
        font-size:.8rem;
        padding:8px 14px;
    }

}
@media (max-width: 1100px) {
    nav {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-cta span {
        display: none;
    }

    .hero {
        padding: 7rem 1.25rem 3.5rem;
    }

    .hero-content {
        width: min(100%, 1100px);
    }

    .how-grid,
    .activity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-grid,
    .medal-hero,
    .blessed-full,
    .footer-wrap {
        grid-template-columns: 1fr;
    }

    .ticket-card {
        gap: 2rem;
    }
}

@media (max-width: 820px) {
    section {
        padding: 4.5rem 1rem;
    }

    .hero-eyebrow {
        font-size: 1rem;
        letter-spacing: 0.16em;
    }

    .hero-title {
        font-size: clamp(4rem, 16vw, 7rem);
    }

    .hero-short-title {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        height: auto;
        flex-wrap: wrap;
    }

    .virtual-strip {
        width: 100%;
        max-width: 460px;
        padding: 1rem;
    }

    .virtual-strip .vs-date {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .hero-btns {
        width: 100%;
        justify-content: center;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-grid,
    .activity-grid {
        grid-template-columns: 1fr;
    }

    .ticket-content,
    .ticket-price-card {
        padding: 1.25rem;
    }

    .ticket-card {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .booking-meta {
        grid-template-columns: 1fr;
    }

    .app-slider {
        height: 440px;
    }

    .app-feature {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 0 0.9rem;
    }

    .nav-inner {
        height: 58px;
    }

    .hero {
        min-height: 92vh;
        padding: 6.25rem 0.9rem 3rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }

    .virtual-strip .vs-title {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .section-title {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
    }

    .how-card,
    .activity-card,
    .vari-milestones {
        padding: 1.4rem;
        border-radius: 20px;
    }

    .download-btns {
        flex-direction: column;
    }

    .download-btns a {
        width: 100%;
    }

    .app-slider {
        height: 360px;
    }

    .slide {
        width: min(82vw, 280px);
    }

    .slide.prev {
        transform: translate(-118%, -50%) scale(0.76);
    }

    .slide.next {
        transform: translate(18%, -50%) scale(0.76);
    }

    .milestone-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .journey-stat {
        text-align: left;
    }

    .medal-left,
    .medal-right,
    .blessed-left {
        padding: 1.25rem 0;
    }

    .medal-ring {
        width: min(82vw, 280px);
        height: min(82vw, 280px);
    }

    .medal-inner,
    .medal-img-slot {
        width: 120px;
        height: 120px;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }
}