/* ============================================================
   HOME — colourful mosaic landing system
   Core palette: #002ae9 (electric blue) · #52d048 (signal green)
   Support accents: sky · sun · coral · grape
   ============================================================ */
:root {
    --blue: #eb5e19;
    --blue-lit: #fa702b;
    --blue-deep: #51210a;
    --blue-wash: #e7ecff;

    --green: #52d048;
    --green-deep: #2f9e27;
    --green-wash: #e6fae3;

    --sky: #00b6f0;
    --sky-deep: #0086b3;
    --sky-wash: #e0f6ff;

    --sun: #ffc531;
    --sun-deep: #b8860a;
    --sun-wash: #fff5da;

    --coral: #ff6a4d;
    --coral-deep: #d8401f;
    --coral-wash: #ffeae4;

    --grape: #7b3fe4;
    --grape-deep: #5a24bd;
    --grape-wash: #f1e9ff;

    --ink: #0a0b1e;
    --ink-2: #1a1d3a;
    --muted: #5c6280;
    --canvas: #ffffff;
    --soft: #f5f7ff;
    --line: #e5e8f5;
    --line-hard: #ccd3ea;

    --r-sm: 12px;
    --r: 20px;
    --r-lg: 30px;
    --lift: 0 26px 60px -34px rgba(10, 11, 30, 0.5);

    --font-display: "Outfit", sans-serif;
    --font-text: "DM Sans", sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 110px;
}
body {
    font-family: var(--font-text);
    color: var(--muted);
    background: var(--canvas);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}
::selection {
    background: var(--sun);
    color: var(--ink);
}
.shell {
    width: min(1240px, 90%);
    margin-inline: auto;
}
section {
    position: relative;
}

/* ---------- reveal ---------- */
[data-r] {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition-delay: var(--d, 0s);
}
[data-r="left"] {
    transform: translateX(-30px);
}
[data-r="right"] {
    transform: translateX(30px);
}
[data-r="zoom"] {
    transform: scale(0.94);
}
[data-r].seen {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    [data-r] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    * {
        animation-duration: 0.001s !important;
    }
}

/* ---------- primitives ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15.5px;
    padding: 14px 26px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        transform 0.22s ease,
        background 0.22s,
        color 0.22s,
        border-color 0.22s,
        box-shadow 0.22s;
}
.btn i {
    font-size: 13px;
}
.btn:hover {
    transform: translateY(-3px);
}
.btn-blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 14px 28px -14px rgba(233, 109, 0, 0.95);
}
.btn-blue:hover {
    background: var(--blue-deep);
}
.btn-green {
    background: var(--green);
    color: #06300c;
    box-shadow: 0 14px 28px -14px rgba(82, 208, 72, 0.95);
}
.btn-green:hover {
    background: var(--green-deep);
    color: #fff;
}
.btn-sun {
    background: var(--sun);
    color: #3d2b00;
    box-shadow: 0 14px 28px -14px rgba(255, 197, 49, 0.95);
}
.btn-sun:hover {
    background: #f0b100;
}
.btn-ink {
    background: var(--ink);
    color: #fff;
}
.btn-ink:hover {
    background: var(--blue);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-hard);
}
.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
}
.btn-xs {
    padding: 10px 20px;
    font-size: 14px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-wash);
    border-radius: 999px;
    padding: 7px 16px;
    margin-bottom: 18px;
}
.tag.t-green {
    color: var(--green-deep);
    background: var(--green-wash);
}
.tag.t-sun {
    color: var(--sun-deep);
    background: var(--sun-wash);
}
.tag.t-coral {
    color: var(--coral-deep);
    background: var(--coral-wash);
}
.tag.t-grape {
    color: var(--grape-deep);
    background: var(--grape-wash);
}
.tag.on-dark {
    color: var(--green);
    background: rgba(82, 208, 72, 0.15);
}
.tag.on-green {
    color: #06300c;
    background: rgba(255, 255, 255, 0.55);
}

.head h2 {
    font-size: clamp(31px, 4.5vw, 52px);
}
.head h2 em {
    font-style: normal;
    color: var(--blue);
}
.head h2 u {
    text-decoration: none;
    background: linear-gradient(transparent 85%, var(--sun) 85%);
    padding: 0 3px;
}
.head h2 .gr {
    background: linear-gradient(transparent 85%, var(--green) 85%);
    padding: 0 3px;
}
.head p {
    margin-top: 16px;
    font-size: 17px;
    max-width: 600px;
}
.head.mid {
    text-align: center;
}
.head.mid p {
    margin-inline: auto;
}

.block {
    padding: 110px 0;
}
.block-soft {
    background: var(--soft);
}
.block-mint {
    background: linear-gradient(180deg, var(--green-wash), #fff);
}
.block-sky {
    background: linear-gradient(180deg, var(--sky-wash), #fff);
}

/* ============ ANNOUNCE STRIP ============ */
.announce {
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    overflow: hidden;
    position: relative;
    z-index: 5;
}
.announce .run {
    display: flex;
    gap: 54px;
    width: max-content;
    padding: 10px 0;
    animation: slideX 34s linear infinite;
    font-family: var(--font-display);
    font-weight: 500;
}
.announce span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    opacity: 0.92;
}
.announce i {
    font-size: 11px;
}
.announce span:nth-child(4n + 1) i {
    color: var(--sun);
}
.announce span:nth-child(4n + 2) i {
    color: var(--green);
}
.announce span:nth-child(4n + 3) i {
    color: var(--sky);
}
.announce span:nth-child(4n + 4) i {
    color: var(--coral);
}
@keyframes slideX {
    to {
        transform: translateX(-50%);
    }
}

