@charset "utf-8";
/* =========================================================================
 *  NOVA — landing design system
 *  Brand: violet #3d197d · magenta #ee25d3
 *
 *  01  Tokens
 *  02  Reset & base
 *  03  Layout primitives
 *  04  Buttons & links
 *  05  Header, nav, drawer
 *  06  Hero
 *  07  Logo strip
 *  08  About
 *  09  Services mosaic
 *  10  Journey rail
 *  11  Creed band (dark)
 *  12  Rates
 *  13  Agents
 *  14  Developers
 *  15  Voices
 *  16  App band
 *  17  FAQ
 *  18  Closer
 *  19  Footer
 *  20  Motion & chrome
 *  21  Responsive
 * ====================================================================== */

/* ---------------------------------------------------------------- 01 --- */
:root {
    /* Violet — the structural colour */
    --v-950: #100524;
    --v-900: #190839;
    --v-850: #210b4c;
    --v-800: #2a0f5e;
    --v-700: #3d197d;
    --v-600: #4f2399;
    --v-500: #6633bd;
    --v-400: #8a5fd6;
    --v-300: #b192e8;
    --v-200: #d6c6f5;
    --v-100: #ebe3fb;
    --v-50:  #f6f2fe;

    /* Magenta — the energy */
    --m-900: #59084f;
    --m-800: #7d0b6f;
    --m-700: #a70f94;
    --m-600: #cf16b6;
    --m-500: #ee25d3;
    --m-400: #f455de;
    --m-300: #f987e9;
    --m-200: #fcbcf3;
    --m-100: #fde6fa;
    --m-50:  #fef4fd;

    /* Neutrals, tuned violet */
    --ink:      #170c2c;
    --ink-soft: #3a2f55;
    --muted:    #6d6489;
    --faint:    #9b93b3;
    --line:     #e7e2f2;
    --line-2:   #f0ecf9;
    --paper:    #ffffff;
    --canvas:   #fbfaff;
    --canvas-2: #f5f2fd;

    /* Signature */
    --grad:      linear-gradient(118deg, var(--v-700) 0%, var(--v-600) 34%, var(--m-600) 78%, var(--m-500) 100%);
    --grad-soft: linear-gradient(118deg, var(--v-100), var(--m-100));
    --grad-line: linear-gradient(90deg, var(--v-700), var(--m-500));

    /* Elevation */
    --sh-1: 0 1px 2px rgba(23, 12, 44, .05), 0 2px 8px rgba(23, 12, 44, .04);
    --sh-2: 0 2px 6px rgba(23, 12, 44, .05), 0 12px 30px -12px rgba(23, 12, 44, .12);
    --sh-3: 0 24px 60px -22px rgba(42, 15, 94, .28), 0 4px 14px rgba(42, 15, 94, .07);
    --sh-4: 0 44px 90px -30px rgba(42, 15, 94, .42);
    --sh-m: 0 18px 44px -16px rgba(238, 37, 211, .45);

    /* Geometry */
    --r-xs: 10px;
    --r-sm: 14px;
    --r-md: 20px;
    --r-lg: 28px;
    --r-xl: 38px;
    --shell: 1260px;
    --gut: 26px;
    --head-h: 84px;

    --f-display: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
    --f-text: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --f-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

    --ease: cubic-bezier(.22, .68, 0, 1);
}

/* ---------------------------------------------------------------- 02 --- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    background: var(--canvas);
    color: var(--ink-soft);
    font-family: var(--f-text);
    font-size: 16.5px;
    line-height: 1.68;
    font-weight: 400;
    letter-spacing: -.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.mobile-menu-open { overflow: hidden; }

h1, h2, h3, h4, h5 {
    font-family: var(--f-display);
    color: var(--ink);
    margin: 0 0 .55em;
    line-height: 1.08;
    letter-spacing: -.032em;
    font-weight: 600;
}

h1 { font-size: clamp(2.7rem, 1.15rem + 4.2vw, 4.55rem); font-weight: 700; letter-spacing: -.042em; }
h2 { font-size: clamp(2rem, 1.15rem + 2.35vw, 3.15rem); }
h3 { font-size: 1.24rem; letter-spacing: -.025em; }
h4 { font-size: 1.03rem; letter-spacing: -.02em; }
h5 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--f-text); font-weight: 700; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

em {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

::selection { background: var(--m-500); color: #fff; }

:focus-visible {
    outline: 2px solid var(--m-500);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ---------------------------------------------------------------- 03 --- */
.shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 var(--gut);
}

.band {
    position: relative;
    padding: clamp(66px, 7vw, 118px) 0;
}
.band--tight { padding: clamp(48px, 5vw, 78px) 0; }
.band--flush-top { padding-top: 0; }

.band--soft { background: var(--canvas-2); }

.band--ink {
    background: var(--v-950);
    color: rgba(255, 255, 255, .74);
    overflow: hidden;
}
.band--ink h1, .band--ink h2, .band--ink h3, .band--ink h4, .band--ink h5 { color: #fff; }

/* An aurora wash for light sections */
.band--aura::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(760px 380px at 12% 0%, rgba(61, 25, 125, .07), transparent 70%),
        radial-gradient(620px 360px at 92% 26%, rgba(238, 37, 211, .06), transparent 70%);
}
.band > .shell { position: relative; z-index: 1; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .715rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--v-600);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: var(--grad-line);
}
.band--ink .eyebrow { color: var(--m-300); }

.band__head { max-width: 660px; margin-bottom: clamp(36px, 4vw, 58px); }
.band__head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }
.band__head.center { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.band__head.center .eyebrow::before { display: none; }
.band__head.center .eyebrow { justify-content: center; }

.band__head--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .82fr);
    gap: 30px 60px;
    align-items: end;
}
.band__head--split h2 { margin-bottom: 0; }
.band__head--split .band__aside { padding-bottom: 8px; }
.band--ink .band__head p, .band--ink .band__aside p { color: rgba(255, 255, 255, .66); }

.lede { font-size: 1.08rem; color: var(--muted); }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px 7px 12px;
    border-radius: 999px;
    font-size: .775rem;
    font-weight: 600;
    letter-spacing: -.01em;
    background: var(--v-50);
    color: var(--v-700);
    border: 1px solid var(--v-100);
}
.pill i { color: var(--m-500); font-size: .82em; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--m-100);
    color: var(--m-700);
}

