

:root {
    --canvas: #F4F7FA;
    --sunk: #DDE7F2;
    --pastel: #B9CDE5;
    --pastel-deep: #96B1D0;
    --ink: #0c0c0c;
    --ink-2: #f6faff;
    --ink-3: #f0f3f7;
    --accent: #f5f7fa;

    --bar: 70px;
    --plate-w: min(46vw, 620px);

    --rx: 600;
    --ry: 54;
    --coil: 0.9;
    --fall: 0.52;

    --ease: cubic-bezier(.22, 1, .36, 1);
    --dur: .6s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--bar) + 18px);
    scrollbar-gutter: stable;
}

body {
    min-height: 100vh;
    background: transparent;
    color: var(--ink);
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    position: relative;
}

/* ambient washes */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        transparent;
}

/* grid + grain */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        url("images/front.jpg")
        ;
    background-size: 300px;
    mix-blend-mode: overlay;
    opacity: .5;
    -webkit-mask-image: radial-gradient(80vw 80vh at 50% 42%, #000 20%, transparent 82%);
    mask-image: radial-gradient(80vw 80vh at 50% 42%, #000 20%, transparent 82%);
}

/* =========================================================
   TOP THREE COLOURFUL BUTTONS
========================================================= */

/* ==========================================
   TOP ACTION BUTTONS
========================================== */

.top-action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin: 25px auto;
    position: relative;
    z-index: 20;
    flex-wrap: wrap;
}

.top-action {
    border: none;
    min-width: 170px;
    padding: 15px 24px;
    border-radius: 14px;
    cursor: pointer;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(12, 150, 204, 0.2);
}

.top-action span {
    font-size: 22px;
}

.top-action:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.30);
}

/* Individual button colours */

.branches-btn {
    background: linear-gradient(135deg, #21b2df, #acd0e6);
}

.apply-btn {
    background: linear-gradient(135deg, #21b2df, #acd0e6);
}

.contact-btn {
    background: linear-gradient(135deg, #21b2df, #acd0e6);
}


/* ==========================================
   POPUP OVERLAY
========================================== */

.gwamanda-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 214, 252, 0.72);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.gwamanda-popup.active {
    display: flex;
}


/* ==========================================
   POPUP BOX
========================================== */

.gwamanda-popup-box {
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 70px rgba(0,0,0,0.40);
    animation: gwamandaPopupAnimation 0.3s ease;
}

@keyframes gwamandaPopupAnimation {

    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* Close button */

.gwamanda-popup-close {
    position: absolute;
    right: 18px;
    top: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #eeeeee;
    color: #333;
    font-size: 24px;
    cursor: pointer;
}

.gwamanda-popup-close:hover {
    background: #222;
    color: white;
}


/* Popup headings */

.gwamanda-popup-box h2 {
    margin-top: 0;
    color: #222;
    font-size: 28px;
}

.gwamanda-popup-intro {
    color: #666;
    margin-bottom: 25px;
}


/* ==========================================
   BRANCH LOCATIONS
========================================== */

.branch-list {
    display: grid;
    gap: 15px;
}

.branch-card {
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    padding: 18px;
    background: #fafafa;
    transition: 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.branch-card h3 {
    margin: 0 0 8px;
    color: #b8860b;
}

.branch-card p {
    margin: 5px 0;
    color: #555;
}

.branch-card a {
    color: #1769aa;
    font-weight: bold;
    text-decoration: none;
}


/* ==========================================
   APPLICATION FORM
========================================== */

.gwamanda-form {
    display: grid;
    gap: 15px;
}

.gwamanda-form label {
    font-weight: 600;
    color: #333;
}

.gwamanda-form input,
.gwamanda-form select,
.gwamanda-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
}

.gwamanda-form textarea {
    min-height: 100px;
    resize: vertical;
}

.gwamanda-submit {
    border: none;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1769aa, #2196f3);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.gwamanda-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


/* ==========================================
   CONTACT DETAILS
========================================== */

.contact-details {
    display: grid;
    gap: 15px;
}

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-radius: 14px;
    background: #f7f7f7;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: #1b1b1b;
    color: white;
}

.contact-detail-card h3 {
    margin: 0 0 4px;
}

.contact-detail-card p {
    margin: 0;
    color: #666;
}

.contact-detail-card a {
    color: #1769aa;
    text-decoration: none;
    font-weight: bold;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .top-action-buttons {
        gap: 10px;
        padding: 0 10px;
    }

    .top-action {
        min-width: 140px;
        padding: 13px 15px;
        font-size: 14px;
    }

    .gwamanda-popup-box {
        padding: 22px;
        border-radius: 15px;
    }

    .gwamanda-popup-box h2 {
        font-size: 23px;
    }

}
/* ---------- bar ---------- */
.bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--bar);
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(18px, 4vw, 54px);
    background: rgba(81, 134, 187, 0.72);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border-bottom: 1px solid rgba(150, 177, 208, .28);
}

.brand {
    font-family: 'Newsreader', serif;
    font-weight: 300;
    font-size: 1.06rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: .62rem;
    text-decoration: none;
}

.brand i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    display: block;
    flex: 0 0 auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center
}