/* ============ NAV ============ */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s;
}
.nav.stuck {
    box-shadow: 0 14px 40px -30px rgba(10, 11, 30, 0.6);
}
.nav .shell {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.logo img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
}
.nav-links {
    display: flex;
    gap: 2px;
    margin-left: auto;
}
.nav-links > li {
    position: relative;
}
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-2);
    transition:
        color 0.2s,
        background 0.2s;
}
.nav-links > li:nth-child(1) > a:hover {
    background: var(--blue-wash);
    color: var(--blue);
}
.nav-links > li:nth-child(2) > a:hover {
    background: var(--green-wash);
    color: var(--green-deep);
}
.nav-links > li:nth-child(3) > a:hover {
    background: var(--sun-wash);
    color: var(--sun-deep);
}
.nav-links > li:nth-child(4) > a:hover {
    background: var(--coral-wash);
    color: var(--coral-deep);
}
.nav-links > li:nth-child(5) > a:hover {
    background: var(--grape-wash);
    color: var(--grape-deep);
}
.nav-links > li > a.here {
    color: var(--blue);
}
.nav-links > li > a.here::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -2px;
    height: 3px;
    background: var(--green);
    border-radius: 3px;
}
.sub {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 214px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.25s;
    box-shadow: 0 24px 50px -26px rgba(10, 11, 30, 0.45);
}
.nav-links > li:hover .sub {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.sub a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-2);
}
.sub li:nth-child(1) a:hover {
    background: var(--blue-wash);
    color: var(--blue);
}
.sub li:nth-child(2) a:hover {
    background: var(--green-wash);
    color: var(--green-deep);
}
.sub li:nth-child(3) a:hover {
    background: var(--sun-wash);
    color: var(--sun-deep);
}
.sub li:nth-child(4) a:hover {
    background: var(--coral-wash);
    color: var(--coral-deep);
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-cta .txt-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
}
.nav-cta .txt-link:hover {
    color: var(--blue);
}
.hamb {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 0;
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
#bar {
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--sky), var(--green));
    transition: width 0.12s linear;
}

