:root {
    --bg: #050811;
    --bg-soft: #0a1020;
    --card: rgba(255,255,255,0.055);
    --card-strong: rgba(255,255,255,0.09);
    --border: rgba(255,255,255,0.10);
    --text: #f7f9ff;
    --muted: #909ab0;
    --primary: #6c7cff;
    --primary-2: #8b5cff;
    --cyan: #3edbff;
    --success: #58e39c;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(69,90,255,0.18),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 18%,
            rgba(113,44,255,0.13),
            transparent 30%
        ),
        var(--bg);

    color: var(--text);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    min-height: 100vh;
}

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.page-shell {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;

    z-index: 50;

    backdrop-filter: blur(22px);

    background:
        linear-gradient(
            to bottom,
            rgba(5,8,17,0.94),
            rgba(5,8,17,0.72)
        );

    border-bottom:
        1px solid rgba(255,255,255,0.045);
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    width: 40px;
    height: 40px;

    border-radius: 13px;

    display: grid;
    place-items: center;

    font-weight: 900;
    font-size: 20px;

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--primary),
            var(--primary-2)
        );

    box-shadow:
        0 10px 35px rgba(92,105,255,0.35);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-size: 19px;
    letter-spacing: 0.08em;
}

.brand-copy span {
    color: var(--muted);
    font-size: 12px;
    margin-top: 5px;
}

.nav {
    display: flex;
    gap: 36px;

    font-size: 14px;
    color: var(--muted);
}

.nav a:hover {
    color: var(--text);
}

.ghost-button,
.text-button {
    border: 1px solid var(--border);
    color: var(--text);

    background:
        rgba(255,255,255,0.04);

    border-radius: 14px;
    padding: 11px 17px;
}

.text-button {
    color: #c7ceff;
}

.hero {
    min-height: 650px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 70px;

    padding:
        85px 3vw
        70px;
}

.hero-copy {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker {
    color: #9da9ff;

    text-transform: uppercase;
    letter-spacing: 0.18em;

    font-size: 12px;
    font-weight: 700;
}

.hero h1 {
    margin: 18px 0 22px;

    font-size:
        clamp(58px, 7vw, 105px);

    line-height: 0.94;

    letter-spacing: -0.055em;

    max-width: 850px;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #86dcff,
            #7d8cff,
            #b26cff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-text {
    color: var(--muted);

    font-size: 19px;
    line-height: 1.65;

    max-width: 600px;
}

.search-box {
    margin-top: 35px;

    width: min(610px, 100%);

    height: 72px;

    border-radius: 22px;

    border:
        1px solid rgba(255,255,255,0.13);

    background:
        rgba(255,255,255,0.065);

    backdrop-filter: blur(18px);

    display: flex;
    align-items: center;

    padding: 0 20px;

    box-shadow:
        0 22px 65px rgba(0,0,0,0.25);
}

.search-icon {
    width: 38px;
    color: #aab3c9;

    font-size: 28px;
}

.search-box input {
    flex: 1;
    border: 0;
    outline: 0;

    background: transparent;
    color: var(--text);

    font-size: 18px;
}

.search-box input::placeholder {
    color: #727e98;
}

.search-results {
    position: absolute;

    top: calc(100% - 20px);

    width: min(610px, 100%);

    max-height: 370px;

    overflow-y: auto;

    border-radius: 18px;

    background:
        rgba(11,16,31,0.97);

    border: 1px solid var(--border);

    padding: 8px;

    box-shadow:
        0 25px 80px rgba(0,0,0,0.4);

    z-index: 20;
}

.hidden {
    display: none !important;
}

.search-item {
    width: 100%;
    border: 0;

    background: transparent;
    color: var(--text);

    text-align: left;

    padding: 14px;

    border-radius: 13px;

    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.search-item:hover {
    background: rgba(255,255,255,0.065);
}

.search-meta {
    color: var(--muted);
    font-size: 13px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 25px;

    color: #adb7ce;
    font-size: 13px;
}

.hero-visual {
    position: relative;

    height: 520px;

    display: grid;
    place-items: center;
}

.orb {
    position: absolute;
    border-radius: 999px;

    filter: blur(10px);
}

.orb-one {
    width: 360px;
    height: 360px;

    background:
        rgba(72,92,255,0.25);

    box-shadow:
        0 0 150px rgba(72,92,255,0.22);
}

.orb-two {
    width: 210px;
    height: 210px;

    right: 4%;
    top: 10%;

    background:
        rgba(174,72,255,0.17);

    box-shadow:
        0 0 120px rgba(174,72,255,0.20);
}

.device-card {
    position: relative;

    width: min(390px, 90%);
    min-height: 470px;

    padding: 28px;

    border-radius: 40px;

    border:
        1px solid rgba(255,255,255,0.13);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.035)
        );

    backdrop-filter: blur(35px);

    box-shadow:
        0 40px 100px rgba(0,0,0,0.35);

    transform:
        rotate(3deg);
}