.nav a {
    position: relative;
    color: var(--ink-2);
    text-decoration: none;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 300;
    padding: 14px 0 6px;
}

/* hover drops a chevron in from above the label */
.nav a,
.drawer a {
    transition: color .34s var(--ease)
}

.nav a:hover,
.nav a:focus-visible,
.drawer a:hover,
.drawer a:focus-visible {
    color: var(--accent)
}

.wv {
    position: absolute;
    left: 50%;
    top: 2px;
    width: 10px;
    height: 6px;
    overflow: visible;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -7px);
    transition: opacity .3s var(--ease), transform .42s var(--ease);
}

.wv path {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav a:hover .wv,
.nav a:focus-visible .wv {
    opacity: 1;
    transform: translate(-50%, 0)
}

.drawer a {
    position: relative;
    padding: .95rem 0 .85rem
}

.drawer a .wv {
    left: 0;
    top: 2px;
    bottom: auto;
    transform: translate(0, -7px)
}

.drawer a:hover .wv,
.drawer a:focus-visible .wv {
    opacity: 1;
    transform: translate(0, 0)
}

.burger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(150, 177, 208, .5);
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    display: block;
    width: 16px;
    height: 1px;
    background: var(--ink);
    transition: transform .3s var(--ease), opacity .3s
}

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(3px) rotate(45deg)
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0
}

.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3px) rotate(-45deg)
}

/* =========================================================
   LANDING SECTION
========================================================= */

.landing-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(30, 120, 255, .16), transparent 35%),
        radial-gradient(circle at 20% 80%, rgba(0, 200, 255, .10), transparent 35%),
        #76787913;

    color: #fff;
    isolation: isolate;
}


/* =========================================================
   BACKGROUND ANIMATION
========================================================= */

.landing-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.landing-bg span {
    position: absolute;
    display: block;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    animation: landingFloat 18s linear infinite;
}

.landing-bg span:nth-child(1) {
    left: -100px;
    top: 10%;
}

.landing-bg span:nth-child(2) {
    right: -150px;
    top: 20%;
    width: 500px;
    height: 500px;
    animation-delay: -5s;
}

.landing-bg span:nth-child(3) {
    left: 40%;
    bottom: -250px;
    width: 600px;
    height: 600px;
    animation-delay: -8s;
}

.landing-bg span:nth-child(4) {
    right: 30%;
    top: -200px;
    width: 400px;
    height: 400px;
    animation-delay: -12s;
}

.landing-bg span:nth-child(5) {
    left: 10%;
    bottom: 5%;
    width: 150px;
    height: 150px;
    animation-delay: -3s;
}

@keyframes landingFloat {

    0% {
        transform: translate(0,0) rotate(0deg);
    }

    50% {
        transform: translate(30px,-30px) rotate(180deg);
    }

    100% {
        transform: translate(0,0) rotate(360deg);
    }

}

/* =========================================================
   ENTIRE WEBSITE BACKGROUND
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    /* YOUR UPLOADED DOVE IMAGE */
    background-image: url("images/dove.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* Keeps image fixed while website scrolls */
    background-attachment: fixed;

    font-family: Arial, Helvetica, sans-serif;

    color: #172033;
}

/* =========================================================
   NAVIGATION
========================================================= */