/* ============ HERO ============ */
.hero {
    padding: 70px 0 96px;
    overflow: hidden;
    background:
        radial-gradient(
            680px 420px at 92% 4%,
            var(--sun-wash),
            transparent 60%
        ),
        radial-gradient(
            620px 460px at 4% 96%,
            var(--green-wash),
            transparent 58%
        ),
        radial-gradient(
            700px 500px at 40% 0%,
            var(--blue-wash),
            transparent 62%
        ),
        #fff;
}
.hero-split {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 56px;
    align-items: center;
}
.badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.live {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--line-hard);
    border-radius: 999px;
    padding: 7px 16px 7px 11px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-2);
}
.live i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    position: relative;
}
.live i::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--green);
    animation: pulseRing 1.8s ease-out infinite;
}
@keyframes pulseRing {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.rating-mini {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 500;
}
.rating-mini b {
    color: var(--ink);
    font-family: var(--font-display);
}
.rating-mini .st {
    color: var(--sun);
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(40px, 5.8vw, 72px);
    font-weight: 700;
    letter-spacing: -0.035em;
}
.hero h1 .roll {
    display: inline-grid;
    height: 1.06em;
    overflow: hidden;
    vertical-align: bottom;
    text-align: left;
}
.hero h1 .roll span {
    display: block;
    color: var(--blue);
    white-space: nowrap;
    transition:
        transform 0.42s cubic-bezier(0.2, 0.9, 0.3, 1),
        opacity 0.42s ease;
}
.hero h1 .hl {
    background: linear-gradient(transparent 86%, var(--sun) 86%);
    padding: 0 2px;
}
.hero-note {
    margin: 26px 0 34px;
    font-size: 17.5px;
    max-width: 520px;
}
.hero-note b {
    color: var(--ink);
    font-weight: 600;
}
.hero-do {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 44px;
}
.hero-meta div {
    flex: 1;
    min-width: 130px;
    border-radius: var(--r);
    padding: 16px 18px;
}
.hero-meta div:nth-child(1) {
    background: var(--blue-wash);
}
.hero-meta div:nth-child(2) {
    background: var(--green-wash);
}
.hero-meta div:nth-child(3) {
    background: var(--sun-wash);
}
.hero-meta b {
    display: block;
    font-family: var(--font-display);
    font-size: 27px;
    line-height: 1.1;
    color: var(--ink);
}
.hero-meta span {
    font-size: 13px;
    display: block;
    margin-top: 3px;
}

/* hero picture composition */
.art {
    position: relative;
    display: grid;
    place-items: center;
    min-height: min(560px, 88vw);
}
.art .disc {
    position: absolute;
    width: min(490px, 94%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--green), #8ee786);
    z-index: 0;
}
.art .ring {
    position: absolute;
    width: min(510px, 96%);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px dashed var(--sun);
    z-index: 0;
    animation: spin 44s linear infinite;
}
.art .ring::after {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--coral);
    transform: translateX(-50%);
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.art .dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(var(--sky) 2.4px, transparent 2.4px);
    background-size: 26px 26px;
    opacity: 0.35;
    -webkit-mask-image: radial-gradient(
        60% 60% at 50% 50%,
        transparent 55%,
        #000
    );
    mask-image: radial-gradient(60% 60% at 50% 50%, transparent 55%, #000);
}
.art-photo {
    position: relative;
    z-index: 2;
    width: min(500px, 100%);
    filter: drop-shadow(0 34px 40px rgba(10, 11, 30, 0.28));
    animation: bob 7s ease-in-out infinite;
}
.pop {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 16px;
    padding: 12px 17px;
    box-shadow: 0 22px 44px -22px rgba(10, 11, 30, 0.65);
}
.pop b {
    font-family: var(--font-display);
    font-size: 14px;
    display: block;
    line-height: 1.25;
}
.pop small {
    font-size: 11.5px;
    opacity: 0.7;
}
.pop .ic {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 14px;
}
.pop-1 {
    top: 4%;
    left: -2%;
    background: #fff;
    color: var(--ink);
    animation: bob 6s ease-in-out infinite;
}
.pop-1 .ic {
    background: var(--green);
    color: #06300c;
}
.pop-2 {
    bottom: 12%;
    right: -3%;
    background: var(--ink);
    color: #fff;
    animation: bob 6s ease-in-out 1.4s infinite;
}
.pop-2 .ic {
    background: var(--sun);
    color: #3d2b00;
}
.pop-3 {
    bottom: 0;
    left: 6%;
    background: var(--blue);
    color: #fff;
    animation: bob 6.5s ease-in-out 0.7s infinite;
}
.pop-3 .ic {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

/* ============ MARQUEE BAND ============ */
.band {
    background: var(--blue);
    color: #fff;
    overflow: hidden;
    padding: 17px 0;
}
.band .run {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: slideX 26s linear infinite;
}
.band span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(18px, 2.1vw, 26px);
}
.band span::after {
    content: "\2726";
    font-size: 16px;
}
.band span:nth-child(3n + 1)::after {
    color: var(--green);
}
.band span:nth-child(3n + 2)::after {
    color: var(--sun);
}
.band span:nth-child(3n + 3)::after {
    color: var(--sky);
}

/* ============ NETWORK STRIP ============ */
.netstrip {
    padding: 58px 0;
}
.netstrip h6 {
    text-align: center;
    font-family: var(--font-text);
    font-weight: 500;
    font-size: 13.5px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
}
.netstrip ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.netstrip li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 11px 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    transition: transform 0.25s;
    border: 1.5px solid transparent;
}
.netstrip li:hover {
    transform: translateY(-4px);
}
.netstrip li img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.netstrip li:nth-child(6n + 1) {
    background: var(--sun-wash);
    border-color: var(--sun);
}
.netstrip li:nth-child(6n + 2) {
    background: var(--coral-wash);
    border-color: var(--coral);
}
.netstrip li:nth-child(6n + 3) {
    background: var(--green-wash);
    border-color: var(--green);
}
.netstrip li:nth-child(6n + 4) {
    background: var(--sky-wash);
    border-color: var(--sky);
}
.netstrip li:nth-child(6n + 5) {
    background: var(--blue-wash);
    border-color: var(--blue-lit);
}
.netstrip li:nth-child(6n + 6) {
    background: var(--grape-wash);
    border-color: var(--grape);
}

/* ============ FIGURES ============ */
.figures {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.65);
    padding: 70px 0;
}
.figures .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.fig {
    border-radius: var(--r);
    padding: 26px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 0.3s,
        background 0.3s;
}
.fig:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.09);
}
.fig b {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 4.2vw, 50px);
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}
.fig:nth-child(1) b .u {
    color: var(--green);
}
.fig:nth-child(2) b .u {
    color: var(--sky);
}
.fig:nth-child(3) b .u {
    color: var(--sun);
}
.fig:nth-child(4) b .u {
    color: var(--coral);
}
.fig > span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