.device-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.device-label {
    font-weight: 750;
}

.status {
    font-size: 12px;
    color: #a8f7c8;

    background:
        rgba(69,223,137,0.12);

    border:
        1px solid rgba(69,223,137,0.22);

    padding: 7px 11px;
    border-radius: 999px;
}

.signal-art {
    height: 285px;

    position: relative;

    display: grid;
    place-items: center;
}

.signal-ring {
    position: absolute;

    border-radius: 999px;

    border:
        1px solid rgba(119,135,255,0.35);
}

.ring-1 {
    width: 100px;
    height: 100px;
}

.ring-2 {
    width: 170px;
    height: 170px;
}

.ring-3 {
    width: 245px;
    height: 245px;
}

.signal-core {
    width: 68px;
    height: 68px;

    border-radius: 22px;

    display: grid;
    place-items: center;

    font-weight: 900;
    font-size: 29px;

    background:
        linear-gradient(
            135deg,
            #62e1ff,
            #727cff,
            #a762ff
        );

    box-shadow:
        0 0 55px rgba(92,116,255,0.5);
}

.device-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.device-data > div {
    padding: 16px;

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.07);

    border-radius: 17px;

    display: flex;
    flex-direction: column;
    gap: 7px;
}

.device-data span {
    color: var(--muted);
    font-size: 12px;
}

.device-data strong {
    font-size: 16px;
}

.section {
    padding:
        85px 3vw;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 20px;

    margin-bottom: 34px;
}

.section-heading.centered {
    justify-content: center;
    text-align: center;
}

.section-heading h2 {
    margin: 8px 0 0;

    font-size:
        clamp(34px, 4vw, 54px);

    letter-spacing: -0.04em;
}

.section-heading p {
    color: var(--muted);
    line-height: 1.6;
}

.destination-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 16px;
}

.destination-card,
.plan-card,
.step-card,
.loading-card {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.025)
        );

    border:
        1px solid var(--border);

    border-radius: 22px;
}

.destination-card {
    padding: 22px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.destination-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(125,140,255,0.4);

    background:
        rgba(255,255,255,0.075);
}

.destination-name {
    font-size: 18px;
    font-weight: 700;
}

.destination-info {
    margin-top: 11px;

    display: flex;
    justify-content: space-between;
    gap: 10px;

    color: var(--muted);
    font-size: 13px;
}

.destination-price {
    color: #c3caff;
}

.loading-card {
    padding: 30px;
    color: var(--muted);
}

.plan-filters {
    display: flex;
    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 25px;
}

.filter-chip {
    border-radius: 999px;

    padding: 10px 16px;

    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,0.035);

    color: var(--muted);
}

.filter-chip.active {
    color: #fff;

    border-color:
        rgba(119,132,255,0.42);

    background:
        rgba(98,110,255,0.16);
}

.plans-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 18px;
}

.plan-card {
    padding: 24px;

    display: flex;
    flex-direction: column;

    min-height: 285px;
}

.plan-type {
    align-self: flex-start;

    padding: 7px 10px;

    border-radius: 999px;

    background:
        rgba(105,119,255,0.12);

    color: #b8c0ff;

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.plan-card h3 {
    margin:
        22px 0 10px;

    font-size: 21px;
}

.plan-details {
    color: var(--muted);
    font-size: 14px;

    display: flex;
    gap: 13px;

    flex-wrap: wrap;
}

.plan-bottom {
    margin-top: auto;

    padding-top: 30px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 15px;
}

.price {
    font-size: 31px;
    font-weight: 800;

    letter-spacing: -0.04em;
}

.price small {
    color: var(--muted);

    font-size: 12px;
    font-weight: 500;
}

.buy-button {
    border: 0;

    border-radius: 14px;

    padding: 12px 18px;

    color: #fff;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-2)
        );

    box-shadow:
        0 12px 35px rgba(100,87,255,0.25);
}