/* ---------------------------------------------------------------- 04 --- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 27px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--f-text);
    font-size: .935rem;
    font-weight: 700;
    letter-spacing: -.012em;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    transition: transform .32s var(--ease), box-shadow .32s var(--ease),
                background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn i { font-size: .84em; transition: transform .32s var(--ease); }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

.btn--primary {
    background: var(--grad);
    background-size: 160% 100%;
    color: #fff;
    box-shadow: var(--sh-m);
}
.btn--primary:hover { background-position: 100% 0; box-shadow: 0 22px 52px -16px rgba(238, 37, 211, .58); }

.btn--dark { background: var(--v-800); color: #fff; box-shadow: var(--sh-2); }
.btn--dark:hover { background: var(--v-700); }

.btn--outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--v-300); background: var(--v-50); color: var(--v-700); }

.btn--light { background: #fff; color: var(--v-800); box-shadow: var(--sh-2); }
.btn--light:hover { background: var(--v-50); }

.btn--glass {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .26);
    color: #fff;
    backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255, 255, 255, .2); }

.btn--sm { padding: 11px 20px; font-size: .86rem; }
.btn--lg { padding: 18px 34px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.tlink {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: .9rem;
    color: var(--v-700);
    letter-spacing: -.012em;
}
.tlink i { font-size: .78em; transition: transform .3s var(--ease); }
.tlink:hover { color: var(--m-600); }
.tlink:hover i { transform: translateX(4px); }
.band--ink .tlink { color: var(--m-300); }
.band--ink .tlink:hover { color: #fff; }

/* Card shell shared by most panels */
.card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-1);
    transition: transform .42s var(--ease), box-shadow .42s var(--ease), border-color .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-3); border-color: var(--v-100); }

/* Pointer-tracked wash, fed by app.js (--mx / --my) */
[data-spotlight]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
    background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%),
                rgba(238, 37, 211, .09), transparent 62%);
}
[data-spotlight]:hover::after { opacity: 1; }

.ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 1.15rem;
    background: var(--v-50);
    color: var(--v-700);
    border: 1px solid var(--v-100);
    transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.card:hover > .ic, .card:hover .ic {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    transform: rotate(-4deg);
}

/* ---------------------------------------------------------------- 05 --- */
.topline {
    position: relative;
    z-index: 60;
    background: var(--v-950);
    color: rgba(255, 255, 255, .82);
    font-size: .8rem;
    letter-spacing: -.005em;
}
.topline__in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 40px;
    padding: 7px 0;
    text-align: center;
}
.topline b { color: #fff; font-weight: 700; }
.topline .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--m-400);
    box-shadow: 0 0 0 0 rgba(238, 37, 211, .6);
    animation: beat 2.4s infinite;
    flex: none;
}
.topline a { color: var(--m-300); font-weight: 700; }
.topline a:hover { color: #fff; }
.topline__sep { color: rgba(255, 255, 255, .26); }

@keyframes beat {
    0%   { box-shadow: 0 0 0 0 rgba(238, 37, 211, .55); }
    70%  { box-shadow: 0 0 0 9px rgba(238, 37, 211, 0); }
    100% { box-shadow: 0 0 0 0 rgba(238, 37, 211, 0); }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--head-h);
    display: flex;
    align-items: center;
    transition: transform .45s var(--ease), background-color .35s ease,
                box-shadow .35s ease, height .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
}
.site-header > .shell { width: 100%; }
.site-header.is-stuck {
    height: calc(var(--head-h) - 12px);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px -22px rgba(23, 12, 44, .5);
}
.site-header.is-hidden { transform: translateY(-118%); }

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    height: 100%;
    min-width: 0;
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand__mark {
    width: 44px; height: 44px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: var(--grad);
    box-shadow: var(--sh-m);
    overflow: hidden;
    flex: none;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__name { display: flex; flex-direction: column; line-height: 1.16; min-width: 0; }
.brand__name b {
    font-family: var(--f-display);
    font-size: 1.14rem;
    font-weight: 700;
    letter-spacing: -.035em;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.brand__name span {
    font-size: .7rem;
    color: var(--faint);
    letter-spacing: .02em;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn__short { display: none; }

.main-menu__nav { margin-left: auto; }
.main-menu__list { display: flex; align-items: center; gap: 3px; }
.main-menu__list > li { position: relative; }
.main-menu__list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: .905rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: -.015em;
    transition: color .25s ease, background-color .25s ease;
}
.main-menu__list > li > a i { font-size: .62em; opacity: .6; transition: transform .3s var(--ease); }
.main-menu__list > li > a:hover,
.main-menu__list > li > a.active { color: var(--v-700); background: var(--v-50); }
.main-menu__list > li.dropdown:hover > a i { transform: rotate(180deg); }

.main-menu__list .dropdown > ul {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, 10px);
    min-width: 236px;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--sh-3);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.main-menu__list .dropdown:hover > ul { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.main-menu__list .dropdown > ul a {
    display: block;
    padding: 10px 13px;
    border-radius: 11px;
    font-size: .89rem;
    font-weight: 600;
    color: var(--ink-soft);
    transition: background-color .2s ease, color .2s ease;
}
.main-menu__list .dropdown > ul a:hover { background: var(--v-50); color: var(--v-700); }

.nav__tools { display: flex; align-items: center; gap: 10px; flex: none; }
.nav__signin {
    padding: 11px 16px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    transition: background-color .25s ease, color .25s ease;
}
.nav__signin:hover { background: var(--v-50); color: var(--v-700); }

.burger {
    display: none;
    width: 46px; height: 46px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 14px;
    color: var(--ink);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.burger:hover { border-color: var(--v-300); color: var(--v-700); }

/* Drawer */
.mobile-nav__wrapper {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: opacity .4s ease, visibility .4s ease;
}
.mobile-nav__wrapper.expanded { opacity: 1; visibility: visible; }
.mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 5, 36, .58);
    backdrop-filter: blur(4px);
}
.mobile-nav__content {
    position: absolute;
    top: 0; right: 0;
    width: min(400px, 88vw);
    height: 100%;
    overflow-y: auto;
    padding: 26px 24px 40px;
    background: var(--paper);
    box-shadow: -30px 0 70px -30px rgba(23, 12, 44, .5);
    transform: translateX(100%);
    transition: transform .48s var(--ease);
}
.mobile-nav__wrapper.expanded .mobile-nav__content { transform: none; }
.mobile-nav__close {
    position: absolute;
    top: 22px; right: 22px;
    width: 40px; height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--canvas);
    cursor: pointer;
}
.mobile-nav__content .logo-box { margin-bottom: 26px; }
.mobile-nav__content .brand__mark { width: 46px; height: 46px; }
.mobile-nav__container ul { display: block; }
.mobile-nav__container li { border-bottom: 1px solid var(--line-2); position: relative; }
.mobile-nav__container li > a {
    display: block;
    padding: 13px 44px 13px 2px;
    font-family: var(--f-display);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.02em;
}
.mobile-nav__container li > a i { display: none; }
.mobile-nav__container li > a:hover { color: var(--m-600); }
.mobile-nav__container .submenu-toggle {
    position: absolute;
    top: 6px; right: 0;
    width: 34px; height: 34px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--canvas);
    color: var(--v-700);
    font-size: .72rem;
    cursor: pointer;
}
.mobile-nav__container .has-submenu > ul {
    display: none;
    padding: 2px 0 10px 14px;
    border-left: 2px solid var(--v-100);
    margin-left: 2px;
}
.mobile-nav__container .has-submenu.open > ul { display: block; }
.mobile-nav__container .has-submenu > ul li { border: 0; }
.mobile-nav__container .has-submenu > ul a { font-family: var(--f-text); font-size: .92rem; padding: 8px 0; color: var(--muted); }
.mobile-nav__cta { display: grid; gap: 10px; margin: 24px 0 22px; }
.mobile-nav__contact { display: grid; gap: 12px; font-size: .9rem; color: var(--muted); }
.mobile-nav__contact li { display: flex; gap: 11px; align-items: flex-start; }
.mobile-nav__contact i { color: var(--m-500); margin-top: 5px; }
.mobile-nav__social { display: flex; gap: 9px; margin-top: 22px; }
.mobile-nav__social a,
.social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--v-50);
    color: var(--v-700);
    border: 1px solid var(--v-100);
    transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.mobile-nav__social a:hover,
