@import url("brand-tokens.css");

:root {
    --navy: var(--brand-secondary);
    --blue: var(--brand);
    --sky: var(--brand-accent);
    --aqua: var(--brand-bg);
    --soft: var(--brand-bg);
    --white: var(--surface);
    --ink: var(--text-primary);
    --text: var(--text-secondary);
    --muted: var(--text-secondary);
    --line: rgba(229, 231, 235, .92);
    /* Status colors — do not repurpose for branding */
    --green: #138a45;
    --orange: #f59e0b;
    --purple: #7c3aed;
    --red: #dc2626;
    --status-info: #2563eb;
    --success-bg: rgba(19, 138, 69, .10);
    --warning-bg: rgba(245, 158, 11, .12);
    --danger-bg: rgba(220, 38, 38, .10);
    --info-bg: rgba(37, 99, 235, .10);
    --primary-bg: rgba(99, 102, 241, .10);
    --shadow: 0 24px 70px rgba(30, 27, 75, .10);
    --shadow-soft: 0 14px 34px rgba(99, 102, 241, .14);
}

* {
    box-sizing: border-box;
}

strong,
b,
h1,
h2,
h3,
h4,
h5,
h6,
th,
.btn,
.status-badge {
    font-weight: 700;
}

.btn,
.side-nav a,
.topbar,
.sidebar .brand {
    font-family: var(--font-sans);
}

.fa-solid,
.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.fa-regular,
.far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

.fa-brands,
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--ink);
    background: var(--brand-bg);
    font-size: 11.5px;
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -5;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 0%, rgba(99, 102, 241, .08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(248, 250, 252, 0) 260px);
}

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

img,
svg {
    max-width: 100%;
}

/* Loader */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    transition: .4s ease;
}

body.loaded .page-loader {
    opacity: 0;
    visibility: hidden;
}

.loader-card {
    width: 230px;
    padding: 26px;
    text-align: center;
    border-radius: 30px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.loader-ring {
    width: 42px;
    height: 42px;
    display: block;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 4px solid rgba(17, 103, 255, .12);
    border-top-color: var(--blue);
    animation: spin .9s linear infinite;
}

.loader-card img {
    width: 128px;
    display: block;
    margin: 0 auto 8px;
}

.loader-card span {
    display: block;
    color: var(--muted);
    font-size: 9.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
    background: rgba(255, 255, 255, .86);
    border-bottom: 1px solid rgba(18, 32, 51, .06);
    backdrop-filter: blur(20px);
}

.navbar-brand img {
    width: 140px;
    max-height: 44px;
    object-fit: contain;
}

.navbar-toggler {
    color: var(--blue);
}

.nav-link {
    padding: 9px 13px !important;
    color: #334155;
    font-size: 11.5px;
    border-radius: 999px;
    transition: .22s ease;
}

.nav-link:hover {
    color: var(--blue);
    background: rgba(17, 103, 255, .07);
}

.btn-login,
.btn-primary-app,
.btn-light-app {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 11.5px;
    line-height: 1;
    transition: .22s ease;
    white-space: nowrap;
}

.btn-login,
.btn-light-app {
    background: #fff;
    color: var(--navy);
    border-color: rgba(18, 32, 51, .10);
}

.btn-login:hover,
.btn-light-app:hover {
    color: var(--blue);
    border-color: rgba(17, 103, 255, .35);
    transform: translateY(-2px);
}

.btn-primary-app {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-hover));
    box-shadow: var(--shadow-soft);
}

.btn-primary-app:hover {
    color: #fff;
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--brand-hover), var(--brand));
    box-shadow: 0 18px 42px rgba(99, 102, 241, .22);
}

/* Floating Menu */

.floating-menu {
    position: fixed;
    right: 22px;
    top: 50%;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(-50%);
}

.floating-menu a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(17, 103, 255, .12);
    box-shadow: 0 12px 34px rgba(6, 27, 73, .08);
    backdrop-filter: blur(18px);
    transition: .28s ease;
}

.floating-menu a span {
    width: 0;
    opacity: 0;
    white-space: nowrap;
    color: var(--navy);
    font-size: 11px;
    transition: .28s ease;
}

.floating-menu a:hover,
.floating-menu a.active {
    width: 126px;
    justify-content: flex-start;
    padding: 0 15px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(17, 103, 255, .14);
}

.floating-menu a:hover span,
.floating-menu a.active span {
    width: auto;
    opacity: 1;
}

/* Hero */