.steps {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 18px;
}

.step-card {
    padding: 28px;
}

.step-number {
    color: #7787ff;

    font-size: 13px;
    font-weight: 800;
}

.step-card h3 {
    font-size: 21px;
    margin: 24px 0 11px;
}

.step-card p {
    color: var(--muted);
    line-height: 1.65;
}

footer {
    border-top:
        1px solid rgba(255,255,255,0.07);

    padding:
        35px 3vw 50px;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: var(--muted);
    font-size: 13px;
}

.footer-brand {
    color: var(--text);
    font-weight: 800;
}

@media (max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-visual {
        height: 480px;
    }

    .destination-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .plans-grid,
    .steps {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}

@media (max-width: 720px) {

    .page-shell {
        width:
            min(100% - 20px, 1440px);
    }

    .topbar {
        height: 70px;
    }

    .nav {
        display: none;
    }

    .top-actions {
        display: none;
    }

    .hero {
        padding:
            55px 12px
            35px;

        min-height: auto;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-text {
        font-size: 16px;
    }

    .search-box {
        height: 62px;
    }

    .hero-visual {
        height: 430px;
    }

    .device-card {
        min-height: 400px;
    }

    .signal-art {
        height: 230px;
    }

    .ring-3 {
        width: 200px;
        height: 200px;
    }

    .ring-2 {
        width: 140px;
        height: 140px;
    }

    .destination-grid,
    .plans-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .section {
        padding:
            60px 12px;
    }

    .section-heading {
        align-items: flex-start;
    }

    footer {
        flex-direction: column;
    }

}


/* =====================================================
   NEX eSIM — UI V2
   ===================================================== */

.page-shell {
    width: min(1380px, calc(100% - 48px));
}


/* ---------- HEADER ---------- */

.topbar {
    padding-left: 8px;
    padding-right: 8px;
}


/* ---------- HERO ---------- */

.hero {
    min-height: 690px;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(420px, 0.88fr);

    gap: 90px;

    padding:
        90px 4vw
        85px;
}

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

.hero h1 {
    font-size:
        clamp(64px, 6.3vw, 108px);
}

.hero-text {
    max-width: 640px;
}

.hero-visual {
    height: 560px;
}

.device-card {
    width: min(430px, 95%);
    min-height: 500px;

    padding: 30px;

    border-color:
        rgba(145, 153, 255, 0.18);

    box-shadow:
        0 50px 130px rgba(0,0,0,.38),
        0 0 100px rgba(93,78,255,.12);
}


/* ---------- SECTIONS ---------- */

.section {
    padding:
        95px 4vw;
}


/* ---------- DESTINATIONS ---------- */

.destination-grid {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.destination-card {
    appearance: none;

    width: 100%;

    text-align: left;

    color: var(--text);

    min-height: 112px;

    padding: 21px 22px;

    cursor: pointer;

    position: relative;
    overflow: hidden;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.035);

    transition:
        transform .22s ease,
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}

.destination-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -55px;
    top: -65px;

    border-radius: 999px;

    background:
        rgba(103, 91, 255, .14);

    filter: blur(4px);

    transition:
        transform .25s ease,
        opacity .25s ease;
}

.destination-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(128, 139, 255, .38);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.085),
            rgba(96,78,255,.06)
        );

    box-shadow:
        0 22px 55px rgba(0,0,0,.18);
}

.destination-card:hover::before {
    transform: scale(1.25);
}

.destination-name {
    position: relative;

    color: #f7f9ff;

    font-size: 18px;
    font-weight: 750;

    letter-spacing: -.015em;

    z-index: 1;
}

.destination-info {
    position: relative;

    margin-top: 20px;

    z-index: 1;
}

.destination-price {
    color: #c7ceff;
    font-weight: 650;
}


/* ---------- VIEW ALL ---------- */