.social a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }

/* Header sitting over the hero image */
.site-header--over .brand__name b { color: #fff; }
.site-header--over .brand__name span { color: rgba(255, 255, 255, .58); }
.site-header--over .main-menu__list > li > a { color: rgba(255, 255, 255, .84); }
.site-header--over .main-menu__list > li > a:hover,
.site-header--over .main-menu__list > li > a.active { color: #fff; background: rgba(255, 255, 255, .14); }
.site-header--over .nav__signin { color: #fff; }
.site-header--over .nav__signin:hover { background: rgba(255, 255, 255, .14); }
.site-header--over .burger { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .26); color: #fff; }

.site-header--over.is-stuck .brand__name b { color: var(--ink); }
.site-header--over.is-stuck .brand__name span { color: var(--faint); }
.site-header--over.is-stuck .main-menu__list > li > a { color: var(--ink-soft); }
.site-header--over.is-stuck .main-menu__list > li > a:hover,
.site-header--over.is-stuck .main-menu__list > li > a.active { color: var(--v-700); background: var(--v-50); }
.site-header--over.is-stuck .nav__signin { color: var(--ink); }
.site-header--over.is-stuck .nav__signin:hover { background: var(--v-50); color: var(--v-700); }
.site-header--over.is-stuck .burger { background: var(--paper); border-color: var(--line); color: var(--ink); }

/* ---------------------------------------------------------------- 06 --- */
.hero {
    position: relative;
    margin-top: calc(var(--head-h) * -1);
    padding-top: calc(var(--head-h) + clamp(46px, 6vw, 84px));
    isolation: isolate;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: min(940px, 100vh);
}

.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 74% center;
    transform: scale(1.03);
    animation: slowdrift 24s ease-in-out infinite alternate;
}
@keyframes slowdrift {
    from { transform: scale(1.03) translate3d(0, 0, 0); }
    to   { transform: scale(1.08) translate3d(-1.2%, -.8%, 0); }
}

.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(100deg, var(--v-950) 6%, rgba(25, 8, 57, .93) 30%, rgba(42, 15, 94, .55) 52%, rgba(61, 25, 125, .12) 70%, rgba(61, 25, 125, 0) 84%),
        linear-gradient(180deg, rgba(16, 5, 36, .7) 0%, rgba(16, 5, 36, 0) 26%),
        linear-gradient(0deg, rgba(16, 5, 36, .82) 0%, rgba(16, 5, 36, 0) 34%),
        radial-gradient(900px 520px at 8% 78%, rgba(238, 37, 211, .3), transparent 68%);
}
.hero__scrim::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .3;
    background-image:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 74px 74px;
    -webkit-mask-image: linear-gradient(100deg, #000 0%, rgba(0, 0, 0, .3) 46%, transparent 66%);
    mask-image: linear-gradient(100deg, #000 0%, rgba(0, 0, 0, .3) 46%, transparent 66%);
}

.hero__inner {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    align-items: center;
    gap: 40px;
    padding-bottom: clamp(40px, 5vw, 74px);
}

.hero__flag {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
    backdrop-filter: blur(10px);
    margin-bottom: 26px;
}
.hero__flag .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #3ddc9a;
    box-shadow: 0 0 0 0 rgba(61, 220, 154, .6);
    animation: beat 2.4s infinite;
}

.hero h1 { color: #fff; max-width: 15ch; margin-bottom: .34em; }
.hero h1 em {
    background: linear-gradient(96deg, #fff 6%, var(--m-300) 48%, var(--m-500) 96%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Each line rises from behind its own mask */
.line-mask { display: block; overflow: hidden; padding-bottom: .06em; }
.line-mask > span { display: block; }
html.js .line-mask > span {
    transform: translateY(110%);
    animation: lineUp .95s var(--ease) forwards;
    animation-delay: var(--ld, 0ms);
}
@keyframes lineUp { to { transform: none; } }

.hero__lede {
    max-width: 50ch;
    font-size: clamp(1rem, .93rem + .3vw, 1.12rem);
    color: rgba(255, 255, 255, .78);
    margin-bottom: 32px;
}

.hero__acts { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 26px; }

.hero__ticks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .66);
    font-weight: 500;
}
.hero__ticks li { display: inline-flex; align-items: center; gap: 8px; }
.hero__ticks i { color: var(--m-300); font-size: .8em; }

/* Live order card */
.hero__aside { display: flex; justify-content: flex-end; }
.hero__card {
    width: min(390px, 100%);
    padding: 22px;
    border-radius: var(--r-lg);
    background: rgba(23, 10, 48, .58);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    box-shadow: var(--sh-4);
    transition: transform .5s var(--ease);
}
.hero__card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero__card-logo {
    width: 44px; height: 44px;
    border-radius: 13px;
    background: #fff;
    display: grid; place-items: center;
    overflow: hidden;
    flex: none;
    padding: 5px;
}
.hero__card-logo img { width: 100%; height: 100%; object-fit: contain; }
.hero__card-who { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.hero__card-who b { color: #fff; font-size: .96rem; font-weight: 700; letter-spacing: -.02em; }
.hero__card-who span { font-size: .8rem; color: rgba(255, 255, 255, .56); font-family: var(--f-mono); }
.chip {
    margin-left: auto;
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .03em;
    background: rgba(61, 220, 154, .16);
    color: #6ff0bd;
    border: 1px solid rgba(61, 220, 154, .3);
}

.flow { position: relative; display: grid; gap: 2px; }
.flow::before {
    content: "";
    position: absolute;
    left: 9px; top: 14px; bottom: 16px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--m-400), rgba(238, 37, 211, .12));
}
.flow li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0 9px 32px;
    font-size: .875rem;
    color: rgba(255, 255, 255, .78);
}
.flow li::before {
    content: "";
    position: absolute;
    left: 4px; top: 50%;
    width: 12px; height: 12px;
    margin-top: -6px;
    border-radius: 50%;
    background: var(--m-500);
    box-shadow: 0 0 0 4px rgba(238, 37, 211, .16);
}
.flow li:last-child::before { background: #3ddc9a; box-shadow: 0 0 0 4px rgba(61, 220, 154, .18); }
.flow li b { margin-left: auto; font-family: var(--f-mono); font-size: .8rem; color: #fff; font-weight: 500; }

.hero__card-foot {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
}
.hero__card-foot b {
    margin-left: auto;
    font-family: var(--f-display);
    font-size: 1.42rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.03em;
}

/* Glass stat rail closing the hero */
.hero__rail {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(180deg, rgba(16, 5, 36, .3), rgba(16, 5, 36, .6));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.hero__rail ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hero__rail li {
    padding: 24px 26px;
    border-left: 1px solid rgba(255, 255, 255, .1);
}
.hero__rail li:first-child { border-left: 0; padding-left: 0; }
.hero__rail b {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(1.3rem, 1rem + .8vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.035em;
    line-height: 1.1;
}
.hero__rail span { font-size: .8rem; color: rgba(255, 255, 255, .58); }

/* ---------------------------------------------------------------- 07 --- */
.logos { padding: 34px 0 30px; background: var(--paper); border-bottom: 1px solid var(--line); }
.logos__label {
    display: block;
    text-align: center;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 24px;
}
.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track { display: flex; align-items: center; gap: 58px; width: max-content; animation: slide 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translate3d(-50%, 0, 0); } }
.logo-chip { flex: none; height: 40px; display: grid; place-items: center; }
.logo-chip img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(.46);
    transition: filter .4s ease, transform .4s var(--ease);
}
.logo-chip:hover img { filter: none; transform: scale(1.06); }

/* ---------------------------------------------------------------- 08 --- */
.about {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    gap: clamp(34px, 4.5vw, 72px);
    align-items: center;
}
.about__body h2 { margin-bottom: .5em; }
.about__body > p { color: var(--muted); max-width: 54ch; }

.about__points { display: grid; gap: 14px; margin: 30px 0 32px; }
.about__points li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 15px 17px;
    border-radius: var(--r-md);
    background: var(--paper);
    border: 1px solid var(--line);
    transition: border-color .3s ease, transform .3s var(--ease), box-shadow .3s var(--ease);
}
.about__points li:hover { border-color: var(--v-200); transform: translateX(4px); box-shadow: var(--sh-2); }
.about__points i {
    flex: none;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 11px;
    background: var(--grad-soft);
    color: var(--v-700);
    font-size: .88rem;
}
.about__points b { display: block; color: var(--ink); font-size: .97rem; font-weight: 700; letter-spacing: -.018em; }
.about__points span { font-size: .89rem; color: var(--muted); line-height: 1.55; }

.about__acts { display: flex; flex-wrap: wrap; gap: 12px; }

.about__art { position: relative; }
.about__frame {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: linear-gradient(155deg, var(--v-600) 8%, var(--v-700) 46%, var(--m-700) 100%);
    box-shadow: var(--sh-3);
    aspect-ratio: 4 / 4.4;
}
.about__frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; mix-blend-mode: luminosity; opacity: .92; }
.about__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 5, 36, 0) 40%, rgba(16, 5, 36, .78));
}
.about__badge {
    position: absolute;
    left: 22px; right: 22px; bottom: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #fff;
}
.about__badge b { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -.035em; line-height: 1; }
.about__badge span { font-size: .82rem; color: rgba(255, 255, 255, .72); }
.about__badge .stack { display: flex; flex-direction: column; gap: 3px; }
.about__badge .stars { color: #ffc94d; font-size: .78rem; letter-spacing: 1px; }

.about__chip {
    position: absolute;
    top: 26px; left: -18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px;
    border-radius: var(--r-md);
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--sh-3);
    animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.about__chip i { color: #14b878; }
.about__chip b { display: block; font-size: .88rem; color: var(--ink); letter-spacing: -.02em; }
.about__chip span { font-size: .74rem; color: var(--faint); }

/* ---------------------------------------------------------------- 09 --- */
.mosaic { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }

.tile {
    position: relative;
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .42s var(--ease), box-shadow .42s var(--ease), border-color .3s ease;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: var(--v-100); }
.tile::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: var(--grad-line);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.tile:hover::before { transform: scaleX(1); }
.tile h3 { margin: 18px 0 8px; }
.tile p { font-size: .93rem; color: var(--muted); margin-bottom: 20px; }
.tile .tlink { margin-top: auto; }
.tile--sm { grid-column: span 3; }
.tile--half { grid-column: span 6; }

.tile--feature {
    grid-column: span 5;
    grid-row: span 2;
    background: var(--v-950);
    border-color: transparent;
    color: rgba(255, 255, 255, .72);
    padding: 34px;
}
.tile--feature::after {
    content: "";
    position: absolute;
    right: -90px; top: -90px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 37, 211, .5), transparent 66%);
    filter: blur(12px);
}
.tile--feature > * { position: relative; z-index: 1; }
.tile--feature h3 { color: #fff; font-size: 1.6rem; }
.tile--feature p { color: rgba(255, 255, 255, .68); font-size: .98rem; }
.tile--feature .ic { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .18); color: #fff; }
.tile--feature:hover .ic { background: var(--grad); border-color: transparent; }
.tile--feature .tlink { color: var(--m-300); }
.tile--feature .tlink:hover { color: #fff; }

.tile__rates { margin: 6px 0 22px; display: grid; gap: 1px; border-radius: var(--r-sm); overflow: hidden; }
.tile__rates div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, .05);
    font-size: .86rem;
}
.tile__rates span { color: rgba(255, 255, 255, .7); }
.tile__rates b { margin-left: auto; color: #fff; font-family: var(--f-mono); font-weight: 500; }
.tile__rates em { font-size: .72rem; color: var(--m-300); background: none; -webkit-text-fill-color: var(--m-300); }

/* ---------------------------------------------------------------- 10 --- */
.journey { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.journey::before {
    content: "";
    position: absolute;
    top: 34px; left: 34px; right: calc(25% - 50px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--v-200) 0 7px, transparent 7px 15px);
}
.step { position: relative; display: flex; flex-direction: column; }
.step__num {
    position: relative;
    z-index: 1;
    width: 68px; height: 68px;
    display: grid; place-items: center;
    border-radius: 22px;
    margin-bottom: 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--sh-2);
    font-family: var(--f-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--v-700);
    letter-spacing: -.04em;
    transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.step:hover .step__num { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-4px) rotate(-5deg); box-shadow: var(--sh-m); }