.hero-section {
    position: relative;
    padding: 78px 0 62px;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: floatShape 8s ease-in-out infinite alternate;
}

.shape-one {
    width: 180px;
    height: 180px;
    top: 90px;
    left: 6%;
    background: rgba(17, 103, 255, .08);
}

.shape-two {
    width: 260px;
    height: 260px;
    right: -80px;
    top: 180px;
    background: rgba(34, 166, 255, .10);
    animation-delay: 1s;
}

.shape-three {
    width: 120px;
    height: 120px;
    right: 18%;
    bottom: 70px;
    background: rgba(17, 103, 255, .07);
    animation-delay: 2s;
}

@keyframes floatShape {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-24px) scale(1.04);
    }
}

.section-tag,
.section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-content h1 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -.035em;
}

.hero-content p {
    max-width: 640px;
    color: var(--text);
    font-size: 13.2px;
    line-height: 1.82;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.hero-points div {
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(6, 27, 73, .05);
}

.hero-points i {
    color: var(--blue);
    display: block;
    font-size: 17px;
    margin-bottom: 9px;
}

.hero-points span {
    color: var(--navy);
    font-size: 11.3px;
}

/* Hero Visual */

.hero-visual {
    position: relative;
    min-height: 520px;
}

.visual-glow {
    position: absolute;
    inset: 10%;
    z-index: -1;
    border-radius: 50%;
    background: rgba(17, 103, 255, .10);
    filter: blur(40px);
}

.product-illustration {
    overflow: hidden;
    border-radius: 36px;
    background: rgba(255, 255, 255, .90);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.illustration-top {
    height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(248, 251, 255, .92);
    border-bottom: 1px solid rgba(18, 32, 51, .06);
}

.illustration-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.illustration-top span:nth-child(1) {
    background: #ff6b6b;
}

.illustration-top span:nth-child(2) {
    background: #ffc247;
}

.illustration-top span:nth-child(3) {
    background: #42d97a;
}

.illustration-top small {
    margin-left: auto;
    color: var(--muted);
    font-size: 10.5px;
}

.illustration-body {
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(17, 103, 255, .11), transparent 34%),
        linear-gradient(180deg, #fff, #f6faff);
}

.workspace-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.workspace-header small {
    display: block;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.workspace-header h3 {
    margin: 4px 0 0;
    color: var(--navy);
    font-size: 24px;
    letter-spacing: -.02em;
}

.workspace-header button {
    border: 0;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    font-size: 11px;
}

.workspace-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.workspace-stats div {
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(6, 27, 73, .05);
}

.workspace-stats i {
    color: var(--blue);
    font-size: 17px;
    margin-bottom: 12px;
}

.workspace-stats strong {
    display: block;
    color: var(--navy);
    font-size: 22px;
    line-height: 1;
}

.workspace-stats span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 10.5px;
}

.marketing-flow-mini {
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(6, 27, 73, .05);
    margin-bottom: 18px;
}

.mini-flow-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 12px;
}

.mini-flow-step i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--blue);
    background: rgba(17, 103, 255, .08);
}

.mini-flow-step.active i {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--sky));
}

.mini-flow-line {
    width: 2px;
    height: 28px;
    margin: 7px 0 7px 17px;
    background: linear-gradient(180deg, rgba(17, 103, 255, .16), rgba(17, 103, 255, .44));
}

.workspace-list {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
}

.workspace-list div {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(18, 32, 51, .06);
}

.workspace-list div:last-child {
    border-bottom: 0;
}

.workspace-list i {
    color: var(--blue);
}

.workspace-list span {
    color: #475569;
    font-size: 12px;
}

.workspace-list b {
    color: var(--green);
    font-size: 10px;
    text-transform: uppercase;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    box-shadow: 0 16px 42px rgba(6, 27, 73, .10);
    animation: cardFloat 4.5s ease-in-out infinite alternate;
}

.floating-card i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
}

.floating-card span {
    display: block;
    color: var(--navy);
    font-size: 11.5px;
}

.floating-card small {
    color: var(--muted);
    font-size: 10px;
}

.floating-card-one {
    left: -12px;
    top: 120px;
}

.floating-card-two {
    right: -10px;
    bottom: 118px;
    animation-delay: 1.2s;
}

@keyframes cardFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-13px);
    }
}

/* Sections */

.essentials-section,
.tour-section,
.product-section,
.pricing-section,
.contact-section {
    padding: 78px 0;
}

.essentials-section,
.product-section {
    background: linear-gradient(180deg, rgba(17, 103, 255, .035), rgba(255, 255, 255, .72));
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.tour-copy h2,
.contact-panel h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -.03em;
}

