@charset "UTF-8";

:root {
    --ink: #17132d;
    --muted: #706b82;
    --white: #ffffff;
    --cream: #fffaf2;
    --pink: #ff3d81;
    --purple: #7c4dff;
    --blue: #2878ff;
    --cyan: #00c8d7;
    --orange: #ff8a34;
    --yellow: #ffd84d;
    --green: #36d68a;
    --border: rgba(23, 19, 45, 0.1);
    --shadow: 0 30px 80px rgba(42, 24, 76, 0.14);
    --radius-xl: 38px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 61, 129, .08), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(40, 120, 255, .08), transparent 30%),
        var(--cream);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.page-orb {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: .16;
    z-index: -1;
    animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-one {
    background: var(--pink);
    top: 5%;
    left: -240px;
}

.orb-two {
    background: var(--blue);
    top: 45%;
    right: -250px;
    animation-delay: -4s;
}

.orb-three {
    background: var(--orange);
    bottom: -200px;
    left: 35%;
    animation-delay: -7s;
}

@keyframes floatOrb {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(80px, -60px, 0) scale(1.12);
    }

    100% {
        transform: translate3d(-50px, 80px, 0) scale(.92);
    }
}


/* HEADER */

.site-header {
    position: relative;
    z-index: 20;
    padding: 22px 30px;
}

.header-inner {
    max-width: var(--container);
    margin: auto;
    min-height: 72px;
    padding: 10px 12px 10px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(40, 25, 70, .08);
    backdrop-filter: blur(18px);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: -.04em;
}

.logo-symbol {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: white;
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
    box-shadow: 0 8px 24px rgba(124,77,255,.28);
}

.header-label {
    margin-left: auto;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--muted);
}

.header-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 19px;
    color: white;
    font-size: .82rem;
    font-weight: 800;
    border-radius: 15px;
    background: var(--ink);
    transition: .3s ease;
}

.header-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(23,19,45,.2);
}


/* COMMON */

.hero,
.intro-section,
.featured,
.discovery,
.story-section,
.mobile-section,
.link-wall,
.final-section {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .17em;
    color: var(--pink);
}


/* HERO */

.hero {
    min-height: 720px;
    padding: 80px 30px 110px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    max-width: 700px;
    margin: 20px 0 26px;
    font-size: clamp(3.5rem, 6vw, 6.6rem);
    line-height: .95;
    letter-spacing: -.075em;
}

.hero-content h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        var(--pink),
        var(--purple),
        var(--blue),
        var(--cyan)
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-intro {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 16px;
    font-size: .82rem;
    font-weight: 850;
    transition: .3s ease;
}

.button span {
    font-size: 1.15rem;
}

.button.primary {
    color: white;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 15px 32px rgba(124,77,255,.25);
}

.button.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 22px 40px rgba(124,77,255,.32);
}

.button.secondary {
    background: white;
    border: 1px solid var(--border);
}

.button.secondary:hover {
    transform: translateY(-4px);
    border-color: rgba(124,77,255,.3);
    box-shadow: 0 15px 35px rgba(30,20,70,.1);
}

.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 48px;
}

.hero-stats div {
    display: grid;
    gap: 2px;
}

.hero-stats strong {
    font-size: 1.1rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.visual-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background:
        conic-gradient(
            from 0deg,
            var(--pink),
            var(--orange),
            var(--yellow),
            var(--green),
            var(--blue),
            var(--purple),
            var(--pink)
        );
    filter: blur(40px);
    opacity: .45;
    animation: rotateGlow 14s linear infinite;
}

@keyframes rotateGlow {
    to {
        transform: rotate(360deg);
    }
}

.image-card {
    position: relative;
    z-index: 2;
    width: min(100%, 490px);
    padding: 12px;
    border-radius: 34px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    transition: .5s ease;
}

.image-card:hover {
    transform: rotate(0deg) translateY(-8px);
}

.image-card img {
    width: 100%;
    aspect-ratio: 1.2;
    object-fit: cover;
    border-radius: 25px;
}

.image-top,
.image-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 8px;
}

.image-top {
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .12em;
    color: var(--muted);
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(54,214,138,.12);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    50% {
        transform: scale(1.25);
        opacity: .6;
    }
}