.step h3 { margin-bottom: 9px; }
.step p { font-size: .93rem; color: var(--muted); margin-bottom: 18px; }
.step__meta {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--m-600);
}
.step__meta::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--m-500); }

/* ---------------------------------------------------------------- 11 --- */
.band--ink.creed-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 80% 6%, rgba(238, 37, 211, .2), transparent 66%),
        radial-gradient(760px 520px at 4% 96%, rgba(61, 25, 125, .55), transparent 68%);
}
.band--ink.creed-band::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(900px 600px at 50% 40%, #000, transparent 78%);
    mask-image: radial-gradient(900px 600px at 50% 40%, #000, transparent 78%);
}

.creed {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .78fr) minmax(0, .78fr);
    gap: 20px;
}

.glass {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .42s var(--ease), border-color .3s ease, background-color .3s ease;
}
.glass:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, .24); background: rgba(255, 255, 255, .085); }

.creed__lead {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    padding: 32px;
    overflow: hidden;
    position: relative;
}
.creed__lead h3 { font-size: clamp(1.35rem, 1.05rem + .85vw, 1.85rem); margin-bottom: 16px; }
.creed__lead p { color: rgba(255, 255, 255, .68); font-size: .98rem; }
.creed__lead .btn { align-self: flex-start; margin-top: 22px; }