/* ============ MOSAIC (services) ============ */
.mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.cell {
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    border: 1.5px solid transparent;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.cell:hover {
    transform: translateY(-6px);
}
.cell .ic {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 21px;
    color: #fff;
    margin-bottom: 20px;
}
.cell h3 {
    font-size: 21px;
    margin-bottom: 10px;
}
.cell p {
    font-size: 15px;
}
.cell .more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
}
.cell .more i {
    transition: transform 0.25s;
}
.cell:hover .more i {
    transform: translateX(6px);
}
.m-7 {
    grid-column: span 7;
}
.m-5 {
    grid-column: span 5;
}
.m-4 {
    grid-column: span 4;
}
.m-12 {
    grid-column: span 12;
}
.cell .inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}
.cell .shot {
    width: 150px;
    border-radius: 16px;
}

.c-blue {
    background: var(--blue);
    border-color: var(--blue);
}
.c-blue h3,
.c-blue .more {
    color: #fff;
}
.c-blue p {
    color: rgba(255, 255, 255, 0.78);
}
.c-blue .ic {
    background: rgba(255, 255, 255, 0.18);
}
.c-blue:hover {
    box-shadow: 0 26px 50px -26px rgba(0, 42, 233, 0.85);
}
.c-green {
    background: var(--green-wash);
    border-color: var(--green);
}
.c-green .ic {
    background: var(--green);
    color: #06300c;
}
.c-green:hover {
    box-shadow: 0 26px 50px -26px rgba(82, 208, 72, 0.9);
}
.c-sun {
    background: var(--sun-wash);
    border-color: var(--sun);
}
.c-sun .ic {
    background: var(--sun);
    color: #3d2b00;
}
.c-sun:hover {
    box-shadow: 0 26px 50px -26px rgba(255, 197, 49, 0.95);
}
.c-coral {
    background: var(--coral-wash);
    border-color: var(--coral);
}
.c-coral .ic {
    background: var(--coral);
}
.c-coral:hover {
    box-shadow: 0 26px 50px -26px rgba(255, 106, 77, 0.9);
}
.c-sky {
    background: var(--sky-wash);
    border-color: var(--sky);
}
.c-sky .ic {
    background: var(--sky);
}
.c-sky:hover {
    box-shadow: 0 26px 50px -26px rgba(0, 182, 240, 0.9);
}
.c-grape {
    background: var(--grape-wash);
    border-color: var(--grape);
}
.c-grape .ic {
    background: var(--grape);
}
.c-grape:hover {
    box-shadow: 0 26px 50px -26px rgba(123, 63, 228, 0.9);
}
.c-ink {
    background: var(--ink);
    border-color: var(--ink);
}
.c-ink h3,
.c-ink .more {
    color: #fff;
}
.c-ink p {
    color: rgba(255, 255, 255, 0.7);
}
.c-ink .ic {
    background: var(--green);
    color: #06300c;
}
.c-ink:hover {
    box-shadow: 0 26px 50px -26px rgba(10, 11, 30, 0.9);
}

/* ============ FLOW / TIMELINE ============ */
.flow {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 66px;
    align-items: start;
}
.flow-list {
    position: relative;
}
.flow-list::before {
    content: "";
    position: absolute;
    left: 29px;
    top: 24px;
    bottom: 24px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(var(--blue), var(--sky), var(--green));
}
.step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    padding: 22px 0;
    position: relative;
}
.step .num {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}
.step:hover .num {
    transform: scale(1.08) rotate(-6deg);
}
.step:nth-child(1) .num {
    background: var(--blue);
}
.step:nth-child(2) .num {
    background: var(--sky);
}
.step:nth-child(3) .num {
    background: var(--green);
    color: #06300c;
}
.step h4 {
    font-size: 21px;
    margin-bottom: 8px;
}
.step p {
    font-size: 15px;
}
.step .mini {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-deep);
}
.flow-side {
    position: sticky;
    top: 112px;
}
.flow-side .frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--sky-wash), var(--blue-wash));
}
.flow-quote {
    margin-top: 20px;
    background: var(--sun);
    color: #3d2b00;
    border-radius: var(--r);
    padding: 26px 30px;
}
.flow-quote p {
    font-family: var(--font-display);
    font-size: 19px;
    line-height: 1.45;
    font-weight: 500;
}
.flow-quote small {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.75;
}