.landing-nav {
    position: relative;
    z-index: 20;

    width: min(1200px, 92%);
    margin: auto;

    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.landing-logo {
    text-decoration: none;
    color: white;
}

.logo-placeholder {
    width: 75px;
    height: 55px;

    border: 2px dashed rgba(255,255,255,.5);
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.1;
}


/* NAV LINKS */

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.landing-nav-links a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.landing-nav-links a:hover {
    color: #fff;
}


/* CALLBACK NAV BUTTON */

.callback-nav-btn {
    border: 0;
    cursor: pointer;

    padding: 13px 20px;

    border-radius: 50px;

    background: #1687ff;
    color: white;

    font-weight: 700;

    transition: .3s;
}

.callback-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22,135,255,.35);
}


/* MOBILE BUTTON */

.mobile-menu-btn {
    display: none;

    border: 0;
    background: transparent;

    color: white;

    font-size: 28px;
    cursor: pointer;
}


/* MOBILE MENU */

.mobile-landing-menu {
    display: none;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.landing-container {
    width: min(1200px, 92%);
    margin: auto;

    min-height: calc(100vh - 90px);

    display: grid;
    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 60px;

    padding: 50px 0 90px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.landing-content {
    animation: heroContentIn 1s ease both;
}

@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* BADGE */

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border-radius: 50px;

    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);

    color: rgba(255,255,255,.8);

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 25px;
}

.badge-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #26e07f;

    box-shadow: 0 0 15px #26e07f;
}


/* HEADING */

.landing-content h1 {
    margin: 0;

    max-width: 700px;

    font-size: clamp(45px, 6vw, 76px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 850;
}

.landing-content h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #000000,
        #19191a
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* DESCRIPTION */

.landing-description {
    max-width: 600px;

    margin: 30px 0;

    color: rgba(18, 19, 19, 0.87);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.landing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.primary-landing-btn,
.secondary-landing-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    min-height: 55px;

    padding: 0 25px;

    border-radius: 50px;

    font-weight: 750;

    text-decoration: none;

    cursor: pointer;

    transition: .3s;
}

.primary-landing-btn {
    border: 0;

    color: white;

    background: #1687ff;

    box-shadow: 0 12px 35px rgba(22,135,255,.25);
}

.primary-landing-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 45px rgba(22,135,255,.4);
}

.primary-landing-btn span {
    font-size: 22px;
}

.secondary-landing-btn {
    border: 1px solid rgba(255,255,255,.15);

    color: white;

    background: rgba(255,255,255,.04);
}

.secondary-landing-btn:hover {
    background: rgba(255,255,255,.09);
}


/* =========================================================
   TRUST
========================================================= */

.landing-trust {
    display: flex;
    align-items: center;

    margin-top: 55px;

    gap: 25px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-item strong {
    font-size: 13px;
}

.trust-item small {
    color: rgba(255,255,255,.45);
    font-size: 11px;
}

.trust-divider {
    width: 1px;
    height: 35px;

    background: rgba(255,255,255,.12);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.landing-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 580px;
}


/* MAIN CARD */

.hero-main-card {
    width: min(440px, 100%);

    border-radius: 28px;

    padding: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.18),
            rgba(255,255,255,.04)
        );

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(20px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);

    transform: rotate(2deg);

    animation: heroCardFloat 5s ease-in-out infinite;
}

@keyframes heroCardFloat {

    0%,100% {
        transform: rotate(2deg) translateY(0);
    }

    50% {
        transform: rotate(0deg) translateY(-12px);
    }

}


/* IMAGE PLACEHOLDER */

.hero-image-placeholder {
    height: 430px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(253, 253, 253, 0.829),
            rgba(0,0,0,.3)
        );

    border: 1px dashed rgba(255,255,255,.2);
}

.hero-placeholder-content {
    text-align: center;

    color: rgba(255,255,255,.55);

    padding: 30px;
}

.placeholder-icon {
    width: 65px;
    height: 65px;

    margin: auto auto 20px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.08);

    font-size: 30px;
}

.hero-placeholder-content h3 {
    margin: 0 0 8px;

    color: white;
}

.hero-placeholder-content p {
    margin: 0;

    font-size: 13px;
}


/* CARD BOTTOM */