.image-bottom {
    padding: 17px 10px 10px;
}

.image-bottom div {
    display: grid;
}

.image-bottom strong {
    font-size: .95rem;
}

.image-bottom span {
    color: var(--muted);
    font-size: .72rem;
}

.image-bottom > a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 13px;
    background: var(--ink);
}

.floating-chip {
    position: absolute;
    z-index: 4;
    padding: 12px 17px;
    color: white;
    border-radius: 15px;
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .1em;
    box-shadow: 0 15px 30px rgba(0,0,0,.16);
    animation: chipFloat 4s ease-in-out infinite;
}

.chip-one {
    top: 8%;
    left: 3%;
    background: var(--pink);
}

.chip-two {
    right: 2%;
    top: 25%;
    background: var(--blue);
    animation-delay: -1.5s;
}

.chip-three {
    bottom: 10%;
    left: 7%;
    background: var(--orange);
    animation-delay: -2.5s;
}

@keyframes chipFloat {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-14px) rotate(4deg);
    }
}


/* INTRO */

.intro-section {
    padding: 100px 30px;
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    gap: 50px;
}

.section-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(23,19,45,.12);
}

.intro-heading h2,
.section-heading h2,
.mobile-copy h2,
.final-inner h2 {
    margin: 14px 0 22px;
    font-size: clamp(2.5rem, 4vw, 4.3rem);
    line-height: 1;
    letter-spacing: -.065em;
}

.intro-heading h2 span,
.section-heading h2 span,
.mobile-copy h2 span,
.final-inner h2 span {
    color: var(--purple);
}

.intro-copy {
    color: var(--muted);
}

.intro-copy p:first-child {
    margin-top: 0;
}


/* FEATURED */

.featured {
    padding: 40px 30px 110px;
}

.featured-card {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    background: var(--ink);
    color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(23,19,45,.22);
}

.featured-image {
    position: relative;
    min-height: 570px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.06);
}

.image-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 9px 13px;
    border-radius: 10px;
    color: white;
    background: var(--pink);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.featured-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .eyebrow {
    color: var(--yellow);
}

.featured-content h2 {
    margin: 16px 0 25px;
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    line-height: .98;
    letter-spacing: -.06em;
}

.featured-content h2 span {
    display: block;
    color: #a99cff;
}

.featured-content p {
    color: #bcb8ca;
    font-size: .95rem;
}

.large-link {
    align-self: flex-start;
    margin-top: 24px;
    padding: 15px 20px;
    color: var(--ink);
    background: white;
    border-radius: 14px;
    font-weight: 850;
    transition: .3s ease;
}

.large-link:hover {
    transform: translateY(-4px);
    background: var(--yellow);
}


/* DISCOVERY */

.discovery {
    padding: 100px 30px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 55px;
}

.section-heading > p {
    margin: 0;
    color: var(--muted);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.destination-card {
    position: relative;
    min-height: 280px;
    padding: 30px;
    display: grid;
    grid-template-columns: 64px 1fr 30px;
    gap: 22px;
    align-items: start;
    border-radius: 28px;
    color: white;
    overflow: hidden;
    transition: .45s ease;
}

.destination-card::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    right: -100px;
    bottom: -130px;
    background: rgba(255,255,255,.18);
    filter: blur(4px);
    transition: .5s ease;
}

.destination-card:hover {
    transform: translateY(-9px) rotate(-.5deg);
    box-shadow: 0 30px 55px rgba(30,20,70,.18);
}

.destination-card:hover::after {
    transform: scale(1.6);
}