/* ============ PLANS ============ */
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 46px 0 26px;
}
.tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1.5px solid var(--line-hard);
    background: #fff;
    padding: 11px 22px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--ink-2);
    cursor: pointer;
    transition: 0.25s;
}
.tab img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}
.tab:hover {
    transform: translateY(-3px);
}
.tab:nth-child(1).live-tab {
    background: var(--sun);
    border-color: var(--sun);
    color: #3d2b00;
}
.tab:nth-child(2).live-tab {
    background: var(--coral);
    border-color: var(--coral);
    color: #fff;
}
.tab:nth-child(3).live-tab {
    background: var(--green);
    border-color: var(--green);
    color: #06300c;
}
.tab:nth-child(4).live-tab {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}
.pane {
    display: none;
}
.pane.live-pane {
    display: block;
    animation: fadeUp 0.45s ease;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.plan-box {
    border: 1.5px solid var(--line);
    border-radius: var(--r-lg);
    background: #fff;
    overflow: hidden;
}
.plan-head,
.plan-row {
    display: grid;
    grid-template-columns: 1.7fr 0.9fr 0.9fr 0.8fr 96px;
    gap: 18px;
    align-items: center;
    padding: 16px 26px;
}
.plan-head {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.plan-head span:nth-child(4) {
    text-align: right;
}
.plan-scroll {
    max-height: 520px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--line-hard) transparent;
}
.plan-scroll::-webkit-scrollbar {
    width: 8px;
}
.plan-scroll::-webkit-scrollbar-thumb {
    background: var(--line-hard);
    border-radius: 8px;
}
.plan-row {
    border-bottom: 1px solid var(--line);
    transition: background 0.22s;
}
.plan-row:last-child {
    border-bottom: 0;
}
.plan-row:nth-child(even) {
    background: #fbfcff;
}
.plan-row:hover {
    background: var(--sun-wash);
}
.plan-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    font-size: 16px;
}
.plan-name small {
    display: block;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 12.5px;
    color: var(--muted);
}
.plan-size {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-2);
}
.plan-size:nth-of-type(2) i {
    color: var(--sky);
}
.plan-size i {
    color: var(--grape);
}
.plan-cost {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    color: var(--green-deep);
    text-align: right;
}
.plan-row .btn {
    width: 100%;
    background: transparent;
    color: var(--ink);
    border-color: var(--line-hard);
}
.plan-row:hover .btn {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
.plan-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 26px;
    font-size: 14.5px;
}
.plan-note i {
    color: var(--sky);
}

/* ============ VAULT / WALLET ============ */
.vault {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.vault-art {
    position: relative;
}
.vault-art .frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--grape-wash), var(--coral-wash));
}
.vault-chip {
    position: absolute;
    top: -18px;
    right: -14px;
    background: #fff;
    border-radius: 18px;
    padding: 14px 20px;
    box-shadow: var(--lift);
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1.5px solid var(--green);
}
.vault-chip .ic {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--green);
    color: #06300c;
    display: grid;
    place-items: center;
    font-size: 15px;
}
.vault-chip b {
    display: block;
    font-family: var(--font-display);
    font-size: 14.5px;
    color: var(--ink);
}
.vault-chip small {
    font-size: 12px;
}
.check {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--r);
    margin-bottom: 10px;
    transition: transform 0.25s;
}
.check:hover {
    transform: translateX(6px);
}
.check:nth-child(1) {
    background: var(--blue-wash);
}
.check:nth-child(2) {
    background: var(--green-wash);
}
.check:nth-child(3) {
    background: var(--sun-wash);
}
.check:nth-child(4) {
    background: var(--coral-wash);
}
.check .tick {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 12px;
    margin-top: 2px;
    color: #fff;
}
.check:nth-child(1) .tick {
    background: var(--blue);
}
.check:nth-child(2) .tick {
    background: var(--green);
    color: #06300c;
}
.check:nth-child(3) .tick {
    background: var(--sun);
    color: #3d2b00;
}
.check:nth-child(4) .tick {
    background: var(--coral);
}
.check h6 {
    font-size: 16.5px;
    margin-bottom: 4px;
}
.check p {
    font-size: 14.5px;
}
.vault .btn {
    margin-top: 24px;
}

/* ============ EDGE MOSAIC ============ */
.edge {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.edge-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 32px;
    transition: 0.3s;
    border-top: 5px solid var(--blue);
}
.edge-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lift);
}
.edge-card .n {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: var(--blue);
}
.edge-card h5 {
    font-size: 20px;
    margin: 14px 0 9px;
}
.edge-card p {
    font-size: 14.5px;
}
.edge-card:nth-child(2) {
    border-top-color: var(--green);
}
.edge-card:nth-child(2) .n {
    color: var(--green-deep);
}
.edge-card:nth-child(3) {
    border-top-color: var(--sun);
}
.edge-card:nth-child(3) .n {
    color: var(--sun-deep);
}
.edge-card:nth-child(4) {
    border-top-color: var(--coral);
}
.edge-card:nth-child(4) .n {
    color: var(--coral-deep);
}
.edge-card:nth-child(5) {
    border-top-color: var(--sky);
}
.edge-card:nth-child(5) .n {
    color: var(--sky-deep);
}
.edge-card:nth-child(6) {
    border-top-color: var(--grape);
}
.edge-card:nth-child(6) .n {
    color: var(--grape-deep);
}