.hero-card-bottom {
    padding: 20px 15px 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-card-bottom small {
    display: block;

    color: rgba(255,255,255,.45);

    font-size: 11px;

    margin-bottom: 5px;
}

.hero-card-bottom strong {
    font-size: 18px;
}

.hero-card-bottom button {
    width: 45px;
    height: 45px;

    border: 0;
    border-radius: 50%;

    background: #1687ff;

    color: white;

    font-size: 22px;

    cursor: pointer;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: rgba(10,20,35,.88);

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(15px);

    border-radius: 15px;

    box-shadow: 0 20px 40px rgba(0,0,0,.25);

    z-index: 5;

    animation: floatingCard 4s ease-in-out infinite;
}

.floating-icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(22,135,255,.15);

    color: #50b4ff;

    font-weight: bold;
}

.floating-card strong {
    display: block;

    font-size: 12px;
}

.floating-card small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.45);

    font-size: 10px;
}

.card-one {
    left: -30px;
    top: 100px;
}

.card-two {
    right: -20px;
    bottom: 100px;

    animation-delay: -2s;
}

@keyframes floatingCard {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================================
   CALLBACK MODAL
========================================================= */

.callback-overlay {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(243, 241, 241, 0.75);

    backdrop-filter: blur(8px);

    opacity: 0;
}

.callback-overlay.active {
    display: flex;

    animation: modalFadeIn .3s forwards;
}

@keyframes modalFadeIn {

    to {
        opacity: 1;
    }

}


/* MODAL */

.callback-modal {
    position: relative;

    width: min(620px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    padding: 35px;

    border-radius: 25px;

    background: #fff;

    color: #f5f1f1;

    box-shadow: 0 30px 100px rgba(0,0,0,.5);

    transform: translateY(30px) scale(.97);

    animation: modalSlide .35s forwards;
}

@keyframes modalSlide {

    to {
        transform: translateY(0) scale(1);
    }

}


/* CLOSE */

.callback-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 40px;
    height: 40px;

    border: 0;

    border-radius: 50%;

    background: #f1f3f5;

    font-size: 25px;

    cursor: pointer;

    color: #333;

    transition: .2s;
}

.callback-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}


/* HEADER */

.callback-header {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;

    padding-right: 40px;
}

.callback-header-icon {
    flex-shrink: 0;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #1687ff;

    color: white;

    font-size: 25px;
}

.callback-header h2 {
    margin: 0 0 5px;

    font-size: 25px;
}

.callback-header p {
    margin: 0;

    color: #777;

    font-size: 13px;
}


/* FORM */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    font-size: 13px;

    font-weight: 700;

    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #ddd;

    border-radius: 10px;

    background: #fafafa;

    color: #222;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition: .2s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1687ff;

    background: white;

    box-shadow:
        0 0 0 3px rgba(22,135,255,.08);
}


/* SUBMIT */

.callback-submit-btn {
    width: 100%;

    min-height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    border: 0;

    border-radius: 12px;

    background: #1687ff;

    color: white;

    font-size: 15px;

    font-weight: 750;

    cursor: pointer;

    transition: .3s;
}

.callback-submit-btn:hover {
    background: #0878ed;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(22,135,255,.25);
}

.callback-submit-btn:disabled {
    opacity: .6;

    cursor: not-allowed;

    transform: none;
}

.form-security {
    text-align: center;

    margin: 15px 0 0;

    color: #999;

    font-size: 11px;
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.callback-success {
    display: none;

    text-align: center;

    padding: 30px 10px;
}

.callback-success.active {
    display: block;
}

.success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8fff2;

    color: #15a65a;

    font-size: 35px;

    font-weight: bold;
}

.callback-success h3 {
    margin: 0 0 10px;

    font-size: 25px;
}

.callback-success p {
    color: #777;

    line-height: 1.6;
}