.proof {
    margin-top: auto;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.proof__faces { display: flex; align-items: center; margin-bottom: 14px; }
.proof__faces img,
.proof__more {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--v-900);
    margin-left: -12px;
}
.proof__faces img:first-child { margin-left: 0; }
.proof__more {
    display: grid; place-items: center;
    background: var(--grad);
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
}
.proof b { display: block; color: #fff; font-size: .97rem; letter-spacing: -.02em; }
.proof > span { font-size: .85rem; color: rgba(255, 255, 255, .6); display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.stars-inline { color: #ffc94d; letter-spacing: 1.5px; font-size: .8rem; }

.vcard { padding: 26px; }
.vcard .ic { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .16); color: #fff; margin-bottom: 18px; }
.vcard:hover .ic { background: var(--grad); border-color: transparent; }
.vcard h3 { font-size: 1.1rem; margin-bottom: 8px; }
.vcard p { font-size: .91rem; color: rgba(255, 255, 255, .66); }

.counters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 26px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
}
.counter { padding: 26px 28px; border-left: 1px solid rgba(255, 255, 255, .1); }
.counter:first-child { border-left: 0; }
.counter .num {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 1.2rem + 1.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1;
    background: linear-gradient(96deg, #fff, var(--m-300));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}
.counter span { font-size: .85rem; color: rgba(255, 255, 255, .6); }

/* ---------------------------------------------------------------- 12 --- */
.rates {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-2);
    overflow: hidden;
}
.rates__bar {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--canvas);
}
.rates__tabs { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.rates__tabs::-webkit-scrollbar { display: none; }
.tab {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px 9px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ink-soft);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: -.015em;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.tab img {
    width: 26px; height: 26px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    border: 1px solid var(--line);
}
.tab:hover { background: var(--v-50); color: var(--v-700); }
.tab.is-active { background: var(--v-800); color: #fff; box-shadow: var(--sh-2); }
.tab.is-active img { border-color: transparent; }

.rates__search {
    margin-left: auto;
    position: relative;
    display: flex;
    align-items: center;
    flex: none;
    width: min(270px, 40vw);
}
.rates__search i { position: absolute; left: 14px; color: var(--faint); font-size: .85rem; pointer-events: none; }
.rates__search input {
    width: 100%;
    padding: 11px 14px 11px 38px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--paper);
    font: inherit;
    font-size: .88rem;
    color: var(--ink);
    transition: border-color .25s ease, box-shadow .25s ease;
}
.rates__search input::placeholder { color: var(--faint); }
.rates__search input:focus { outline: none; border-color: var(--v-400); box-shadow: 0 0 0 4px rgba(138, 95, 214, .14); }

.rates__panel { display: none; }
.rates__panel.is-active { display: block; animation: fadeUp .45s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.rates__scroll { max-height: 470px; overflow-y: auto; scrollbar-width: thin; }
.rates__scroll::-webkit-scrollbar { width: 8px; }
.rates__scroll::-webkit-scrollbar-thumb { background: var(--v-100); border-radius: 8px; }
.rates__scroll::-webkit-scrollbar-thumb:hover { background: var(--v-200); }

.rate-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.rate-table th:nth-child(1) { width: auto; }
.rate-table th:nth-child(2) { width: 30%; }
.rate-table th:nth-child(3) { width: 24%; }
.rate-table th:nth-child(4) { width: 128px; }
.rate-table th {
    position: sticky;
    top: 0;
    z-index: 2;
    text-align: left;
    padding: 13px 24px;
    background: var(--canvas-2);
    border-bottom: 1px solid var(--line);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}
.rate-table td {
    padding: 15px 24px;
    border-bottom: 1px solid var(--line-2);
    font-size: .93rem;
    color: var(--ink-soft);
    vertical-align: middle;
}
.rate-table tbody tr { transition: background-color .22s ease; }
.rate-table tbody tr:hover { background: var(--v-50); }
.rate-table tbody tr:last-child td { border-bottom: 0; }
.rate-table .plan { color: var(--ink); font-weight: 700; letter-spacing: -.015em; }
.rate-table .plan small { display: block; font-size: .78rem; font-weight: 500; color: var(--faint); letter-spacing: 0; }
.rate-table .days { color: var(--muted); white-space: nowrap; }
.rate-table .price {
    text-align: right;
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: .98rem;
    color: var(--v-700);
    white-space: nowrap;
}
.rate-table .go { text-align: right; width: 1%; }
.rate-table .go a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: .8rem;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.rate-table .go a:hover { background: var(--grad); color: #fff; border-color: transparent; }
.rate-table .empty { text-align: center; color: var(--faint); padding: 46px 24px; font-size: .92rem; }

.rates__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    padding: 18px 24px;
    border-top: 1px solid var(--line);
    background: var(--canvas);
    font-size: .85rem;
    color: var(--muted);
}
.rates__foot .btn { margin-left: auto; }
.rates__note { display: inline-flex; align-items: center; gap: 9px; }
.rates__note i { color: var(--m-500); }

/* ---------------------------------------------------------------- 13 --- */
.agent {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(32px, 4.5vw, 66px);
    align-items: center;
}
.agent__art { position: relative; }
.agent__frame {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: linear-gradient(155deg, var(--v-600) 8%, var(--v-700) 46%, var(--m-700) 100%);
    aspect-ratio: 4 / 4.3;
    box-shadow: var(--sh-3);
}
.agent__frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.agent__quote {
    position: absolute;
    left: 20px; right: 20px; bottom: 20px;
    z-index: 2;
    padding: 20px;
    border-radius: var(--r-md);
    background: rgba(16, 5, 36, .62);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
}
.agent__quote p { font-size: .93rem; line-height: 1.6; margin-bottom: 10px; color: rgba(255, 255, 255, .9); }
.agent__quote cite { font-style: normal; font-size: .8rem; color: var(--m-300); font-weight: 700; }

.agent__list { display: grid; gap: 13px; margin: 26px 0 30px; }
.agent__list li { display: flex; gap: 13px; align-items: flex-start; font-size: .97rem; color: var(--ink-soft); }
.agent__list i {
    flex: none;
    width: 24px; height: 24px;
    margin-top: 3px;
    display: grid; place-items: center;
    border-radius: 8px;
    background: var(--grad);
    color: #fff;
    font-size: .66rem;
}
.agent__facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
.agent__facts div {
    padding: 18px;
    border-radius: var(--r-md);
    background: var(--paper);
    border: 1px solid var(--line);
    transition: border-color .3s ease, transform .3s var(--ease);
}
.agent__facts div:hover { border-color: var(--v-200); transform: translateY(-4px); }
.agent__facts b {
    display: block;
    font-family: var(--f-display);
    font-size: 1.34rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 4px;
}
.agent__facts span { font-size: .8rem; color: var(--muted); }

/* ---------------------------------------------------------------- 14 --- */
.dev {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(32px, 4vw, 58px);
    align-items: center;
    padding: clamp(32px, 4vw, 56px);
    border-radius: var(--r-xl);
    background: var(--v-950);
    color: rgba(255, 255, 255, .72);
    overflow: hidden;
}
.dev::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(660px 400px at 8% 100%, rgba(238, 37, 211, .24), transparent 68%),
        radial-gradient(700px 420px at 96% 0%, rgba(102, 51, 189, .38), transparent 66%);
}
.dev > * { position: relative; z-index: 1; }
.dev h2, .dev h3 { color: #fff; }
.dev h2 { font-size: clamp(1.7rem, 1.2rem + 1.5vw, 2.5rem); }
.dev > div > p { color: rgba(255, 255, 255, .68); }

.dev__list { display: grid; gap: 12px; margin: 24px 0 30px; }
.dev__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; color: rgba(255, 255, 255, .76); }
.dev__list i { color: var(--m-400); margin-top: 5px; font-size: .8rem; }
.dev__acts { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.dev .tlink { color: var(--m-300); }
.dev .tlink:hover { color: #fff; }

.code {
    border-radius: var(--r-md);
    overflow: hidden;
    background: rgba(8, 3, 20, .72);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: var(--sh-4);
    font-family: var(--f-mono);
}
.code__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.code__bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.code__bar i:first-child { background: #ff5f57; }
.code__bar i:nth-child(2) { background: #febc2e; }
.code__bar i:nth-child(3) { background: #28c840; }
.code__title { margin-left: 10px; font-size: .78rem; color: rgba(255, 255, 255, .6); white-space: nowrap; }
.code__ping {
    margin-left: auto;
    white-space: nowrap;
    font-size: .7rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(61, 220, 154, .14);
    color: #6ff0bd;
    border: 1px solid rgba(61, 220, 154, .26);
}
.code pre {
    margin: 0;
    padding: 22px;
    font-size: .8rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .8);
    overflow-x: auto;
    white-space: pre;
    tab-size: 2;
}
.tok-cmd { color: var(--m-300); font-weight: 500; }
.tok-flag { color: #7fd5ff; }
.tok-str { color: #9ef0c2; }
.tok-key { color: #c7a6ff; }
.tok-dim { color: rgba(255, 255, 255, .42); }
.caret {
    display: inline-block;
    width: 8px; height: 1em;
    margin-left: 3px;
    vertical-align: -2px;
    background: var(--m-400);
    animation: blink 1.15s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------------------------------------------------------------- 15 --- */
.voices__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; margin-bottom: 38px; }
.voices__top .band__head { margin-bottom: 0; }

.slider-arrows { display: flex; gap: 10px; flex: none; }
.arrow-btn {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s ease, transform .3s var(--ease);
}
.arrow-btn svg { stroke: currentColor; }
.arrow-btn:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: var(--sh-m); }

.voices__stage { overflow: hidden; padding: 4px; margin: -4px; }
.testimonials-slider {
    --gap: 20px;
    display: flex;
    gap: var(--gap);
    transition: transform .72s var(--ease);
    cursor: grab;
}
.testimonials-slider.is-dragging { transition: none; cursor: grabbing; }
.testimonials-slider > * { flex: 0 0 calc((100% - var(--gap) * 2) / 3); }

.voice {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .42s var(--ease), box-shadow .42s var(--ease), border-color .3s ease;
}
.voice:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: var(--v-100); }
.voice__mark { font-size: 1.6rem; color: var(--v-100); margin-bottom: 14px; }
.voice blockquote {
    margin: 0 0 24px;
    font-family: var(--f-display);
    font-size: 1.04rem;
    line-height: 1.62;
    letter-spacing: -.022em;
    color: var(--ink);
    font-weight: 500;
}
.voice__who { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line-2); }
.voice__who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.voice__who b { display: block; font-size: .93rem; color: var(--ink); letter-spacing: -.02em; }
.voice__who span { font-size: .8rem; color: var(--faint); }
.voice__rating { margin-left: auto; text-align: right; flex: none; }
.voice__rating .rating-stars { color: #ffc94d; font-size: .74rem; letter-spacing: 1px; display: block; }
.voice__rating .score { font-size: .76rem; color: var(--muted); font-weight: 700; }
.voice__topic {
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 5px 11px;
    border-radius: 7px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--v-50);
    color: var(--v-600);
}

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.slider-dots button {
    width: 9px; height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--v-200);
    cursor: pointer;
    transition: width .4s var(--ease), background .3s ease;
}
.slider-dots button.is-active { width: 30px; background: var(--grad-line); }

/* ---------------------------------------------------------------- 16 --- */
.appband {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding: clamp(34px, 4vw, 58px);
    padding-bottom: 0;
    border-radius: var(--r-xl);
    background: var(--grad);
    color: rgba(255, 255, 255, .82);
    overflow: hidden;
}
.appband::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 420px at 92% 110%, rgba(16, 5, 36, .45), transparent 66%),
        radial-gradient(600px 380px at 4% 0%, rgba(255, 255, 255, .16), transparent 62%);
}
.appband > * { position: relative; z-index: 1; }
.appband__body { padding-bottom: clamp(34px, 4vw, 58px); }
.appband h2 { color: #fff; font-size: clamp(1.7rem, 1.2rem + 1.5vw, 2.45rem); }
.appband p { color: rgba(255, 255, 255, .78); max-width: 46ch; }
.appband .eyebrow { color: rgba(255, 255, 255, .82); }
.appband .eyebrow::before { background: rgba(255, 255, 255, .6); }

.appband__stores { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 24px; }
.appband__stores a { transition: transform .35s var(--ease), filter .35s ease; }
.appband__stores img { height: 50px; width: auto; }
.appband__stores a:hover { transform: translateY(-4px); filter: brightness(1.08); }

.appband__ticks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 18px; }
.appband__ticks li { display: flex; gap: 10px; align-items: center; font-size: .9rem; color: rgba(255, 255, 255, .8); }
.appband__ticks i { color: #fff; font-size: .75rem; }

.appband__art { align-self: end; text-align: center; }
.appband__art img { max-height: 460px; width: auto; margin: 0 auto; display: block; filter: drop-shadow(0 30px 50px rgba(16, 5, 36, .4)); }

/* ---------------------------------------------------------------- 17 --- */
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(30px, 4vw, 64px); align-items: start; }
.faq__side { position: sticky; top: calc(var(--head-h) + 24px); }
.faq__help {
    margin-top: 28px;
    padding: 26px;
    border-radius: var(--r-lg);
    background: var(--v-950);
    color: rgba(255, 255, 255, .72);
    overflow: hidden;
    position: relative;
}
.faq__help::before {
    content: "";
    position: absolute;
    right: -60px; bottom: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 37, 211, .42), transparent 66%);
}
.faq__help > * { position: relative; z-index: 1; }
.faq__help h4 { color: #fff; margin-bottom: 8px; }
.faq__help p { font-size: .9rem; color: rgba(255, 255, 255, .66); margin-bottom: 18px; }
.faq__help .btn { width: 100%; }
.faq__help ul { display: grid; gap: 10px; margin-top: 18px; font-size: .87rem; }
.faq__help ul a { color: rgba(255, 255, 255, .82); display: inline-flex; gap: 9px; align-items: center; }
.faq__help ul a:hover { color: #fff; }
.faq__help ul i { color: var(--m-400); width: 16px; }

.accordion { display: grid; gap: 12px; }
.accordion-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.accordion-item:has(.accordion-title.active) { border-color: var(--v-200); box-shadow: var(--sh-2); }
.accordion-title {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 19px 22px;
    font-family: var(--f-display);
    font-size: 1.01rem;
    font-weight: 600;
    letter-spacing: -.024em;
    color: var(--ink);
    cursor: pointer;
    transition: color .25s ease;
}
.accordion-title:hover { color: var(--v-700); }
.accordion-title i {
    order: 2;
    margin-left: auto;
    flex: none;
    width: 30px; height: 30px;
    display: grid; place-items: center;
    border-radius: 9px;
    background: var(--v-50);
    color: var(--v-700);
    font-size: .72rem;
    transition: transform .4s var(--ease), background .3s ease, color .3s ease;
}
.accordion-title.active { color: var(--v-700); }
.accordion-title.active i { transform: rotate(135deg); background: var(--grad); color: #fff; }
.accordion-content {
    margin: 0;
    padding: 0 22px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: .94rem;
    color: var(--muted);
    white-space: pre-line;
    transition: max-height .5s var(--ease), opacity .35s ease, padding .4s var(--ease);
}
.accordion-content.show { max-height: 620px; opacity: 1; padding: 0 22px 22px; }

/* ---------------------------------------------------------------- 18 --- */
.closer {
    position: relative;
    text-align: center;
    padding: clamp(46px, 6vw, 86px) clamp(24px, 4vw, 60px);
    border-radius: var(--r-xl);
    background: var(--v-950);
    overflow: hidden;
    color: rgba(255, 255, 255, .76);
}
.closer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(760px 460px at 50% 120%, rgba(238, 37, 211, .38), transparent 68%),
        radial-gradient(700px 420px at 14% -10%, rgba(102, 51, 189, .5), transparent 66%);
}
.closer::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .45;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(600px 420px at 50% 50%, #000, transparent 76%);
    mask-image: radial-gradient(600px 420px at 50% 50%, #000, transparent 76%);
}
.closer > * { position: relative; z-index: 1; }
.closer h2 { color: #fff; }
.closer .eyebrow { justify-content: center; }
.closer .eyebrow::before { display: none; }
.closer h2 { max-width: 18ch; margin: 0 auto .45em; }
.closer p { max-width: 52ch; margin: 0 auto 32px; color: rgba(255, 255, 255, .7); }
.closer__acts { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 28px; }
.closer__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; font-size: .86rem; color: rgba(255, 255, 255, .62); }
.closer__meta li { display: inline-flex; align-items: center; gap: 8px; }
.closer__meta i { color: var(--m-300); font-size: .78rem; }

/* ---------------------------------------------------------------- 19 --- */
.site-footer {
    position: relative;
    background: var(--v-950);
    color: rgba(255, 255, 255, .62);
    padding-top: clamp(56px, 6vw, 88px);
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 1px;
    background: var(--grad-line);
    opacity: .6;
}
.foot {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: 40px;
    padding-bottom: 52px;
}
.foot h5 { color: #fff; margin-bottom: 20px; letter-spacing: .15em; font-size: .74rem; }
.foot__brand .brand { margin-bottom: 20px; }
.foot__brand .brand__name b { color: #fff; }
.foot__brand .brand__name span { color: rgba(255, 255, 255, .5); }
.foot__brand p { font-size: .92rem; max-width: 34ch; margin-bottom: 22px; }
.foot__brand .social { display: flex; gap: 9px; }
.foot__brand .social a { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .12); color: #fff; }

.foot__links { display: grid; gap: 11px; font-size: .92rem; }
.foot__links a { position: relative; transition: color .25s ease, padding-left .3s var(--ease); }
.foot__links a::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 0; height: 1px;
    background: var(--m-400);
    transition: width .3s var(--ease);
}
.foot__links a:hover { color: #fff; padding-left: 16px; }
.foot__links a:hover::before { width: 10px; }

.foot__contact { display: grid; gap: 14px; font-size: .92rem; margin-bottom: 22px; }
.foot__contact li { display: flex; gap: 12px; align-items: flex-start; }
.foot__contact i { color: var(--m-400); margin-top: 5px; flex: none; }
.foot__contact a:hover { color: #fff; }

.foot__base {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 26px;
    padding: 24px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .85rem;
}
.foot__base nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot__base a:hover { color: #fff; }
.foot__base a { transition: color .25s ease; }

/* ---------------------------------------------------------------- 20 --- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    z-index: 300;
    width: 100%;
    height: 3px;
    pointer-events: none;
}
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--grad-line); box-shadow: 0 0 14px rgba(238, 37, 211, .6); }

#back-to-top {
    position: fixed;
    right: 22px; bottom: 22px;
    z-index: 120;
    width: 50px; height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: translateY(14px) scale(.9);
    box-shadow: var(--sh-m);
    transition: opacity .32s var(--ease), transform .32s var(--ease);
}
#back-to-top.is-visible { opacity: 1; transform: none; }
#back-to-top:hover { transform: translateY(-3px); }

.rip {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .38);
    transform: scale(0);
    animation: rip .62s var(--ease) forwards;
    pointer-events: none;
}
.btn--outline .rip, .btn--light .rip { background: rgba(61, 25, 125, .16); }
@keyframes rip { to { transform: scale(2.4); opacity: 0; } }

html.js [data-reveal] {
    opacity: 0;
    transition: opacity .82s var(--ease), transform .82s var(--ease);
    transition-delay: var(--rd, 0ms);
    will-change: opacity, transform;
}
html.js [data-reveal="up"]    { transform: translateY(34px); }
html.js [data-reveal="left"]  { transform: translateX(-24px); }
html.js [data-reveal="right"] { transform: translateX(24px); }
html.js [data-reveal="zoom"]  { transform: scale(.965); }
html.js [data-reveal].is-in { opacity: 1; transform: none; }

/* Sideways reveals push past the gutter on a phone — send them up instead */
@media (max-width: 1100px) {
    html.js [data-reveal="left"],
    html.js [data-reveal="right"] { transform: translateY(26px); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    html.js [data-reveal] { opacity: 1; transform: none; }
    html.js .line-mask > span { transform: none; }
}

/* ---------------------------------------------------------------- 21 --- */
@media (max-width: 1200px) {
    .main-menu__list > li > a { padding: 10px 11px; font-size: .87rem; }
    .testimonials-slider > * { flex-basis: calc((100% - var(--gap)) / 2); }
    .creed { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .creed__lead { grid-row: auto; grid-column: span 2; }
}

@media (max-width: 1050px) {
    :root { --gut: 22px; }
    .main-menu__nav, .nav__signin { display: none; }
    .burger { display: inline-flex; }
    .nav__tools { margin-left: auto; }

    .hero { min-height: 0; }
    .hero__media img { object-position: 64% center; }
    .hero__scrim {
        background:
            linear-gradient(180deg, rgba(16, 5, 36, .93) 0%, rgba(25, 8, 57, .78) 38%, rgba(42, 15, 94, .72) 62%, rgba(16, 5, 36, .92) 100%),
            radial-gradient(700px 420px at 20% 70%, rgba(238, 37, 211, .26), transparent 70%);
    }
    .hero__scrim::after { -webkit-mask-image: none; mask-image: none; opacity: .18; }
    .hero__inner { grid-template-columns: 1fr; gap: 36px; }
    .hero h1 { max-width: 18ch; }
    .hero__aside { justify-content: flex-start; }
    .hero__card { width: min(430px, 100%); }
    .hero__rail ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero__rail li { padding: 20px 22px; border-top: 1px solid rgba(255, 255, 255, .1); }
    .hero__rail li:nth-child(-n+2) { border-top: 0; }
    .hero__rail li:nth-child(odd) { border-left: 0; padding-left: 0; }

    .about, .agent, .dev, .appband, .faq { grid-template-columns: 1fr; }
    .about__art { order: -1; max-width: 520px; }
    .about__chip { left: auto; right: 20px; top: -14px; }
    .agent__art { max-width: 520px; }
    .appband { padding-bottom: 0; }
    .appband__art img { max-height: 360px; }
    .faq__side { position: static; }

    .mosaic { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .tile, .tile--sm { grid-column: span 3; }
.tile--half { grid-column: span 6; }
    .tile--feature { grid-column: span 6; grid-row: auto; }

    .journey { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 22px; }
    .journey::before { display: none; }
}

@media (max-width: 820px) {
    .band__head--split { grid-template-columns: 1fr; }
    .voices__top { flex-direction: column; align-items: flex-start; }
    .slider-arrows { display: none; }
    .counters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .counter:nth-child(odd) { border-left: 0; }
    .counter:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .1); }
    .creed { grid-template-columns: 1fr; }
    .creed__lead { grid-column: auto; }
    .rates__bar { flex-direction: column; align-items: stretch; gap: 12px; }
    .rates__tabs {
        -webkit-mask-image: linear-gradient(90deg, #000 84%, transparent);
        mask-image: linear-gradient(90deg, #000 84%, transparent);
        padding-right: 24px;
    }
    .rates__search { margin-left: 0; width: 100%; }
    .rate-table th:nth-child(4), .rate-table td.go { display: none; }
    .rates__foot .btn { margin-left: 0; width: 100%; }
}

@media (max-width: 680px) {
    body { font-size: 16px; }
    .testimonials-slider { --gap: 16px; }
    .testimonials-slider > * { flex-basis: 100%; }
    .mosaic { grid-template-columns: 1fr; gap: 16px; }
    .tile, .tile--sm, .tile--half, .tile--feature { grid-column: auto; }
    .journey { grid-template-columns: 1fr; gap: 26px; }
    .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
    .agent__facts { grid-template-columns: 1fr; }
    .appband__ticks { grid-template-columns: 1fr; }
    .foot { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .foot__brand { grid-column: span 2; }
    .foot__base { justify-content: center; text-align: center; }
    .foot__base nav { justify-content: center; }
    .topline__in { font-size: .74rem; gap: 9px; }
    .topline__sep, .topline .hide-sm { display: none; }
    .hero__rail ul { grid-template-columns: 1fr 1fr; }
    .rate-table th, .rate-table td { padding: 13px 16px; }
    .btn--lg { padding: 16px 26px; font-size: .95rem; }
    .closer__acts .btn { width: 100%; }
}

@media (max-width: 560px) {
    .code__title { display: none; }
    .brand__name span { display: none; }
    .brand__mark { width: 40px; height: 40px; border-radius: 12px; }
    .btn__long { display: none; }
    .btn__short { display: inline; }
    .nav__tools .btn--sm { padding: 11px 16px; }
    .burger { width: 44px; height: 44px; }
    .nav { gap: 12px; }
}

@media (max-width: 420px) {
    :root { --gut: 18px; }
    .hero__rail li { padding: 18px 16px; }
    .foot { grid-template-columns: 1fr; }
    .foot__brand { grid-column: auto; }
}