.section-heading p,
.tour-copy p,
.contact-panel p {
    margin: 14px auto 0;
    color: var(--text);
    font-size: 12.8px;
    line-height: 1.76;
}

/* Cards */

.feature-card,
.product-card,
.price-card,
.contact-panel {
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--line);
    box-shadow: 0 16px 42px rgba(6, 27, 73, .07);
    backdrop-filter: blur(18px);
}

.feature-card,
.product-card,
.price-card {
    height: 100%;
    padding: 26px;
    border-radius: 28px;
    transition: .22s ease;
}

.feature-card:hover,
.product-card:hover,
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 58px rgba(6, 27, 73, .11);
}

.feature-icon,
.product-card > i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    box-shadow: var(--shadow-soft);
    margin-bottom: 18px;
}

.feature-card h3,
.product-card h3,
.price-card h3 {
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 9px;
}

.feature-card p,
.product-card p,
.price-card p {
    color: #5b6677;
    font-size: 11.8px;
    line-height: 1.72;
    margin: 0;
}

/* Tour */

.tour-list {
    margin-top: 24px;
}

.tour-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    color: #475569;
    font-size: 12.3px;
    border-bottom: 1px solid rgba(18, 32, 51, .07);
}

.tour-list i {
    color: var(--green);
}

/* Public Marketing Flow */

.marketing-flow-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 18% 10%, rgba(17, 103, 255, .10), transparent 28%),
        radial-gradient(circle at 92% 80%, rgba(34, 166, 255, .12), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(246, 250, 255, .86));
    border: 1px solid rgba(18, 32, 51, .08);
    box-shadow: 0 28px 80px rgba(6, 27, 73, .11);
    backdrop-filter: blur(20px);
}

.flow-bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.flow-bubble-one {
    width: 150px;
    height: 150px;
    left: -50px;
    top: 80px;
    background: rgba(17, 103, 255, .07);
}

.flow-bubble-two {
    width: 220px;
    height: 220px;
    right: -95px;
    bottom: -60px;
    background: rgba(34, 166, 255, .09);
}

.flow-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.flow-card-header span {
    color: var(--navy);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.flow-card-header small {
    color: var(--muted);
    font-size: 11px;
}

.marketing-flow {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr;
    align-items: center;
    gap: 12px;
}

.marketing-step {
    min-height: 260px;
    padding: 26px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(18, 32, 51, .08);
    box-shadow:
        0 18px 46px rgba(6, 27, 73, .08),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    transition: .25s ease;
}

.marketing-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(6, 27, 73, .12);
}

.step-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 24px;
    color: #fff;
    font-size: 24px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    box-shadow:
        0 18px 40px rgba(17, 103, 255, .24),
        inset 0 1px 0 rgba(255, 255, 255, .35);
}

.marketing-step > span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.marketing-step h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.2;
}

.marketing-step p {
    margin: 0;
    color: #5b6677;
    font-size: 12px;
    line-height: 1.7;
}

.flow-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
}

.flow-arrow span {
    flex: 1;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(17, 103, 255, .08), rgba(17, 103, 255, .45));
}

.flow-arrow i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    box-shadow: 0 12px 28px rgba(17, 103, 255, .20);
}