.card-pink {
    background: linear-gradient(135deg, #ff2f75, #9d35ff);
}

.card-blue {
    background: linear-gradient(135deg, #176cff, #00b9d9);
}

.card-orange {
    background: linear-gradient(135deg, #ff7133, #ffb52e);
}

.card-green {
    background: linear-gradient(135deg, #0ebc91, #35d66d);
}

.card-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: white;
    border-radius: 18px;
    font-size: .9rem;
    font-weight: 950;
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
}

.card-label {
    display: block;
    margin-bottom: 9px;
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .13em;
    opacity: .75;
}

.destination-card h3 {
    margin: 0 0 10px;
    font-size: 1.75rem;
    letter-spacing: -.04em;
}

.destination-card p {
    margin: 0;
    max-width: 450px;
    font-size: .85rem;
    line-height: 1.65;
    color: rgba(255,255,255,.85);
}

.card-arrow {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
}


/* STORY */

.story-section {
    padding: 110px 30px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 80px;
}

.story-sidebar {
    position: sticky;
    top: 30px;
    align-self: start;
}

.vertical-title {
    margin-top: 30px;
    writing-mode: vertical-rl;
    font-size: 5rem;
    line-height: .8;
    font-weight: 950;
    letter-spacing: -.08em;
    color: rgba(23,19,45,.08);
}

.story-content {
    display: grid;
    gap: 25px;
}

.story-block {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 35px;
    padding: 45px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(35,20,60,.05);
    transition: .35s ease;
}

.story-block:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.story-number {
    font-size: .8rem;
    font-weight: 900;
    color: var(--pink);
}

.story-block h3 {
    margin: 0 0 18px;
    font-size: 1.7rem;
    letter-spacing: -.04em;
}

.story-block p {
    color: var(--muted);
    font-size: .92rem;
}


/* MOBILE */

.mobile-section {
    margin-top: 40px;
    padding: 100px 70px;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 80px;
    align-items: center;
    border-radius: var(--radius-xl);
    color: white;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,216,77,.4), transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(255,61,129,.35), transparent 30%),
        linear-gradient(135deg, #24163f, #492d93 50%, #1163a7);
    overflow: hidden;
}

.mobile-copy .eyebrow {
    color: var(--yellow);
}

.mobile-copy h2 {
    margin-top: 14px;
}

.mobile-copy h2 span {
    color: var(--yellow);
}

.mobile-copy p {
    color: rgba(255,255,255,.75);
}

.mobile-orbit {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    animation: orbitSpin 15s linear infinite;
}

.ring-one {
    width: 260px;
    height: 260px;
}

.ring-two {
    width: 360px;
    height: 360px;
    animation-duration: 22s;
    animation-direction: reverse;
}

.ring-three {
    width: 460px;
    height: 460px;
    animation-duration: 30s;
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

.phone-card {
    position: relative;
    z-index: 3;
    width: 220px;
    min-height: 360px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    border: 7px solid rgba(255,255,255,.9);
    border-radius: 38px;
    background: linear-gradient(160deg, #17132d, #34216a);
    box-shadow: 0 30px 70px rgba(0,0,0,.3);
    transform: rotate(5deg);
}

.phone-top {
    position: absolute;
    top: 16px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    font-size: .55rem;
    color: rgba(255,255,255,.7);
}

.phone-logo {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    font-size: 2rem;
    font-weight: 900;
}

.phone-card strong {
    margin-top: 10px;
    font-size: 1.1rem;
}

.phone-card > span {
    color: rgba(255,255,255,.55);
    font-size: .72rem;
}


/* LINK WALL */

.link-wall {
    padding: 120px 30px;
}

.link-wall-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.link-wall-heading h2 {
    margin: 12px 0;
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -.07em;
    line-height: 1;
}

.link-wall-heading p {
    color: var(--muted);
}

.link-wall-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.wall-link {
    min-height: 170px;
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: white;
    overflow: hidden;
    transition: .35s ease;
}

.wall-link:hover {
    transform: translateY(-7px);
    border-color: rgba(124,77,255,.3);
    box-shadow: 0 20px 45px rgba(30,20,70,.1);
}

.wall-link > span {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: .65rem;
    font-weight: 900;
    color: #aaa5b6;
}

.wall-link strong {
    font-size: 1.15rem;
}

.wall-link small {
    margin-top: 4px;
    color: var(--muted);
}

.wall-link b {
    position: absolute;
    left: 25px;
    top: 20px;
    color: var(--purple);
    opacity: 0;
    transform: translateX(-8px);
    transition: .3s ease;
}

.wall-link:hover b {
    opacity: 1;
    transform: translateX(0);
}

.featured-link {
    background: linear-gradient(135deg, #ff3d81, #743fff);
    color: white;
    border: none;
}

.featured-link small,
.featured-link b,
.featured-link > span {
    color: rgba(255,255,255,.7);
}


/* FINAL */

.final-section {
    padding: 30px;
}

.final-inner {
    position: relative;
    padding: 100px 60px;
    text-align: center;
    border-radius: var(--radius-xl);
    color: white;
    background:
        linear-gradient(
            120deg,
            #ff397b,
            #7d42ff,
            #1677ff,
            #00bca8
        );
    background-size: 300% 300%;
    animation: finalGradient 12s ease infinite;
    overflow: hidden;
}

@keyframes finalGradient {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.final-mark {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: white;
    border-radius: 23px;
    font-size: 1.8rem;
    font-weight: 950;
}

.final-inner .eyebrow {
    color: rgba(255,255,255,.75);
}

.final-inner h2 {
    max-width: 850px;
    margin: 18px auto 25px;
    font-size: clamp(3rem, 5vw, 5.3rem);
}

.final-inner h2 span {
    display: block;
    color: var(--yellow);
}

.final-inner p {
    max-width: 700px;
    margin: auto;
    color: rgba(255,255,255,.8);
}

.final-actions {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.final-inner .button.primary {
    color: var(--ink);
    background: white;
    box-shadow: none;
}

.final-inner .button.secondary {
    color: white;
    border-color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.1);
}


/* FOOTER */

.site-footer {
    max-width: var(--container);
    margin: 0 auto;
    padding: 90px 30px 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    max-width: 390px;
    color: var(--muted);
    font-size: .85rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column strong {
    margin-bottom: 8px;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.footer-column a {
    color: var(--muted);
    font-size: .82rem;
    transition: .2s ease;
}

.footer-column a:hover {
    color: var(--pink);
    transform: translateX(3px);
}

.footer-bottom {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #918c9e;
    font-size: .7rem;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .hero {
        gap: 45px;
    }

    .hero-content h1 {
        font-size: clamp(3.3rem, 7vw, 5.5rem);
    }

    .featured-content {
        padding: 50px;
    }

    .story-section {
        grid-template-columns: 120px 1fr;
        gap: 40px;
    }

    .vertical-title {
        font-size: 3.8rem;
    }

    .mobile-section {
        padding: 70px 45px;
    }
}


@media (max-width: 800px) {

    .site-header {
        padding: 12px;
    }

    .header-inner {
        padding-left: 15px;
    }

    .header-label {
        display: none;
    }

    .hero {
        padding-top: 55px;
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 460px;
    }

    .intro-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-number {
        font-size: 2rem;
    }

    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 400px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .story-section {
        grid-template-columns: 1fr;
    }

    .story-sidebar {
        position: static;
    }

    .vertical-title {
        display: none;
    }

    .mobile-section {
        grid-template-columns: 1fr;
    }

    .mobile-orbit {
        min-height: 400px;
    }

    .link-wall-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 560px) {

    .header-action {
        padding: 11px 13px;
        font-size: .7rem;
    }

    .hero,
    .intro-section,
    .featured,
    .discovery,
    .story-section,
    .link-wall,
    .site-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content h1 {
        font-size: 3.35rem;
    }

    .hero-stats {
        gap: 18px;
        flex-wrap: wrap;
    }

    .hero-visual {
        min-height: 380px;
    }

    .floating-chip {
        display: none;
    }

    .featured-content {
        padding: 35px 25px;
    }

    .featured-image {
        min-height: 300px;
    }

    .destination-card {
        grid-template-columns: 54px 1fr;
        padding: 23px;
    }

    .destination-card .card-arrow {
        display: none;
    }

    .story-block {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .mobile-section {
        margin-left: 20px;
        margin-right: 20px;
        padding: 55px 25px;
    }

    .ring-three {
        width: 330px;
        height: 330px;
    }

    .ring-two {
        width: 270px;
        height: 270px;
    }

    .ring-one {
        width: 210px;
        height: 210px;
    }

    .link-wall-grid {
        grid-template-columns: 1fr;
    }

    .final-inner {
        padding: 70px 25px;
    }

    .final-inner h2 {
        font-size: 3rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}