.text-button {
    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.text-button:hover {
    transform: translateY(-2px);

    background:
        rgba(112, 122, 255, .12);

    border-color:
        rgba(130, 140, 255, .32);
}


/* ---------- PLAN CARDS ---------- */

.plan-card {
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.plan-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(125,138,255,.34);

    box-shadow:
        0 25px 65px rgba(0,0,0,.20);
}


/* ---------- LARGE DESKTOP ---------- */

@media (min-width: 1500px) {

    .page-shell {
        width: min(1440px, calc(100% - 60px));
    }

}


/* ---------- TABLET ---------- */

@media (max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr;

        gap: 20px;
    }

}


/* ---------- MOBILE ---------- */

@media (max-width: 720px) {

    .page-shell {
        width: calc(100% - 20px);
    }

    .hero {
        padding:
            55px 12px
            40px;
    }

    .section {
        padding:
            65px 12px;
    }

    .destination-card {
        min-height: 100px;
    }

}


/* =====================================================
   DESTINATIONS DIRECTORY
   ===================================================== */

.destination-search-wrap {
    margin-bottom: 26px;
}

.destination-search-box {
    width: 100%;
    min-height: 62px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding:
        0 18px;

    border-radius: 20px;

    border:
        1px solid rgba(255,255,255,.11);

    background:
        rgba(255,255,255,.045);

    backdrop-filter:
        blur(18px);
}

.destination-search-icon {
    color: #8e9ab5;

    font-size: 24px;
}

.destination-search-box input {
    flex: 1;

    min-width: 0;

    border: 0;
    outline: 0;

    background:
        transparent;

    color: #fff;

    font-size: 16px;
}

.destination-search-box input::placeholder {
    color:
        #758099;
}

.destination-count {
    color:
        #8e99b1;

    white-space:
        nowrap;

    font-size: 13px;
}

.destination-card-top {
    position: relative;

    display: flex;
    align-items: center;

    gap: 12px;

    z-index: 2;
}

.destination-flag {
    width: 38px;
    height: 38px;

    border-radius: 12px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    font-size: 25px;

    background:
        rgba(255,255,255,.055);

    border:
        1px solid rgba(255,255,255,.06);
}

@media (max-width: 720px) {

    .destination-count {
        display: none;
    }

}


/* =====================================================
   PLAN TOOLBAR V4
   ===================================================== */

.plan-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 28px;
}

.plan-toolbar .plan-filters {
    margin-bottom: 0;
}

.plan-sort {
    min-width: 175px;

    padding: 11px 38px 11px 15px;

    border-radius: 14px;

    border:
        1px solid rgba(255,255,255,.11);

    outline: none;

    color: #f7f9ff;

    background:
        #101528;

    cursor: pointer;
}

.plan-card {
    min-height: 300px;
}

.plan-card h3 {
    color: #f7f9ff;
}

.plan-details span {
    padding: 7px 10px;

    border-radius: 9px;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid rgba(255,255,255,.055);
}

.buy-button {
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.buy-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 16px 42px
        rgba(100,87,255,.38);
}

@media (max-width: 720px) {

    .plan-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .plan-sort {
        width: 100%;
    }

}


/* =====================================================
   PLAN SORT FIX V5
   ===================================================== */

.plan-toolbar {
    width: 100%;
}

.plan-toolbar .plan-filters {
    flex: 1;
}

.plan-sort {
    appearance: none;
    -webkit-appearance: none;

    width: auto;
    min-width: 190px;
    height: 46px;

    flex: 0 0 auto;

    padding:
        0 42px
        0 16px;

    border:
        1px solid rgba(255,255,255,.11);

    border-radius: 14px;

    color: #dce1ee;

    background-color: #111625;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #8e99b1 50%
        ),
        linear-gradient(
            135deg,
            #8e99b1 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 18px) 19px,
        calc(100% - 13px) 19px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat:
        no-repeat;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    outline: none;
}

.plan-sort:hover {
    border-color:
        rgba(126,138,255,.35);
}

.plan-sort:focus {
    border-color:
        rgba(126,138,255,.55);

    box-shadow:
        0 0 0 3px
        rgba(103,91,255,.10);
}

.plan-sort option {
    background: #111625;
    color: #fff;
}

@media (max-width: 850px) {

    .plan-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .plan-sort {
        width: 100%;
    }

}


/* =====================================================
   NEXeSIM MASCOT BRAND V6
   ===================================================== */

.brand-logo {
    width: 52px;
    height: 52px;

    padding: 0;

    overflow: hidden;

    border-radius: 15px;

    background: transparent;

    box-shadow:
        0 10px 35px
        rgba(89, 85, 255, .28);
}

