/* ==========================================================================
   Hero — Recognition & Achievements (video background)
   ========================================================================== */
.hero {
    background: #0b1f33;
}

/* video background */
.hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bottom {
    bottom: 45px;
}

/* full-cover darkening so all the text stays readable */
.hero::after {
    top: 0;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.5) 100%);
}

/* --- bottom: left title block + right two columns --- */
.recognition__left {
    position: relative;
    flex-shrink: 0;
}

.recognition__title {
    max-width: 685px;
    font-weight: 400;
    font-size: 85px;
    line-height: 93%;
    color: #fff;
}

/* Guinness badge — positioned absolutely next to the first line */
.recognition__badge {
    position: absolute;
    top: -13px;
    left: 299px;
}

.recognition__right {
    display: flex;
    gap: 150px;
}

/* shared heading + description styles for both columns */
.recognition__col-title {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 45px;
    line-height: 104%;
    color: #fff;
    max-width: 470px;
}

.recognition__col:last-child .recognition__col-title {
    margin-bottom: 12px;
}

.recognition__col:last-child {
    max-width: 365px;
}

.recognition__col-text {
    max-width: 470px;
    font-weight: 500;
    font-size: 18px;
    line-height: 139%;
    color: #fff;
}

/* ==========================================================================
   Beyond Earth — scroll-driven rotating wheel
   ========================================================================== */
.beyond {
    position: relative;
    height: 320vh; /* scroll room: taller than the pinned screen */
    background: #ececec;
}

.beyond__pin {
    position: sticky;
    top: 0;
    height: 1300px;
    overflow: hidden;
}

/* title (stays put while the wheel animates) */
.beyond__inner {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 110px 45px 0 70px;
    pointer-events: none;
}