/* ============ AGENT ============ */
.agent {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--r-lg);
    padding: 66px 60px;
    position: relative;
    overflow: hidden;
}
.agent::before {
    content: "";
    position: absolute;
    right: -160px;
    top: -160px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 42, 233, 0.6), transparent 68%);
}
.agent::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(82, 208, 72, 0.35),
        transparent 66%
    );
}
.agent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
}
.agent h2 {
    color: #fff;
    font-size: clamp(29px, 3.7vw, 44px);
}
.agent h2 u {
    background: linear-gradient(transparent 86%, var(--sun) 86%);
    color: #fff;
}
.agent p {
    margin-top: 16px;
    font-size: 16px;
}
.agent-perks {
    margin-top: 32px;
    display: grid;
    gap: 12px;
}
.agent-perks li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    border-radius: var(--r);
    background: rgba(255, 255, 255, 0.06);
    transition: 0.25s;
}
.agent-perks li:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateX(6px);
}
.agent-perks .ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 17px;
}
.agent-perks li:nth-child(1) .ic {
    background: var(--sun);
    color: #3d2b00;
}
.agent-perks li:nth-child(2) .ic {
    background: var(--sky);
    color: #fff;
}
.agent-perks li:nth-child(3) .ic {
    background: var(--green);
    color: #06300c;
}
.agent-perks h6 {
    color: #fff;
    font-size: 16.5px;
}
.agent-perks small {
    font-size: 13.5px;
}
.agent-perks .pc {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--green);
}
.agent .btn {
    margin-top: 34px;
}
.agent-art {
    position: relative;
}
.agent-art .frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--sun-wash), var(--coral-wash));
}
.agent-flag {
    position: absolute;
    left: -16px;
    bottom: 26px;
    background: var(--coral);
    color: #fff;
    border-radius: 18px;
    padding: 16px 22px;
    box-shadow: 0 22px 44px -20px rgba(255, 106, 77, 0.8);
}
.agent-flag b {
    display: block;
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1;
}
.agent-flag small {
    font-size: 12.5px;
    font-weight: 600;
}

/* ============ VOICES ============ */
.voices {
    columns: 3;
    column-gap: 20px;
    margin-top: 52px;
}
.voice {
    break-inside: avoid;
    border-radius: var(--r-lg);
    padding: 28px;
    margin-bottom: 20px;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    border: 1.5px solid transparent;
}
.voice:hover {
    transform: translateY(-5px);
    box-shadow: var(--lift);
}
.voice .st {
    font-size: 13.5px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--sun-deep);
}
.voice q {
    display: block;
    font-size: 15.5px;
    color: var(--ink-2);
    quotes: none;
}
.voice q::before,
.voice q::after {
    content: "";
}
.voice footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(10, 11, 30, 0.09);
}
.voice img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    object-fit: cover;
}
.voice h6 {
    font-size: 15px;
}
.voice small {
    font-size: 12.5px;
    font-weight: 600;
}
.voice:nth-child(1) {
    background: var(--blue);
    border-color: var(--blue);
}
.voice:nth-child(1) q {
    color: #fff;
    font-family: var(--font-display);
    font-size: 19px;
    line-height: 1.5;
}
.voice:nth-child(1) h6 {
    color: #fff;
}
.voice:nth-child(1) small {
    color: var(--sun);
}
.voice:nth-child(1) .st {
    color: var(--sun);
}
.voice:nth-child(1) footer {
    border-top-color: rgba(255, 255, 255, 0.24);
}
.voice:nth-child(2) {
    background: var(--sun-wash);
    border-color: var(--sun);
}
.voice:nth-child(2) small {
    color: var(--sun-deep);
}
.voice:nth-child(3) {
    background: var(--green-wash);
    border-color: var(--green);
}
.voice:nth-child(3) small {
    color: var(--green-deep);
}
.voice:nth-child(4) {
    background: var(--sky-wash);
    border-color: var(--sky);
}
.voice:nth-child(4) small {
    color: var(--sky-deep);
}
.voice:nth-child(5) {
    background: var(--coral-wash);
    border-color: var(--coral);
}
.voice:nth-child(5) small {
    color: var(--coral-deep);
}
.voice:nth-child(6) {
    background: var(--grape-wash);
    border-color: var(--grape);
}
.voice:nth-child(6) small {
    color: var(--grape-deep);
}