.callback-success button {
    border: 0;

    margin-top: 10px;

    padding: 12px 25px;

    border-radius: 8px;

    background: #1687ff;

    color: white;

    cursor: pointer;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 900px) {

    .landing-nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-landing-menu {
        position: absolute;

        z-index: 30;

        top: 80px;
        left: 4%;
        right: 4%;

        padding: 20px;

        border-radius: 18px;

        background: rgba(7,17,31,.98);

        border: 1px solid rgba(255,255,255,.1);

        box-shadow: 0 20px 50px rgba(0,0,0,.3);
    }

    .mobile-landing-menu.active {
        display: flex;

        flex-direction: column;

        gap: 5px;
    }

    .mobile-landing-menu a,
    .mobile-landing-menu button {
        padding: 14px;

        text-align: left;

        text-decoration: none;

        border: 0;

        border-radius: 8px;

        background: transparent;

        color: white;

        font-size: 15px;

        cursor: pointer;
    }

    .mobile-landing-menu button {
        background: #1687ff;

        text-align: center;

        font-weight: 700;

        margin-top: 8px;
    }

    .landing-container {
        grid-template-columns: 1fr;

        padding-top: 30px;

        text-align: center;
    }

    .landing-description {
        margin-left: auto;
        margin-right: auto;
    }

    .landing-buttons {
        justify-content: center;
    }

    .landing-trust {
        justify-content: center;
    }

    .landing-visual {
        min-height: 500px;

        margin-top: 20px;
    }

    .card-one {
        left: 0;
    }

    .card-two {
        right: 0;
    }

}


@media(max-width: 600px) {

    .landing-section {
        min-height: auto;
    }

    .landing-content h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .landing-description {
        font-size: 15px;
    }

    .landing-trust {
        gap: 12px;
    }

    .trust-item strong {
        font-size: 11px;
    }

    .trust-item small {
        font-size: 9px;
    }

    .landing-visual {
        min-height: 430px;
    }

    .hero-main-card {
        width: 90%;
    }

    .hero-image-placeholder {
        height: 320px;
    }

    .floating-card {
        padding: 10px;

        transform: scale(.85);
    }

    .card-one {
        left: -5px;
        top: 50px;
    }

    .card-two {
        right: -5px;
        bottom: 50px;
    }

    .callback-modal {
        padding: 25px 20px;

        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

/* drawer is a SIBLING of .bar, never a child */
.drawer {
    position: fixed;
    top: var(--bar);
    left: 0;
    right: 0;
    z-index: 55;
    height: calc(100dvh - var(--bar));
    padding: 1.9rem clamp(18px, 5vw, 40px) 80px;
    background: var(--canvas);
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
}

.drawer.open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

/* page behind the open drawer stops scrolling, so only one scrollbar is ever live */
body.lock {
    overflow: hidden
}

/* the spool controls slide off to their own side once the stage is scrolled past */
body.away .transport {
    transform: translateX(calc(-100% - 30px));
    opacity: 0;
    pointer-events: none
}

body.away .fab,
body.away .panel {
    transform: translateX(calc(100% + 30px));
    opacity: 0;
    pointer-events: none
}

body.lock .transport,
body.lock .fab {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}

.drawer a {
    color: var(--ink);
    text-decoration: none;
    font-family: 'Newsreader', serif;
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: .01em;
    border-bottom: 1px solid rgba(150, 177, 208, .3);
}

/* ---------- stage ---------- */
.stage-shell {
    padding-top: var(--bar)
}

.stage {
    position: relative;
    height: min(62vh, 560px);
    min-height: 340px;
    perspective: 1400px;
    touch-action: pan-y;
    cursor: grab;
    overflow: hidden;
    min-width: 0;
}

.stage.grabbing {
    cursor: grabbing
}

.plate {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: var(--plate-w);
    aspect-ratio: 16/10;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 3px;
    cursor: pointer;
    -webkit-user-drag: none;
    user-select: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    /* promoted once at parse time, never toggled, toggling is what flashes on mobile */
    will-change: transform, opacity;
}

.plate>* {
    pointer-events: none
}

.plate-media {
    position: absolute;
    inset: 0;
    border-radius: 3px;
    overflow: hidden;
    background-color: var(--sunk);
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 46px -20px rgba(27, 34, 51, .42), 0 2px 6px rgba(27, 34, 51, .08);
}

.plate-media::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42);
    border-radius: 3px;
}

.plate-no {
    position: absolute;
    left: 0;
    bottom: -30px;
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 300;
    font-size: .9rem;
    color: var(--ink-3);
    letter-spacing: .04em;
    opacity: 0;
    transition: opacity .3s;
}

.plate.is-centre .plate-no {
    opacity: 1
}

.plate.press .plate-media {
    transform: scale(.988);
    transition: transform .14s var(--ease)
}

.plate:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 6px
}