.flow-benefits {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.flow-benefits div {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 18px;
    color: var(--navy);
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(18, 32, 51, .07);
    font-size: 11.5px;
}

.flow-benefits i {
    color: var(--blue);
}

/* Product */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Pricing */

.price-card span {
    display: inline-block;
    color: var(--blue);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.price-card li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 9px 0;
    color: #475569;
    font-size: 12px;
}

.price-card li i {
    color: var(--green);
}

.price-card.featured {
    border-color: rgba(17, 103, 255, .22);
    box-shadow: 0 26px 70px rgba(17, 103, 255, .13);
}

/* Contact */

.contact-panel {
    padding: 32px;
    border-radius: 34px;
}

.form-control {
    min-height: 46px;
    border-radius: 16px;
    border-color: rgba(18, 32, 51, .12);
    background: rgba(248, 251, 255, .94);
    font-size: 12px;
}

.form-control:focus {
    border-color: rgba(17, 103, 255, .45);
    box-shadow: 0 0 0 4px rgba(17, 103, 255, .08);
}

textarea.form-control {
    min-height: 120px;
}

.contact-info {
    height: 100%;
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(17, 103, 255, .10), transparent 34%),
        linear-gradient(180deg, #ffffff, #f4f8ff);
    border: 1px solid rgba(18, 32, 51, .08);
}

.contact-info img {
    width: 150px;
    margin-bottom: 16px;
}

.contact-info p {
    color: #5b6677;
    font-size: 12px;
    line-height: 1.72;
}

.contact-info div {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(18, 32, 51, .07);
    color: var(--navy);
    font-size: 11.8px;
}

.contact-info i {
    color: var(--blue);
}

/* Footer */

.site-footer {
    padding: 30px 0;
    border-top: 1px solid rgba(18, 32, 51, .08);
    color: var(--muted);
    font-size: 11px;
}

.site-footer p {
    margin: 0;
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .65s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 1199px) {
    .marketing-flow {
        grid-template-columns: 1fr;
    }

    .flow-arrow {
        justify-content: center;
        transform: rotate(90deg);
        min-height: 46px;
    }

    .flow-arrow span {
        max-width: 44px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255, 255, 255, .96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .floating-menu {
        display: none;
    }

    .hero-section {
        padding-top: 48px;
    }

    .hero-visual {
        min-height: auto;
    }

    .floating-card {
        position: static;
        margin: 10px 0;
        animation: none;
    }

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

    .flow-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    body {
        font-size: 12px;
    }

    .navbar-brand img {
        width: 126px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-points,
    .workspace-stats,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .workspace-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .workspace-list div {
        grid-template-columns: 26px 1fr;
    }

    .workspace-list b {
        grid-column: 2;
    }

    .marketing-flow-card {
        padding: 18px;
        border-radius: 28px;
    }

    .marketing-step {
        min-height: auto;
        padding: 22px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        border-radius: 20px;
        font-size: 20px;
    }

    .marketing-step h3 {
        font-size: 18px;
    }

    .essentials-section,
    .tour-section,
    .product-section,
    .pricing-section,
    .contact-section {
        padding: 56px 0;
    }

    .contact-panel {
        padding: 22px;
    }
}

/* Public onboarding pages */

.public-confirmation,
.public-onboarding {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 18px;
    background:
        radial-gradient(circle at 20% 12%, rgba(17, 103, 255, .10), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(34, 166, 255, .10), transparent 26%),
        linear-gradient(180deg, #fbfdff, #f5f9ff);
}

.confirmation-card,
.onboarding-public-card {
    width: min(760px, 100%);
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.confirmation-card {
    text-align: center;
}

.confirmation-card img,
.onboarding-public-card > img {
    width: 150px;
    display: block;
    margin: 0 auto 18px;
}

.confirmation-card h1,
.onboarding-public-card h1 {
    margin: 14px 0 8px;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.2;
}

.confirmation-card p,
.onboarding-public-card p {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 12.5px;
}

.onboarding-public-card .status-badge {
    margin-bottom: 4px;
}

@media (max-width: 575px) {
    .confirmation-card,
    .onboarding-public-card {
        padding: 22px;
    }
}

/* 2026 Visual Refresh */

:root {
    --navy: var(--brand-secondary);
    --blue: var(--brand);
    --sky: var(--brand-accent);
    --aqua: var(--brand-bg);
    --soft: var(--brand-bg);
    --white: var(--surface);
    --ink: var(--text-primary);
    --text: var(--text-secondary);
    --muted: var(--text-secondary);
    --line: rgba(229, 231, 235, .92);
    --green: #138a45;
    --orange: #f59e0b;
    --purple: #7c3aed;
    --red: #dc2626;
    --status-info: #2563eb;
    --success-bg: rgba(19, 138, 69, .10);
    --warning-bg: rgba(245, 158, 11, .12);
    --danger-bg: rgba(220, 38, 38, .10);
    --info-bg: rgba(37, 99, 235, .10);
    --primary-bg: rgba(99, 102, 241, .10);
    --shadow: 0 28px 68px rgba(30, 27, 75, .12);
    --shadow-soft: 0 18px 40px rgba(99, 102, 241, .16);
}

html {
    font-size: 11.5px;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(167, 139, 250, .14), transparent 24%),
        radial-gradient(circle at top right, rgba(99, 102, 241, .10), transparent 18%),
        linear-gradient(180deg, var(--surface) 0%, var(--brand-bg) 52%, #f1f5f9 100%);
    font-size: 11.5px;
    line-height: 1.6;
}

body::before {
    background:
        radial-gradient(circle at 12% 0%, rgba(99, 102, 241, .10), transparent 28%),
        radial-gradient(circle at 92% 4%, rgba(167, 139, 250, .08), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(248, 250, 252, 0) 280px);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .62) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .62) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .42), transparent 72%);
    opacity: .24;
}

::selection {
    background: rgba(99, 102, 241, .20);
    color: var(--navy);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .54);
}