/* ============ APP BAND ============ */
.appband {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(130deg, var(--green), #7ee275);
    border-radius: var(--r-lg);
    padding: 56px 60px;
    overflow: hidden;
    position: relative;
}
.appband::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.4) 1.8px,
        transparent 1.8px
    );
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(100deg, transparent 45%, #000);
    mask-image: linear-gradient(100deg, transparent 45%, #000);
}
.appband > * {
    position: relative;
}
.appband h2 {
    color: #06300c;
    font-size: clamp(29px, 3.7vw, 44px);
}
.appband p {
    color: #0e4413;
    margin-top: 14px;
    max-width: 460px;
    font-size: 16px;
}
.stores {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.stores a {
    transition: transform 0.25s;
}
.stores a:hover {
    transform: translateY(-4px);
}
.stores img {
    height: 52px;
}
.appband-art {
    display: flex;
    justify-content: flex-end;
}
.appband-art img {
    width: min(260px, 100%);
    filter: drop-shadow(0 26px 40px rgba(6, 48, 12, 0.35));
}

/* ============ FAQ ============ */
.faq-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
    align-items: start;
}
.q {
    border-radius: var(--r);
    background: #fff;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1.5px solid var(--line);
    transition:
        border-color 0.28s,
        box-shadow 0.28s;
}
.q.opened {
    border-color: var(--blue);
    box-shadow: var(--lift);
}
.q > button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16.5px;
    color: var(--ink);
}
.q .sign {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: var(--soft);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 12px;
    transition: 0.3s;
}
.q.opened .sign {
    background: var(--blue);
    color: #fff;
    transform: rotate(45deg);
}
.q .ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.q .ans p {
    padding: 0 22px 22px;
    font-size: 14.5px;
    white-space: pre-line;
}
.faq-help {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--sun-wash);
    border: 1.5px solid var(--sun);
    border-radius: var(--r-lg);
    padding: 26px 32px;
}
.faq-help h5 {
    font-size: 19px;
}
.faq-help p {
    font-size: 14.5px;
    margin-top: 4px;
}

/* ============ FOOTER ============ */
.foot {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.62);
    padding-top: 80px;
    overflow: hidden;
}
.sub-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
    background: linear-gradient(120deg, var(--blue), var(--grape));
    border-radius: var(--r-lg);
    padding: 40px 44px;
}
.sub-band h3 {
    color: #fff;
    font-size: clamp(23px, 2.6vw, 31px);
}
.sub-band p {
    margin-top: 8px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.8);
}
.sub-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sub-form input {
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 14px 22px;
    color: #fff;
    font-family: var(--font-text);
    font-size: 15px;
    min-width: 260px;
    outline: 0;
    transition: border-color 0.25s;
}
.sub-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}
.sub-form input:focus {
    border-color: var(--sun);
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 44px;
    padding: 64px 0 50px;
}
.foot-brand .logo {
    color: #fff;
}
.foot-brand p {
    margin: 20px 0;
    font-size: 14.5px;
    max-width: 310px;
}
.social {
    display: flex;
    gap: 9px;
}
.social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 15px;
    transition: 0.25s;
}
.social a:nth-child(1):hover {
    background: var(--coral);
}
.social a:nth-child(2):hover {
    background: var(--sky);
}
.social a:nth-child(3):hover {
    background: var(--green);
    color: #06300c;
}
.social a:nth-child(4):hover {
    background: var(--blue);
}
.social a:hover {
    transform: translateY(-4px);
}
.foot-grid h6 {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-family: var(--font-display);
    margin-bottom: 20px;
}
.foot-list li {
    margin-bottom: 11px;
}
.foot-list a {
    font-size: 14.5px;
    transition:
        color 0.22s,
        padding-left 0.22s;
}
.foot-list a:hover {
    color: var(--sun);
    padding-left: 6px;
}
.foot-touch li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14.5px;
}
.foot-touch i {
    color: var(--green);
    margin-top: 5px;
}
.foot-touch a:hover {
    color: #fff;
}
.wordmark {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.04em;
    font-size: clamp(46px, 13vw, 180px);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
    text-align: center;
    padding-bottom: 14px;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
}
.foot-end {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    font-size: 13.5px;
}
.foot-end .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.foot-end a {
    color: var(--sun);
    font-weight: 600;
}

/* ============ FLOATING ============ */
#up {
    position: fixed;
    right: 22px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 0;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: 0.3s;
    box-shadow: 0 16px 30px -14px rgba(0, 42, 233, 0.9);
}
#up.on {
    opacity: 1;
    visibility: visible;
    transform: none;
}
#up:hover {
    background: var(--green);
    color: #06300c;
}