/* the real copy lives here in the markup, the caption block reads it out */
.plate-info {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

/* ---------- caption ---------- */
.caption {
    max-width: 620px;
    min-height: 96px;
    margin: 1.9rem auto 0;
    padding: 0 clamp(18px, 5vw, 24px);
    transition: opacity .22s var(--ease), transform .22s var(--ease);
}

.caption.swap {
    opacity: 0;
    transform: translateY(6px)
}

.cap-head {
    display: flex;
    align-items: baseline;
    gap: .9rem;
    margin-bottom: .5rem
}

.cap-no {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--accent)
}

.cap-rule {
    flex: 0 0 34px;
    height: 1px;
    background: var(--pastel);
    transform: translateY(-4px)
}

.cap-title {
    font-family: 'Newsreader', serif;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: -.02em;
    line-height: 1.2
}

.cap-desc {
    font-size: .94rem;
    line-height: 1.62;
    color: var(--ink-2);
    font-weight: 300;
    max-width: 56ch
}

.cap-meta {
    margin-top: .7rem;
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-3);
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1.1rem;
}

/* ---------- scrub ---------- */
.scrub-shell {
    margin: 1.9rem auto 0;
    width: 340px;
    max-width: calc(100vw - 44px);
    min-width: 0;
}

.scrub {
    position: relative;
    height: 26px;
    display: flex;
    align-items: center;
    touch-action: none;
    cursor: pointer;
}

.scrub:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 6px;
    border-radius: 4px
}

.scrub-track {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 2px;
    background: var(--sunk);
    box-shadow: inset 0 1px 2px rgba(90, 110, 145, .22), inset 0 -1px 0 rgba(255, 255, 255, .9);
}

.scrub-fill {
    position: absolute;
    left: 0;
    height: 4px;
    border-radius: 2px;
    background: var(--pastel-deep);
    width: 0;
}

.scrub-ticks {
    position: absolute;
    left: 0;
    right: 0;
    height: 26px;
    pointer-events: none
}

.tick {
    position: absolute;
    top: 50%;
    width: 1px;
    height: 9px;
    margin-top: -4.5px;
    background: var(--pastel);
    transition: height .3s var(--ease), background .3s, margin-top .3s var(--ease);
}

.tick.on {
    height: 13px;
    margin-top: -6.5px;
    background: var(--accent)
}

.thumb {
    position: absolute;
    top: 50%;
    width: 34px;
    height: 14px;
    margin-top: -7px;
    margin-left: -17px;
    border-radius: 7px;
    background: #fff;
    border: 1px solid var(--pastel);
    box-shadow: 0 3px 8px rgba(90, 110, 145, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    pointer-events: none;
}

.thumb i {
    width: 1px;
    height: 6px;
    background: var(--pastel-deep);
    display: block
}

.scrub-label {
    margin-top: .7rem;
    text-align: center;
    font-size: .7rem;
    letter-spacing: .18em;
    color: var(--ink-3);
    font-variant-numeric: tabular-nums;
}


/* ---------- coil control ---------- */
.fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--pastel);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px -6px rgba(27, 34, 51, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.fab.gone {
    opacity: 0;
    transform: scale(.68);
    pointer-events: none
}

.fab:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px
}

.panel {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 71;
    width: min(308px, calc(100vw - 28px));
    padding: 1.15rem 1.15rem .95rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px) saturate(124%);
    -webkit-backdrop-filter: blur(16px) saturate(124%);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: -6px -6px 16px rgba(255, 255, 255, .9), 6px 6px 20px rgba(150, 177, 208, .34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(.97);
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}

.panel.open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto
}

.panel h2 {
    font-family: 'Newsreader', serif;
    font-weight: 300;
    font-size: .94rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 1rem;
}

.slot {
    margin-bottom: .85rem
}

.slot label {
    display: flex;
    justify-content: space-between;
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: .45rem;
    font-variant-numeric: tabular-nums;
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 16px;
    background: transparent;
    cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--pastel-deep) 0 var(--fill, 50%), var(--sunk) var(--fill, 50%) 100%);
    box-shadow: inset 0 1px 2px rgba(90, 110, 145, .2);
}

input[type=range]::-moz-range-track {
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--pastel-deep) 0 var(--fill, 50%), var(--sunk) var(--fill, 50%) 100%);
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--pastel-deep);
    margin-top: -5.5px;
    box-shadow: 0 2px 5px rgba(90, 110, 145, .3);
}