::-webkit-scrollbar-thumb {
    border: 2px solid rgba(255, 255, 255, .82);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(99, 102, 241, .54), rgba(167, 139, 250, .86));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--navy);
    letter-spacing: -.03em;
}

p,
li,
td,
input,
select,
textarea,
button {
    letter-spacing: -.01em;
}

.site-header {
    padding: 10px 0;
    background: rgba(255, 255, 255, .72);
    border-bottom-color: rgba(92, 118, 162, .12);
    box-shadow: 0 16px 40px rgba(44, 73, 129, .07);
    backdrop-filter: blur(24px);
}

.nav-link {
    padding: 9px 14px !important;
    color: #516682;
    font-size: 10.75px;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--brand);
    border-color: rgba(99, 102, 241, .14);
    background: rgba(255, 255, 255, .78);
}

.btn-login,
.btn-primary-app,
.btn-light-app {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 10.75px;
    font-weight: 700;
}

.btn-login,
.btn-light-app {
    background: rgba(255, 255, 255, .88);
    border-color: rgba(92, 118, 162, .16);
    box-shadow: 0 14px 24px rgba(44, 73, 129, .06);
}

.btn-primary-app {
    background: linear-gradient(135deg, var(--brand), var(--brand-accent) 58%, #c4b5fd);
    box-shadow: 0 18px 34px rgba(99, 102, 241, .24);
}

.floating-menu a {
    background: rgba(255, 255, 255, .8);
    border-color: rgba(92, 118, 162, .14);
    box-shadow: 0 18px 34px rgba(44, 73, 129, .08);
}

.hero-section {
    padding: 82px 0 64px;
}

.shape {
    filter: blur(2px);
}

.shape-one {
    background: rgba(89, 180, 255, .20);
}

.shape-two {
    background: rgba(127, 93, 255, .14);
}

.shape-three {
    background: rgba(43, 111, 255, .12);
}

.section-tag,
.section-heading span {
    color: var(--brand);
    font-size: 9.5px;
    letter-spacing: .16em;
}

.hero-content h1 {
    color: #163159;
    letter-spacing: -.05em;
}

.hero-content p {
    color: var(--text);
    font-size: 12px;
}

.public-confirmation,
.public-onboarding {
    background:
        radial-gradient(circle at 18% 10%, rgba(89, 180, 255, .18), transparent 24%),
        radial-gradient(circle at 78% 14%, rgba(127, 93, 255, .10), transparent 20%),
        linear-gradient(180deg, #fdfefe, #f3f7ff);
}

.confirmation-card,
.onboarding-public-card {
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 250, 255, .95));
    border-color: rgba(92, 118, 162, .15);
    box-shadow: 0 30px 60px rgba(44, 73, 129, .12);
}

/* 2026 Dense Enterprise Baseline */

html {
    font-size: 11px;
}

body {
    font-size: 11px;
    line-height: 1.55;
}

h1 {
    font-size: clamp(20px, 2.8vw, 28px);
}

h2 {
    font-size: clamp(16px, 2vw, 22px);
}

h3 {
    font-size: clamp(13px, 1.5vw, 18px);
}

p,
li,
td,
input,
select,
textarea,
button {
    font-size: 10.5px;
}

.fa-solid,
.fas,
.fa-regular,
.far,
.fa-brands,
.fab {
    font-size: 1.02em;
}

.page-loader {
    backdrop-filter: blur(10px);
}

.loader-card {
    width: 214px;
    padding: 22px;
    border-radius: 22px;
}

.loader-card span {
    font-size: 8.5px;
}

/* 2026 Premium Readability Baseline */

html {
    font-size: 13px;
}

body {
    font-size: 13px;
    line-height: 1.65;
    color: #21324a;
}

p,
li,
td,
input,
select,
textarea,
button {
    font-size: 12.8px;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1d2f47;
    font-weight: 800;
}

input,
select,
textarea {
    color: #24364f;
    font-weight: 600;
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

table th {
    font-size: 10.9px;
    font-weight: 800;
}

table td {
    font-size: 12.2px;
    font-weight: 500;
}

@media (max-width: 767px) {
    html {
        font-size: 12px;
    }

    body,
    p,
    li,
    td,
    input,
    select,
    textarea,
    button {
        font-size: 12px;
    }
}