.brand-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* HERO MASCOT */

.hero-mascot {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1200px;
}

.hero-mascot-image {
    position: relative;

    z-index: 4;

    display: block;

    width: min(490px, 96%);

    height: auto;

    border-radius: 34px;

    border:
        1px solid rgba(115, 129, 255, .22);

    box-shadow:
        0 45px 120px
        rgba(0, 0, 0, .48),

        0 0 90px
        rgba(64, 92, 255, .16),

        0 0 55px
        rgba(154, 65, 255, .10);

    transform:
        rotate(2deg);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.hero-mascot-image:hover {
    transform:
        rotate(0deg)
        translateY(-6px)
        scale(1.015);

    box-shadow:
        0 55px 140px
        rgba(0, 0, 0, .52),

        0 0 110px
        rgba(64, 92, 255, .22);
}

.mascot-glow {
    position: absolute;

    z-index: 1;

    width: 390px;
    height: 390px;

    border-radius: 999px;

    background:
        radial-gradient(
            circle,
            rgba(76, 102, 255, .30),
            rgba(126, 63, 255, .13) 45%,
            transparent 72%
        );

    filter: blur(18px);
}

.hero-mascot .orb-one {
    left: 5%;
    top: 18%;
}

.hero-mascot .orb-two {
    right: 2%;
    top: 5%;
}


@media (max-width: 720px) {

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .hero-mascot {
        height: 430px;
    }

    .hero-mascot-image {
        width: min(390px, 94%);

        border-radius: 28px;
    }

}


/* =====================================================
   HEADER MASCOT LOGO V8
   ===================================================== */

.brand-logo {
    width: 50px;
    height: 50px;

    padding: 0;

    display: block;

    overflow: hidden;

    border-radius: 14px;

    background: transparent;

    box-shadow:
        0 8px 28px rgba(73, 92, 255, .24);
}

.brand-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

@media (max-width: 720px) {

    .brand-logo {
        width: 44px;
        height: 44px;
    }

}


/* =====================================================
   HEADER LOGO VISIBILITY V9
   ===================================================== */

.topbar {
    min-height: 94px;
}

.brand {
    gap: 14px;
}

.brand-logo {
    width: 82px;
    height: 82px;

    border-radius: 20px;

    flex: 0 0 82px;

    box-shadow:
        0 10px 38px rgba(74, 91, 255, .35),
        0 0 24px rgba(188, 66, 255, .16);
}

.brand-logo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.brand-copy strong {
    font-size: 22px;
    letter-spacing: .08em;
}

.brand-copy span {
    font-size: 13px;
    margin-top: 5px;
}

@media (max-width: 720px) {

    .topbar {
        min-height: 78px;
    }

    .brand-logo {
        width: 58px;
        height: 58px;

        flex-basis: 58px;

        border-radius: 16px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

}


/* =====================================================
   HERO HAMSTER CORE V10
   ===================================================== */

.signal-hamster {
    width: 92px;
    height: 92px;

    padding: 0;

    overflow: hidden;

    border-radius: 28px;

    background:
        rgba(7, 10, 24, .88);

    border:
        1px solid rgba(122, 139, 255, .35);

    box-shadow:
        0 0 0 8px rgba(95, 101, 255, .06),
        0 0 42px rgba(94, 116, 255, .52),
        0 0 70px rgba(153, 75, 255, .20);

    animation:
        nexHamsterPulse 3.6s ease-in-out infinite;
}

.signal-hamster img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

@keyframes nexHamsterPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 8px rgba(95, 101, 255, .06),
            0 0 42px rgba(94, 116, 255, .52),
            0 0 70px rgba(153, 75, 255, .20);
    }

    50% {
        transform: scale(1.045);
        box-shadow:
            0 0 0 13px rgba(95, 101, 255, .045),
            0 0 54px rgba(94, 116, 255, .62),
            0 0 88px rgba(153, 75, 255, .25);
    }
}

@media (max-width: 720px) {

    .signal-hamster {
        width: 78px;
        height: 78px;

        border-radius: 23px;
    }

}

/* =====================================================
   DESKTOP SCALE V11
   ===================================================== */

/* HEADER */

.topbar {
    min-height: 112px;
    padding-left: 18px;
    padding-right: 18px;
}

.brand {
    gap: 18px;
}