input[type=range]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--pastel-deep);
    background: #fff;
    box-shadow: 0 2px 5px rgba(90, 110, 145, .3);
}

input[type=range]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px
}

.panel-out {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: .9rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(150, 177, 208, .35);
}

.state {
    font-size: .76rem;
    color: var(--ink-2);
    letter-spacing: .02em
}

.close {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--pastel);
    background: rgba(255, 255, 255, .9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -3px -3px 8px rgba(255, 255, 255, .9), 3px 3px 8px rgba(150, 177, 208, .3);
    color: var(--ink-2);
    font-size: 1rem;
    line-height: 1;
}

.close:active {
    box-shadow: inset 2px 2px 5px rgba(150, 177, 208, .35)
}

.close:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px
}


/* ---------- sheets ---------- */
.sheet {
    max-width: 620px;
    margin: clamp(52px, 9vh, 104px) auto 0;
    padding: 0 clamp(18px, 5vw, 24px);
}

.sheet-tag {
    display: block;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: .9rem;
}

.sheet h2 {
    font-family: 'Newsreader', serif;
    font-weight: 300;
    font-size: clamp(1.5rem, 3.4vw, 2rem);
    letter-spacing: -.02em;
    line-height: 1.18;
    margin-bottom: 1rem;
}

.sheet p {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--ink-2);
    margin-bottom: 1rem;
    max-width: 58ch
}

.facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 1.6rem;
    background: rgba(150, 177, 208, .35);
    border: 1px solid rgba(150, 177, 208, .35);
    border-radius: 3px;
    overflow: hidden;
}

.facts>div {
    background: var(--canvas);
    padding: .95rem 1rem
}

.facts dt {
    font-size: .66rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: .35rem
}

.facts dd {
    font-family: 'Newsreader', serif;
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--ink)
}

.lines {
    list-style: none;
    margin-top: 1.4rem;
    border-top: 1px solid rgba(150, 177, 208, .35)
}

.lines li {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1.4rem;
    align-items: baseline;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(150, 177, 208, .35);
}

.lines span {
    flex: 0 0 84px;
    font-size: .66rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-3);
}

.lines a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 110, 150, .3);
    font-size: .95rem
}

.lines a:hover {
    border-bottom-color: var(--accent);
    color: var(--accent)
}

/* ---------- transport ---------- */
.transport {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 70;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .45rem .7rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--pastel);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    box-shadow: 0 6px 18px -6px rgba(27, 34, 51, .3);
    transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.tp-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex: 0 0 auto;
    border: 1px solid var(--pastel);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(90, 110, 145, .22);
}

.tp-btn .ico-pause {
    display: none
}

.tp-btn.playing .ico-play {
    display: none
}

.tp-btn.playing .ico-pause {
    display: block
}

.tp-stack {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100px
}

.tp-line {
    position: relative;
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    overflow: hidden;
    background: var(--sunk);
    box-shadow: inset 0 1px 2px rgba(90, 110, 145, .2);
}

.tp-line i {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--accent)
}