/* ============ DRAWER ============ */
.veil {
    position: fixed;
    inset: 0;
    background: rgba(10, 11, 30, 0.55);
    backdrop-filter: blur(3px);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.panel-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(330px, 86vw);
    background: #fff;
    z-index: 1100;
    transform: translateX(102%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}
body.menu-open .panel-menu {
    transform: none;
}
body.menu-open .veil {
    opacity: 1;
    visibility: visible;
}
.pm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}
.pm-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 0;
    background: var(--soft);
    color: var(--ink);
    font-size: 15px;
    cursor: pointer;
}
.pm-links li {
    border-bottom: 1px solid var(--line);
}
.pm-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 2px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16.5px;
    color: var(--ink);
    transition: 0.22s;
}
.pm-links a:hover {
    color: var(--blue);
    padding-left: 8px;
}
.pm-links i {
    font-size: 11px;
    color: var(--muted);
}
.pm-cta {
    display: grid;
    gap: 10px;
    margin: 26px 0;
}
.pm-touch {
    margin-top: auto;
    padding-top: 20px;
    font-size: 13.5px;
    display: grid;
    gap: 9px;
}
.pm-touch i {
    color: var(--blue);
    width: 16px;
}
.panel-menu .social {
    margin-top: 16px;
}
.panel-menu .social a {
    background: var(--soft);
    color: var(--ink);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
    .nav-links {
        display: none;
    }
    .hamb {
        display: block;
    }
    .nav .shell {
        gap: 14px;
    }
    .nav-cta {
        margin-left: auto;
    }
    .nav-cta .txt-link {
        display: none;
    }
    .hero-split,
    .flow,
    .vault,
    .agent-grid,
    .appband {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    /* hero reads centred once it stacks */
    .hero-copy {
        text-align: center;
    }
    .hero-copy .badge-row,
    .hero-copy .hero-do,
    .hero-copy .hero-meta {
        justify-content: center;
    }
    .hero-note {
        margin-inline: auto;
    }
    .hero h1 .roll {
        text-align: center;
    }

    /* footer reads centred once it stacks */
    .sub-band,
    .foot-grid {
        text-align: center;
    }
    .sub-form {
        justify-content: center;
    }
    .foot-brand .logo {
        justify-content: center;
    }
    .foot-brand p {
        margin-inline: auto;
    }
    .social {
        justify-content: center;
    }
    .foot-touch li {
        justify-content: center;
    }
    .foot-list a:hover {
        padding-left: 0;
    }
    .foot-end .shell {
        justify-content: center;
        text-align: center;
    }
    .flow-side {
        position: static;
    }
    .hero {
        padding: 56px 0 80px;
    }
    .art {
        min-height: min(500px, 92vw);
    }
    .mosaic {
        grid-template-columns: repeat(6, 1fr);
    }
    .m-7,
    .m-5,
    .m-12 {
        grid-column: span 6;
    }
    .m-4 {
        grid-column: span 3;
    }
    .edge {
        grid-template-columns: 1fr 1fr;
    }
    .voices {
        columns: 2;
    }
    .figures .grid {
        grid-template-columns: 1fr 1fr;
    }
    .faq-cols {
        grid-template-columns: 1fr;
    }
    .agent {
        padding: 48px 32px;
    }
    .appband {
        padding: 44px 32px;
    }
    .appband-art {
        justify-content: center;
    }
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sub-band {
        grid-template-columns: 1fr;
        padding: 32px 28px;
    }
}
@media (max-width: 720px) {
    .block {
        padding: 76px 0;
    }
    .mosaic {
        grid-template-columns: 1fr;
    }
    .m-7,
    .m-5,
    .m-4,
    .m-12 {
        grid-column: span 1;
    }
    .cell .inner {
        grid-template-columns: 1fr;
    }
    .cell .shot {
        width: 120px;
    }
    .edge {
        grid-template-columns: 1fr;
    }
    .voices {
        columns: 1;
    }
    .hero-meta div {
        min-width: 110px;
        padding: 14px;
    }
    .hero-meta b {
        font-size: 22px;
    }
    .pop {
        padding: 10px 13px;
    }
    .pop-1 {
        left: -4px;
    }
    .pop-2 {
        right: -4px;
    }
    .pop-3 {
        display: none;
    }
    .plan-head {
        display: none;
    }
    .plan-row {
        grid-template-columns: 1fr auto;
        gap: 6px 14px;
        padding: 18px;
    }
    .plan-row .plan-size {
        font-size: 13px;
    }
    .plan-row > *:nth-child(1) {
        grid-area: 1/1;
    }
    .plan-row > *:nth-child(2) {
        grid-area: 2/1;
    }
    .plan-row > *:nth-child(3) {
        grid-area: 3/1;
    }
    .plan-row > *:nth-child(4) {
        grid-area: 1/2;
    }
    .plan-row > *:nth-child(5) {
        grid-column: 2;
        grid-row: 2/4;
        align-self: center;
        width: auto;
    }
    .foot-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .sub-form {
        width: 100%;
    }
    .sub-form input {
        min-width: 0;
        flex: 1;
    }
    .agent-perks li {
        grid-template-columns: auto 1fr;
        gap: 12px;
    }
    .agent-perks .pc {
        grid-column: 2;
    }
}