.beyond__title {
    font-weight: 500;
    font-size: 60px;
    letter-spacing: -0.03em;
    background: linear-gradient(91.76deg, #002944 7.42%, #4482a9 67.25%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* stage holds the wheel + the centred content */
.beyond__stage {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* --- rotating wheel (circle + star points) --- */
.beyond__wheel {
    position: absolute;
    top: 230px;
    left: 50%;
    width: 1500px;
    height: 1500px;
    transform: translateX(-50%);
}

.beyond__circle {
    display: block;
    width: 100%;
    height: 100%;
    /* rotation set by JS */
}

/* the star's centre sits exactly on the circle line (left/top set by JS in %) */
.beyond__point {
    position: absolute;
    line-height: 0;
    transform: translate(-50%, -50%);
}

.beyond__point-star {
    display: block;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

/* number badge (circle) sitting to the right of the star */
.beyond__point-num {
    position: absolute;
    left: 100%;
    top: 50%;
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(23, 65, 94, 0.3);
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #17415e;
    opacity: 0.4;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
}

/* per-slide copy authored in the HTML; shown via the centred content on scroll */
.beyond__point-desc {
    display: none;
}

/* the point currently at the top is the active one */
.beyond__point.is-active .beyond__point-star {
    opacity: 1;
}

.beyond__point.is-active .beyond__point-num {
    opacity: 0; /* its number is shown by the big ring badge instead */
}

/* --- centred content: number badge, description, image --- */
.beyond__content {
    position: absolute;
    top: 110px;
    left: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1085px;
    max-width: 100%;
    transform: translateX(-50%);
    text-align: center;
}

.beyond__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 137px; /* clears the active star sitting on the circle top */
    border-radius: 50%;
    border: 1px solid rgba(23, 65, 94, 0.3);
    font-weight: 500;
    font-size: 25px;
    letter-spacing: -0.03em;
    color: #002944;
    transition: opacity 0.35s ease;
}

.beyond__desc {
    max-width: 410px;
    margin-bottom: 76px;
    font-weight: 400;
    font-size: 21px;
    line-height: 138%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #17415e;
    transition: opacity 0.35s ease;
    /* height is reserved for the tallest copy in JS so the video below never
       jumps; centre the shorter lines within that reserved space */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* constant background video (does not change between slides) */
.beyond__video {
    display: block;
    width: 1085px;
    height: 611px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* only the number + description cross-fade; the video stays put */
.beyond__content.is-changing .beyond__num,
.beyond__content.is-changing .beyond__desc {
    opacity: 0;
}

/* ==========================================================================
   World Top — auto-rotating background + stories-style bars
   ========================================================================== */
.world-top {
    position: relative;
    height: 1230px;
    overflow: hidden;
}

/* full-bleed background slider */
.world-top__swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.world-top__slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* foreground content */
.world-top__inner {
    position: relative;
    z-index: 1;
    padding-top: 36px;
}

/* progress bars */
.world-top__bars {
    display: flex;
    gap: 20px;
}

.world-top__bar {
    position: relative;
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.world-top__bar-fill {
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: inherit;
    background: #fff;
}

/* heading (left) + two paragraphs (right) */
.world-top__row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 80px;
}

.world-top__title {
    font-weight: 400;
    font-size: 100px;
    line-height: 93%;
    letter-spacing: -0.03em;
    color: #fff;
    max-width: 650px;
}

.world-top__texts {
    display: flex;
    flex-direction: column;
    gap: 65px;
    max-width: 420px;
    margin-right: 20px;
}

.world-top__text:first-child {
    max-width: 355px;
}

.world-top__text {
    font-weight: 500;
    font-size: 25px;
    line-height: 131%;
    letter-spacing: -0.03em;
    color: #fff;
}

/* ==========================================================================
   Coin of Peace — static image + card slider
   ========================================================================== */
.peace {
    padding: 150px 0 75px;
    background: #ececec;
}

.peace__title {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 60px;
    letter-spacing: -0.03em;
    background: linear-gradient(123deg, #002944 0%, #4482a9 96.54%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* full-width intro video */
.peace__video {
    display: block;
    width: 100%;
    height: 900px;
    margin-bottom: 60px;
    border-radius: 13px;
    object-fit: cover;
}

/* bottom row: story text on the left, two coins pushed to the right */
.peace__bottom {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 60px;
}

.peace__texts {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 100%;
}

.peace-left {
    align-items: center;
    width: 100%;
    gap: 60px;
    display: flex;
}

.peace__text {
    font-weight: 500;
    font-size: 17px;
    line-height: 129%;
    letter-spacing: -0.03em;
    color: #17415e;
}

.peace__coins {
    flex-shrink: 0;
    display: flex;
    gap: 30px;
}

/* --- coin card (tags + coin) --- */
.peace-card {
    box-sizing: border-box;
    width: 400px;
    display: flex;
    flex-direction: column;
    padding: 26px 26px 36px;
    border-radius: 13px;
    background: #f5f5f5;
}

.peace-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.peace-card__tag {
    padding: 6px 10px;
    border-radius: 3px;
    background: #fff;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: -0.03em;
    color: #2e2e2e;
    white-space: nowrap;
}

.peace-card__coin {
    align-self: center;
    width: 356px;
    max-width: 100%;
    height: auto;
    margin-top: auto;
}

/* ==========================================================================
   The Stamp of Peace — text + specs (left) / stamp image (right)
   ========================================================================== */
.stamp {
    padding: 75px 0;
    background: #ececec;
}

.stamp__container {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    gap: 185px;
}

.stamp__left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    max-width: 788px;
}

.stamp__title {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #002944;
}

.stamp__title span {
    color: #4482a9;
}

.stamp__texts {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 100px;
}

.stamp__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 138%;
    letter-spacing: -0.03em;
    color: #17415e;
}

/* three spec boxes at the bottom of the left column */
.stamp__specs {
    display: flex;
    gap: 26px;
}

.stamp__spec {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    padding: 15px 22px;
    background: #fff;
    min-width: 160px;
}

.stamp__spec-label {
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.03em;
    color: rgba(46, 46, 46, 0.25);
}

.stamp__spec-value {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -0.03em;
    color: #17415e;
}

/* right: stamp image stretched to the full column height */
.stamp__media {
    display: flex;
    align-items: end;
    width: 100%;
    justify-content: start;
}

.stamp__image {
    display: block;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* ==========================================================================
   The World Painting Peace Belt — text (left) / cards + belt image (right)
   ========================================================================== */
.belt {
    padding: 75px 0;
    background: #ececec;
}

.belt__container {
    display: flex;
    align-items: center;
    gap: 110px;
}

/* left: intro text on top, three cards in a row below */
.belt__left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.belt__intro {
    max-width: 792px;
}

.belt__title {
    margin-bottom: 44px;
    font-weight: 500;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #002944;
}

.belt__title span {
    color: #4482a9;
}

.belt__texts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.belt__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 138%;
    letter-spacing: -0.03em;
    color: #17415e;
}

.belt__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.belt__card {
    flex: 1;
    min-width: 180px;
    padding: 16px 18px;
    border-radius: 8px;
    background: #fff;
}

.belt__card-label {
    display: block;
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.03em;
    color: rgba(46, 46, 46, 0.25);
}

.belt__card-value {
    display: block;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -0.03em;
    color: #17415e;
}

/* right: big belt image on top, three thumbnails in a row below */
.belt__right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.belt__media {
    border-radius: 16px;
    overflow: hidden;
}

.belt__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.belt__gallery {
    display: flex;
    gap: 20px;
}

.belt__thumb {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* ==========================================================================
   For Peace — intro + full-bleed card slider
   ========================================================================== */
.for-peace {
    padding: 50px 0 200px;
    background-size: 1800px 1488px !important;
    background: #ececec url('../assets/img/for-peace-bg.png') top center / 100% auto no-repeat;
}

/* top: label (left) + intro block (right) */
.for-peace__top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 450px;
}

.for-peace__label {
    flex-shrink: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #17415e;
}

.for-peace__title {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 60px;
    letter-spacing: -0.03em;
    background: linear-gradient(123deg, #002944 0%, #4482a9 96.54%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.for-peace__texts {
    display: flex;
    gap: 60px;
}

.for-peace__text {
    max-width: 360px;
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.03em;
    color: #17415e;
}

.for-peace__text:first-child {
    max-width: 317px;
}

.for-peace__nav {
    margin-top: 50px;
}

/* --- full-bleed card slider --- */
.for-peace__slider {
    margin-top: 35px;
}

/* cards keep their own image height, top-aligned in the row */
.for-peace__swiper .swiper-wrapper {
    align-items: flex-start;
}

.for-peace-card {
    position: relative;
    width: 545px;
    min-height: 400px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
}

.for-peace-card__image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

/* top + bottom darkening for text readability */
.for-peace-card::before,
.for-peace-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}

.for-peace-card::before {
    top: 0;
    height: 130px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 100%);
}

.for-peace-card::after {
    bottom: 0;
    height: 300px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}

.for-peace-card__tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 8px 10px;
    border-radius: 6px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.15);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: -0.03em;
    color: #fff;
    white-space: nowrap;
}

/* paragraphs pinned to the bottom */
.for-peace-card__texts {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 30px;
    padding: 0 30px 40px;
    pointer-events: none;
}

.for-peace-card__text {
    font-weight: 300;
    font-size: 18px;
    line-height: 117%;
    letter-spacing: -0.03em;
    color: #fff;
    max-width: 400px;
}

.for-peace-card__text b {
    font-weight: 700;
}

/* ==========================================================================
   Contact cards (video)
   ========================================================================== */
.contact-cards {
    padding-top: 0px;
    padding-bottom: 75px;
}

.contact-cards__video--scale {
    zoom: 1.06;
}

.contact-cards__list {
    display: flex;
    gap: 23px;
}

.contact-cards__card {
    flex: 1;
    min-width: 0;
}

.contact-cards__video {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 5px;
}

.contact-cards__title {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: -0.03em;
    color: #17415e;
}

.contact-cards__desc {
    font-weight: 300;
    font-size: 18px;
    line-height: 136%;
    letter-spacing: -0.03em;
    color: #17415e;
}

/* ==========================================================================
   Contact slider (video cards, full-bleed)
   ========================================================================== */
.contact-slider {
    padding: 75px 0;
}

.contact-slider__inner {
    position: relative;
}

.contact-slide {
    width: 427px;
}

.contact-slide__video {
    display: block;
    width: 100%;
    height: 687px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 5px;
}

/* nav buttons — `top` set by JS to the video centre (not the whole card) */
.slider__button {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    transform: translateY(-50%);
    transition: transform 0.25s ease;
}

.contact-slider__button--prev {
    left: 60px;
}

.contact-slider__button--next {
    right: 60px;
}

.slider__button--prev:hover {
    transform: translateY(-50%) translateX(-3px);
}

.slider__button--next:hover {
    transform: translateY(-50%) translateX(3px);
}

/* ==========================================================================
   Contact big slider (wide video cards, 2 per view, container-aligned)
   ========================================================================== */
.contact-big-slider {
    padding: 75px 0;
    padding-bottom: 150px;
}

.contact-big-slider__inner {
    position: relative;
}

.contact-big-slide__video {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 5px;
}

.contact-big-slider__button--prev {
    left: 15px;
}

.contact-big-slider__button--next {
    right: 15px;
}

/* ==========================================================================
   Final cards (portrait video row, 4 up)
   ========================================================================== */
.final-cards {
    padding: 75px 0 200px;
}

.final-cards__list {
    display: flex;
    gap: 40px;
}

.final-cards__card {
    flex: 1;
    min-width: 0;
}

.final-cards__video {
    display: block;
    width: 100%;
    height: 687px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 5px;
}