.tp-dur {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

.tp-step {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    flex: 0 0 auto;
    border: 1px solid var(--pastel);
    background: #fff;
    color: var(--ink-2);
    font-size: .82rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-step[disabled] {
    opacity: .35;
    cursor: default
}

.tp-val {
    flex: 1 1 auto;
    text-align: center;
    font-size: .68rem;
    letter-spacing: .08em;
    color: var(--ink-3);
    font-variant-numeric: tabular-nums;
}

.tp-btn:focus-visible,
.tp-step:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px
}

/* ---------- reveal ---------- */
.rv {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.rv.in {
    opacity: 1;
    transform: none
}

/* ---------- responsive ---------- */
@media (max-width:900px) {

    /* fixed + mix-blend-mode repaints the whole layer on every scroll frame on mobile */
    body::before,
    body::after {
        position: absolute;
        mix-blend-mode: normal
    }

    body::after {
        opacity: .28
    }

    :root {
        --bar: 64px;
        --plate-w: min(74vw, 420px);
        --rx: 280;
    }

    .nav {
        display: none
    }

    .burger {
        display: flex
    }

    .bar {
        background: var(--canvas);
        backdrop-filter: none;
        -webkit-backdrop-filter: none
    }

    .stage {
        height: 48vh;
        min-height: 280px
    }

    .caption {
        margin-top: 1.4rem
    }
}

@media (max-width:560px) {
    :root {
        --plate-w: min(80vw, 360px);
        --rx: 200;
    }

    .cap-title {
        font-size: 1.28rem
    }

    .facts {
        grid-template-columns: 1fr
    }

    .transport {
        left: 14px;
        bottom: 14px;
        gap: .55rem;
        padding: .4rem .55rem
    }

    .tp-stack {
        width: 78px
    }

    .fab {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px
    }

    .panel {
        right: 14px;
        bottom: 14px
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important
    }

    .rv {
        opacity: 1;
        transform: none
    }
}
/* =====================================================
   FLOATING CONTACT BUTTONS
   ===================================================== */

.floating-contact-buttons {
    position: fixed;
    right: 24px;
    bottom: 88px;
    z-index: 9990;

    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* Individual button */

.floating-contact {
    position: relative;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, .20),
        0 3px 8px rgba(0, 0, 0, .12);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        width .25s ease;

    animation: floatingContactIn .7s cubic-bezier(.19,.86,.22,1);
}


/* Icon */

.floating-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    width: 100%;
    height: 100%;
}


/* WhatsApp */

.whatsapp-float {
    background: #09f309;
    color: #21e707;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.04);

    box-shadow:
        0 18px 35px rgba(37, 211, 102, .35),
        0 5px 12px rgba(0, 0, 0, .15);
}


/* Call */

.call-float {
    background: #04b3f8;
    color: #02b0f5;
}

.call-float:hover {
    transform: translateY(-5px) scale(1.04);

    box-shadow:
        0 18px 35px rgba(8, 121, 199, .35),
        0 5px 12px rgba(0, 0, 0, .15);
}


/* Text appears when hovering */

.floating-label {
    position: absolute;

    right: 68px;

    white-space: nowrap;

    padding: 8px 13px;

    border-radius: 8px;

    background: rgba(20, 35, 50, .92);
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    opacity: 0;
    visibility: hidden;

    transform: translateX(8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    pointer-events: none;
}

.floating-contact:hover .floating-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* Subtle WhatsApp pulse */

.whatsapp-float::before {
    content: "";

    position: absolute;
    inset: -5px;

    border-radius: 50%;

    border: 2px solid rgb(9, 243, 94);

    animation: whatsappPulse 2.2s ease-out infinite;
}


/* Entrance animation */

@keyframes floatingContactIn {

    from {
        opacity: 0;
        transform: translateY(30px) scale(.75);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* Pulse */

@keyframes whatsappPulse {

    0% {
        transform: scale(.9);
        opacity: .8;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .floating-contact-buttons {
        right: 16px;
        bottom: 78px;
        gap: 10px;
    }

    .floating-contact {
        width: 52px;
        height: 52px;
    }

    .floating-icon {
        width: 24px;
        height: 24px;
    }

    .floating-label {
        display: none;
    }

}

.foot {
    padding: 34px 0 44px
}

.footbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 20px 26px;
    border-radius: 99px;
    background: linear-gradient(160deg, #141414, var(--plate-2));
    box-shadow: var(--clay-sm)
}

.footbar p {
    font-size: .86rem;
    color: var(--ink-2);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center
}

.footbar a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: .82rem;
    padding: 7px 15px;
    border-radius: 99px;
    background-image: var(--sheen), var(--gloss);
    background-size: 240% 100%, 100% 100%;
    background-position: -135% 0, 0 0;
    background-repeat: no-repeat;
    box-shadow: 0 6px 11px -8px rgba(35, 45, 60, .6), var(--lip);
    transition: transform .24s var(--ease), box-shadow .24s var(--ease), background-image .16s linear, background-position 0s;
}

.footbar a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 18px -10px rgba(35, 45, 60, .65), var(--lip);
    background-position: 135% 0, 0 0;
    transition: transform .24s var(--ease), box-shadow .24s var(--ease), background-position .85s var(--ease);
}

.footbar a:active {
    transform: translateY(1px);
    background-image: var(--sheen), var(--gloss-down);
    box-shadow: var(--sink)
}

.footbar a:focus-visible {
    outline: 3px solid var(--jade-ink);
    outline-offset: 3px
}