.brand-logo {
    width: 96px;
    height: 96px;

    flex: 0 0 96px;

    border-radius: 24px;
}

.brand-copy strong {
    font-size: 27px;
    line-height: 1;
}

.brand-copy span {
    margin-top: 7px;

    font-size: 15px;
}

.nav {
    gap: 46px;

    font-size: 17px;
    font-weight: 600;
}

.nav a {
    padding: 12px 4px;
}

.ghost-button {
    padding: 14px 22px;

    border-radius: 15px;

    font-size: 16px;
    font-weight: 700;
}


/* HERO */

.hero {
    padding-top: 105px;
}

.device-card {
    width: min(470px, 96%);
    min-height: 530px;
}

.signal-art {
    height: 320px;
}

.ring-1 {
    width: 145px;
    height: 145px;
}

.ring-2 {
    width: 225px;
    height: 225px;
}

.ring-3 {
    width: 310px;
    height: 310px;
}


/* HAMSTER INSIDE eSIM */

.signal-hamster {
    width: 145px;
    height: 145px;

    border-radius: 36px;

    box-shadow:
        0 0 0 12px rgba(95,101,255,.07),
        0 0 58px rgba(94,116,255,.62),
        0 0 95px rgba(153,75,255,.30);
}

.signal-hamster img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* MAIN HERO TYPOGRAPHY */

.hero h1 {
    font-size:
        clamp(76px, 6.8vw, 116px);
}

.hero-text {
    font-size: 20px;
}


/* DESTINATIONS */

.section-heading h2 {
    font-size:
        clamp(42px, 4.2vw, 62px);
}

.destination-search-box {
    min-height: 68px;
}

.destination-search-box input {
    font-size: 17px;
}


/* LARGE DESKTOP */

@media (min-width: 1500px) {

    .page-shell {
        width: min(1500px, calc(100% - 60px));
    }

}


/* MOBILE */

@media (max-width: 720px) {

    .topbar {
        min-height: 82px;
    }

    .brand-logo {
        width: 60px;
        height: 60px;

        flex-basis: 60px;
    }

    .brand-copy strong {
        font-size: 19px;
    }

    .signal-hamster {
        width: 92px;
        height: 92px;

        border-radius: 25px;
    }

}


/* =====================================================
   NEX HERO SCALE V12
   ===================================================== */

.hero {
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(520px, .95fr);

    gap: 80px;
}

.hero-visual {
    height: 620px;
}

.device-card {
    width: min(540px, 100%);
    min-height: 590px;

    padding: 34px;

    border-radius: 44px;
}

.device-label {
    font-size: 18px;
}

.status {
    font-size: 14px;
    padding: 9px 14px;
}


/* Large signal area */

.signal-art {
    height: 370px;
}

.ring-1 {
    width: 210px;
    height: 210px;
}

.ring-2 {
    width: 300px;
    height: 300px;
}

.ring-3 {
    width: 390px;
    height: 390px;
}


/* Hamster approximately 2x larger */

.signal-hamster {
    width: 245px;
    height: 245px;

    border-radius: 48px;

    border:
        2px solid
        rgba(112, 145, 255, .55);

    box-shadow:
        0 0 0 14px rgba(76,91,255,.055),
        0 0 75px rgba(43,132,255,.55),
        0 0 115px rgba(142,54,255,.42);
}

.signal-hamster img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* Bottom card information */

.device-data {
    gap: 16px;
}

.device-data > div {
    padding: 20px;

    border-radius: 20px;
}

.device-data span {
    font-size: 13px;
}

.device-data strong {
    font-size: 19px;
}


/* Wider screens */

@media (min-width: 1500px) {

    .device-card {
        width: 560px;
    }

}


/* Tablet protection */

@media (max-width: 1000px) {

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

    .device-card {
        width: min(520px, 94%);
    }

}


/* Mobile */

@media (max-width: 720px) {

    .hero-visual {
        height: 500px;
    }

    .device-card {
        min-height: 450px;
    }

    .signal-art {
        height: 270px;
    }

    .signal-hamster {
        width: 155px;
        height: 155px;

        border-radius: 34px;
    }

    .ring-1 {
        width: 135px;
        height: 135px;
    }

    .ring-2 {
        width: 205px;
        height: 205px;
    }

    .ring-3 {
        width: 265px;
        height: 265px;
    }

}
