:root {
    color-scheme: light;
    --black: #0A0A0B;
    --midnight: #111827;
    --carbon: #161B22;
    --graphite: #1E293B;
    --slate: #334155;
    --platinum: #F8FAFC;
    --mist: #EEF2F6;
    --steel: #CBD5E1;
    --muted: #64748B;
    --blue: #5DADE2;
    --blue-strong: #1E6FA8;
    --gold: #C6A664;
    --gold-soft: #E7D39B;
    --success: #65D6AD;
    --danger: #B42318;
    --bg: #F6F8FB;
    --surface: #FFFFFF;
    --surface-2: #F8FAFC;
    --text: #111827;
    --text-soft: #475569;
    --border: rgba(15, 23, 42, .11);
    --border-strong: rgba(15, 23, 42, .18);
    --shadow: 0 26px 70px rgba(2, 6, 23, .14);
    --shadow-soft: 0 18px 45px rgba(2, 6, 23, .09);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0A0A0B;
    --surface: #111827;
    --surface-2: #161B22;
    --text: #F8FAFC;
    --text-soft: #CBD5E1;
    --border: rgba(248, 250, 252, .12);
    --border-strong: rgba(248, 250, 252, .2);
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

[hidden] {
    display: none !important;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ui-icon {
    width: 22px;
    height: 22px;
}

.topbar {
    background: #070708;
    color: rgba(248, 250, 252, .82);
    border-bottom: 1px solid rgba(248, 250, 252, .08);
    font-size: 13px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.phone,
.nav-phone,
.footer-phone {
    color: var(--gold-soft);
    font-weight: 800;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(10, 10, 11, .88);
    border-bottom: 1px solid rgba(248, 250, 252, .09);
    backdrop-filter: blur(22px);
}

.nav-wrap {
    position: relative;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo,
.footer-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(198, 166, 100, .42);
    background: linear-gradient(145deg, #111827, #0A0A0B);
    color: var(--gold-soft);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 16px 34px rgba(0, 0, 0, .22);
    font-size: 12px;
    font-weight: 900;
}

.brand-lockup,
.footer-lockup span {
    display: grid;
    line-height: 1;
}

.brand-lockup b,
.brand-lockup em,
.footer-lockup b,
.footer-lockup em {
    font-size: 16px;
    font-style: normal;
    font-weight: 850;
}

.brand-lockup b,
.footer-lockup b {
    color: #F8FAFC;
}

.brand-lockup em,
.footer-lockup em {
    color: var(--gold-soft);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: rgba(248, 250, 252, .86);
    font-size: 14px;
    font-weight: 720;
}

.main-nav > a,
.nav-item > a {
    padding: 26px 0;
}

.main-nav > a:not(.nav-cta):hover,
.nav-item:hover > a {
    color: #FFFFFF;
}

.nav-item {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -18px;
    min-width: 286px;
    padding: 12px;
    border: 1px solid rgba(248, 250, 252, .12);
    border-radius: var(--radius);
    background: rgba(17, 24, 39, .98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
}

.has-menu:hover .dropdown {
    display: grid;
}

.dropdown a {
    padding: 11px 12px;
    border-radius: 12px;
    color: rgba(248, 250, 252, .78);
    white-space: nowrap;
    font-weight: 700;
}

.dropdown a:hover {
    color: #FFFFFF;
    background: rgba(93, 173, 226, .11);
}

.industry-menu {
    width: 780px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    border: 1px solid rgba(198, 166, 100, .54);
    border-radius: 999px;
    padding: 12px 22px;
    background: linear-gradient(180deg, #E7D39B, #C6A664);
    color: #0A0A0B;
    box-shadow: 0 18px 38px rgba(198, 166, 100, .22), inset 0 1px 0 rgba(255, 255, 255, .42);
    cursor: pointer;
    font-weight: 850;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.main-nav > .nav-cta {
    min-height: 42px;
    padding: 10px 18px;
}

.button:hover,
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(198, 166, 100, .26), inset 0 1px 0 rgba(255, 255, 255, .5);
}

.button .ui-icon {
    width: 18px;
    height: 18px;
}

.button-lg {
    min-height: 54px;
    padding: 15px 26px;
    font-size: 16px;
}

.button.secondary,
.button.ghost,
.ghost {
    color: var(--platinum);
    background: rgba(248, 250, 252, .06);
    border-color: rgba(248, 250, 252, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.button.secondary:hover,
.button.ghost:hover,
.ghost:hover {
    border-color: rgba(93, 173, 226, .45);
    box-shadow: 0 20px 42px rgba(2, 6, 23, .18), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    padding: 82px 0 70px;
    color: var(--platinum);
    background:
        linear-gradient(90deg, rgba(93, 173, 226, .08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(93, 173, 226, .05) 1px, transparent 1px),
        linear-gradient(135deg, #0A0A0B 0%, #111827 48%, #161B22 100%);
    background-size: 88px 88px, 88px 88px, auto;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(93, 173, 226, .08) 44%, transparent 58%);
    pointer-events: none;
}

.hero-ambient {
    position: absolute;
    pointer-events: none;
    opacity: .78;
    filter: blur(34px);
}

.hero-ambient-one {
    width: 680px;
    height: 120px;
    left: -120px;
    top: 170px;
    background: linear-gradient(90deg, transparent, rgba(93, 173, 226, .36), transparent);
    transform: rotate(-17deg);
}

.hero-ambient-two {
    width: 680px;
    height: 120px;
    right: -170px;
    bottom: 150px;
    background: linear-gradient(90deg, transparent, rgba(198, 166, 100, .28), transparent);
    transform: rotate(-13deg);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, .86fr);
    align-items: center;
    gap: 56px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    padding: 9px 13px;
    border: 1px solid rgba(248, 250, 252, .13);
    border-radius: 999px;
    background: rgba(248, 250, 252, .05);
    color: rgba(248, 250, 252, .78);
    font-size: 13px;
    font-weight: 760;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(101, 214, 173, .12);
}

.hero h1 {
    margin: 0;
    font-size: 72px;
    line-height: .96;
    font-weight: 900;
    color: #FFFFFF;
}

.hero-sub {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(248, 250, 252, .72);
    font-size: 21px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 650px;
    margin-top: 34px;
}

.hero-proof-row div {
    min-height: 92px;
    padding: 18px;
    border: 1px solid rgba(248, 250, 252, .11);
    border-radius: var(--radius);
    background: rgba(248, 250, 252, .055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.hero-proof-row strong {
    display: block;
    color: #FFFFFF;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.hero-proof-row span {
    display: block;
    margin-top: 10px;
    color: rgba(248, 250, 252, .6);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.dashboard-frame {
    position: relative;
    width: min(100%, 520px);
    padding: 22px;
    border: 1px solid rgba(248, 250, 252, .13);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, .12), rgba(248, 250, 252, .045)),
        rgba(10, 10, 11, .78);
    box-shadow: 0 42px 95px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .09);
    backdrop-filter: blur(18px);
}

.dashboard-frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(93, 173, 226, .45), rgba(198, 166, 100, .28), transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.dashboard-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.dashboard-topline span,
.dashboard-metrics small,
.risk-ledger span {
    display: block;
    color: rgba(248, 250, 252, .54);
    font-size: 12px;
    font-weight: 780;
}

.dashboard-topline strong {
    display: block;
    margin-top: 5px;
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 870;
}

.dashboard-topline em {
    flex: 0 0 auto;
    padding: 8px 11px;
    border: 1px solid rgba(101, 214, 173, .28);
    border-radius: 999px;
    background: rgba(101, 214, 173, .1);
    color: #BAFFE5;
    font-size: 12px;
    font-style: normal;
    font-weight: 820;
}

.dashboard-chart {
    position: relative;
    height: 190px;
    display: flex;
    align-items: flex-end;
    gap: 13px;
    padding: 18px;
    border: 1px solid rgba(248, 250, 252, .09);
    border-radius: 24px;
    background: rgba(248, 250, 252, .045);
    overflow: hidden;
}

.chart-grid {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, .08) 1px, transparent 1px);
    background-size: 100% 38px;
}

.dashboard-chart span {
    position: relative;
    z-index: 1;
    flex: 1;
    height: var(--h);
    min-height: 42px;
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(180deg, #5DADE2, #1E293B);
    box-shadow: 0 0 28px rgba(93, 173, 226, .3);
}

.dashboard-chart span:nth-of-type(4),
.dashboard-chart span:nth-of-type(6) {
    background: linear-gradient(180deg, #E7D39B, #69562C);
    box-shadow: 0 0 28px rgba(198, 166, 100, .24);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.dashboard-metrics div,
.risk-ledger div {
    padding: 14px;
    border: 1px solid rgba(248, 250, 252, .09);
    border-radius: 16px;
    background: rgba(248, 250, 252, .055);
}

.dashboard-metrics strong,
.risk-ledger strong {
    display: block;
    margin-top: 5px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 860;
}

.risk-ledger {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.transaction-rail {
    display: grid;
    grid-template-columns: 12px 1fr auto;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 15px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(93, 173, 226, .16), rgba(198, 166, 100, .12));
    border: 1px solid rgba(248, 250, 252, .11);
}

.transaction-rail > span {
    width: 10px;
    height: 44px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 20px rgba(101, 214, 173, .32);
}

.transaction-rail strong,
.transaction-rail b {
    color: #FFFFFF;
    font-weight: 850;
}

.transaction-rail small {
    display: block;
    margin-top: 4px;
    color: rgba(248, 250, 252, .62);
}

.transaction-rail b {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(248, 250, 252, .16);
    border-radius: 50%;
    background: rgba(10, 10, 11, .36);
}

.hero-watermark {
    position: absolute;
    right: 0;
    bottom: 12px;
    width: 210px;
    opacity: .15;
    filter: grayscale(.2);
    pointer-events: none;
}

.trust-strip {
    margin-top: -1px;
    background: #0A0A0B;
    border-top: 1px solid rgba(248, 250, 252, .08);
    border-bottom: 1px solid rgba(248, 250, 252, .08);
}

.trust-strip-inner {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 18px 0;
}

.trust-strip span,
.partner-row span,
.footer-capabilities span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(248, 250, 252, .11);
    border-radius: 999px;
    padding: 9px 12px;
    background: rgba(248, 250, 252, .045);
    color: rgba(248, 250, 252, .72);
    font-size: 13px;
    font-weight: 750;
}

.trust-strip .ui-icon {
    width: 16px;
    height: 16px;
    color: var(--gold-soft);
}

.section {
    padding: 94px 0;
}

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

.section-heading.center {
    text-align: center;
}

.split-heading {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: end;
    gap: 42px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 850;
}

.section h2,
.final-cta h2,
.form-hero h1,
.thank-you h1,
.admin-page h1,
.admin-auth h1 {
    margin: 0;
    color: var(--text);
    font-size: 46px;
    line-height: 1.08;
    font-weight: 880;
}

.section-heading p,
.security-copy p,
.feature-card p,
.platform-card p,
.process-card p,
.payment-panel p,
.testimonial-card p,
.not-listed p,
.form-hero p,
.thank-you p {
    color: var(--text-soft);
    line-height: 1.7;
}

.platform-section,
.payments {
    background: var(--platinum);
}

.platform-grid,
.three-grid,
.testimonial-grid {
    display: grid;
    gap: 18px;
}

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

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

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

.platform-card,
.feature-card,
.process-card,
.testimonial-card,
.not-listed,
.payment-panel,
.admin-card,
.table-wrap,
.detail-item {
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.platform-card,
.feature-card,
.process-card,
.testimonial-card {
    position: relative;
    overflow: hidden;
    min-height: 256px;
    border-radius: 22px;
    padding: 28px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.platform-card:hover,
.feature-card:hover,
.process-card:hover,
.testimonial-card:hover,
.upload-card:hover {
    transform: translateY(-4px);
    border-color: rgba(93, 173, 226, .32);
    box-shadow: 0 26px 70px rgba(2, 6, 23, .13);
}

.platform-card::before,
.feature-card::before,
.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(93, 173, 226, .08), transparent 52%);
    pointer-events: none;
}

.platform-card > *,
.feature-card > *,
.testimonial-card > * {
    position: relative;
}

.icon-tile,
.icon-circle,
.process-icon,
.panel-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(93, 173, 226, .18);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(93, 173, 226, .16), rgba(93, 173, 226, .06));
    color: var(--blue-strong);
}

.feature-card:nth-child(2) .icon-circle,
.process-card:nth-child(2) .process-icon {
    border-color: rgba(198, 166, 100, .28);
    background: linear-gradient(180deg, rgba(198, 166, 100, .2), rgba(198, 166, 100, .07));
    color: #8A6A27;
}

.feature-card:nth-child(3) .icon-circle,
.process-card:nth-child(3) .process-icon {
    border-color: rgba(101, 214, 173, .25);
    background: linear-gradient(180deg, rgba(101, 214, 173, .18), rgba(101, 214, 173, .07));
    color: #16865D;
}

.platform-card h3,
.feature-card h3,
.process-card h3,
.testimonial-card h3,
.payment-panel h3,
.not-listed h3,
.security-stack h3 {
    margin: 24px 0 10px;
    color: var(--text);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 850;
}

.metrics-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--border);
    box-shadow: var(--shadow-soft);
}

.metrics-panel div {
    padding: 25px;
    background: #FFFFFF;
}

.metrics-panel strong {
    display: block;
    color: var(--midnight);
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
}

.metrics-panel span {
    display: block;
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 760;
}

.choose,
.process,
.testimonials,
.application-wrap,
.admin-page,
.admin-auth {
    background: linear-gradient(180deg, #FFFFFF, #F3F6FA);
}

.support-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 34px;
    padding: 32px;
    border: 1px solid rgba(248, 250, 252, .12);
    border-radius: 28px;
    background: linear-gradient(135deg, #0A0A0B, #111827);
    color: var(--platinum);
    box-shadow: var(--shadow);
}

.support-strip .eyebrow {
    color: var(--gold-soft);
}

.support-strip h3,
.final-cta h2 {
    margin: 0;
    color: #FFFFFF;
    font-size: 30px;
    line-height: 1.16;
    font-weight: 860;
}

.support-strip p {
    max-width: 720px;
    color: rgba(248, 250, 252, .66);
}

.industries {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(248, 250, 252, .045) 1px, transparent 1px),
        linear-gradient(180deg, #0A0A0B, #111827 68%, #0A0A0B);
    background-size: 92px 92px, auto;
    color: var(--platinum);
}

.industries .section-heading h2,
.industries .not-listed h3 {
    color: #FFFFFF;
}

.industries .section-heading p,
.industries .not-listed p {
    color: rgba(248, 250, 252, .66);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(202px, 1fr));
    gap: 12px;
}

.industry-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 14px;
    border: 1px solid rgba(248, 250, 252, .1);
    border-radius: 16px;
    background: rgba(248, 250, 252, .055);
    color: rgba(248, 250, 252, .86);
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.industry-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(198, 166, 100, .46);
    background: rgba(248, 250, 252, .09);
}

.industry-grid span {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    border: 1px solid rgba(93, 173, 226, .24);
    background: rgba(93, 173, 226, .11);
    color: #BFE6FF;
    font-weight: 850;
}

.industry-grid em {
    font-style: normal;
    font-weight: 760;
    line-height: 1.25;
}

.not-listed {
    max-width: 620px;
    margin: 34px auto 0;
    padding: 26px;
    border-color: rgba(248, 250, 252, .1);
    border-radius: 22px;
    background: rgba(248, 250, 252, .055);
    text-align: center;
    box-shadow: none;
}

.security-section {
    background: var(--black);
    color: var(--platinum);
}

.security-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
    gap: 46px;
    align-items: center;
}

.security-copy h2 {
    color: #FFFFFF;
}

.security-copy p {
    color: rgba(248, 250, 252, .68);
}

.partner-row,
.footer-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.security-stack {
    display: grid;
    gap: 14px;
}

.security-stack article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(248, 250, 252, .11);
    border-radius: 22px;
    background: rgba(248, 250, 252, .055);
}

.security-stack .ui-icon {
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid rgba(198, 166, 100, .24);
    border-radius: 15px;
    color: var(--gold-soft);
}

.security-stack h3 {
    margin: 0 0 6px;
    color: #FFFFFF;
}

.security-stack p {
    margin: 0;
    color: rgba(248, 250, 252, .64);
    line-height: 1.6;
}

.process-card {
    min-height: 280px;
}

.process-number {
    position: absolute;
    right: 24px;
    top: 18px;
    color: rgba(15, 23, 42, .08);
    font-size: 56px;
    font-weight: 900;
}

.process-icon {
    position: relative;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.tabs button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #FFFFFF;
    color: var(--text-soft);
    padding: 11px 16px;
    cursor: pointer;
    font-weight: 800;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.tabs button:hover,
.tabs button.active {
    transform: translateY(-1px);
    border-color: rgba(93, 173, 226, .34);
    background: #0A0A0B;
    color: #FFFFFF;
}

.tabs .ui-icon {
    width: 18px;
    height: 18px;
}

.payment-panel {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(360px, 1.02fr);
    gap: 38px;
    align-items: center;
    padding: 36px;
    border-radius: 28px;
}

.panel-icon {
    margin-bottom: 22px;
    color: #8A6A27;
    border-color: rgba(198, 166, 100, .3);
    background: linear-gradient(180deg, rgba(198, 166, 100, .2), rgba(198, 166, 100, .07));
}

.payment-panel h3 {
    margin: 0 0 12px;
    font-size: 34px;
}

.payment-art {
    padding: 18px;
    border: 1px solid rgba(248, 250, 252, .12);
    border-radius: 24px;
    background: linear-gradient(135deg, #0A0A0B, #1E293B);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.payment-art img {
    border-radius: 16px;
    opacity: .96;
}

.stars {
    color: #B58C3C;
    font-size: 15px;
}

.testimonial-card {
    min-height: 255px;
}

.testimonial-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 760;
}

.testimonial-card img {
    width: 72px;
    margin-top: 18px;
}

.final-cta {
    padding: 62px 0;
    color: #FFFFFF;
    background:
        linear-gradient(110deg, rgba(93, 173, 226, .16), transparent 45%),
        linear-gradient(135deg, #0A0A0B, #111827);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.final-cta .eyebrow {
    color: var(--gold-soft);
}

.site-footer {
    padding: 68px 0 26px;
    color: var(--platinum);
    background: #070708;
    border-top: 1px solid rgba(248, 250, 252, .08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .95fr .82fr;
    gap: 42px;
    align-items: start;
}

.footer-lockup {
    margin-bottom: 20px;
}

.footer-brand p,
.footer-bottom p {
    color: rgba(248, 250, 252, .62);
    line-height: 1.65;
}

.footer-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-metrics span {
    padding: 12px 13px;
    border: 1px solid rgba(248, 250, 252, .1);
    border-radius: 15px;
    background: rgba(248, 250, 252, .045);
    color: rgba(248, 250, 252, .72);
    font-size: 13px;
}

.footer-metrics strong {
    display: block;
    color: var(--gold-soft);
    font-size: 18px;
}

.footer-trust .eyebrow {
    color: var(--gold-soft);
}

.trust-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 14px;
}

.trust-row img {
    height: 46px;
    width: auto;
    max-width: 148px;
    object-fit: contain;
    padding: 7px 10px;
    border-radius: 13px;
    background: rgba(248, 250, 252, .94);
}

.footer-action {
    display: grid;
    justify-items: start;
    gap: 18px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin-top: 6px;
}

.footer-links a {
    color: rgba(248, 250, 252, .7);
    font-weight: 760;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(248, 250, 252, .12);
    border-radius: 999px;
    color: rgba(248, 250, 252, .76);
    background: rgba(248, 250, 252, .055);
    font-size: 12px;
    font-weight: 850;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(248, 250, 252, .08);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.form-hero,
.thank-you {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    color: var(--platinum);
    background:
        linear-gradient(90deg, rgba(248, 250, 252, .045) 1px, transparent 1px),
        linear-gradient(135deg, #0A0A0B, #111827);
    background-size: 88px 88px, auto;
}

.form-hero h1,
.thank-you h1 {
    color: #FFFFFF;
}

.form-hero p,
.thank-you p {
    max-width: 680px;
    color: rgba(248, 250, 252, .68);
    font-size: 18px;
}

.form-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: center;
}

.form-hero-card {
    padding: 24px;
    border: 1px solid rgba(248, 250, 252, .12);
    border-radius: 24px;
    background: rgba(248, 250, 252, .055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}

.form-hero-card span {
    color: rgba(248, 250, 252, .6);
    font-size: 13px;
    font-weight: 760;
}

.form-hero-card strong {
    display: block;
    margin: 6px 0 8px;
    color: #FFFFFF;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.application-wrap {
    padding: 54px 0;
}

.gform,
.admin-card {
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.application-shell {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    overflow: hidden;
}

.application-aside {
    padding: 26px;
    color: var(--platinum);
    background: linear-gradient(180deg, #0A0A0B, #111827);
}

.aside-card,
.aside-note,
.application-aside .steps button {
    border: 1px solid rgba(248, 250, 252, .11);
    background: rgba(248, 250, 252, .055);
}

.aside-card {
    padding: 18px;
    border-radius: 20px;
}

.aside-label {
    display: block;
    margin-bottom: 6px;
    color: rgba(248, 250, 252, .52);
    font-size: 12px;
    font-weight: 760;
    text-transform: uppercase;
}

.aside-card strong {
    display: block;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 880;
}

.progress-track {
    height: 8px;
    margin-top: 16px;
    border-radius: 999px;
    background: rgba(248, 250, 252, .12);
    overflow: hidden;
}

.progress-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--gold-soft));
    transition: width .2s ease;
}

.steps {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.application-aside .steps button {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 12px;
    border-radius: 16px;
    color: rgba(248, 250, 252, .76);
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    font-weight: 760;
}

.application-aside .steps button span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    background: rgba(248, 250, 252, .09);
    color: #FFFFFF;
    font-weight: 850;
}

.application-aside .steps button.active {
    background: #FFFFFF;
    color: var(--midnight);
}

.application-aside .steps button.active span {
    background: var(--midnight);
}

.application-aside .steps button.complete span {
    background: rgba(101, 214, 173, .22);
    color: #BAFFE5;
}

.aside-note {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    margin-top: 18px;
    padding: 15px;
    border-radius: 18px;
}

.aside-note .ui-icon {
    color: var(--gold-soft);
}

.aside-note p {
    margin: 0;
    color: rgba(248, 250, 252, .66);
    font-size: 13px;
    line-height: 1.5;
}

.application-panel {
    padding: 34px;
}

.step-kicker {
    margin: 0 0 7px;
    color: var(--blue-strong);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.form-step h2 {
    margin: 0 0 7px;
    color: var(--midnight);
    font-size: 32px;
    line-height: 1.12;
    font-weight: 880;
}

.step-help {
    margin: 0 0 25px;
    color: var(--text-soft);
    line-height: 1.65;
}

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

.field {
    display: grid;
    gap: 8px;
    color: var(--midnight);
    font-weight: 760;
}

.field.full {
    grid-column: 1 / -1;
}

.field span {
    font-size: 14px;
}

.field b,
.error {
    color: var(--danger);
}

.field input,
.field select,
.field textarea,
.status-form select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(15, 23, 42, .15);
    border-radius: 14px;
    background: #FFFFFF;
    color: var(--midnight);
    padding: 13px 14px;
    outline: 0;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.field textarea {
    min-height: 128px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.status-form select:focus {
    border-color: rgba(93, 173, 226, .75);
    box-shadow: 0 0 0 4px rgba(93, 173, 226, .14);
}

.choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.choice-row label,
.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid rgba(15, 23, 42, .13);
    border-radius: 999px;
    background: #FFFFFF;
    padding: 9px 13px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 760;
}

.choice-row input,
.checkbox input {
    width: auto !important;
    min-height: 0;
    accent-color: var(--blue-strong);
}

.choice-row label:has(input:checked),
.checkbox:has(input:checked) {
    border-color: rgba(93, 173, 226, .42);
    background: rgba(93, 173, 226, .08);
    color: var(--midnight);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

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

.upload-card {
    display: grid;
    gap: 8px;
    padding: 20px;
    border: 1px dashed rgba(15, 23, 42, .2);
    border-radius: 20px;
    background: #FFFFFF;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.upload-card .ui-icon {
    width: 30px;
    height: 30px;
    color: var(--blue-strong);
}

.upload-card span {
    color: var(--midnight);
    font-weight: 850;
}

.upload-card small {
    color: var(--muted);
    font-weight: 700;
}

.submit-notice {
    margin: 22px 0 0;
    color: var(--blue-strong);
    font-weight: 850;
}

.form-actions {
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 32px -34px -34px;
    padding: 18px 34px;
    border-top: 1px solid var(--border);
    background: rgba(248, 250, 252, .92);
    backdrop-filter: blur(14px);
}

.form-actions .ghost {
    color: var(--midnight);
    border-color: rgba(15, 23, 42, .15);
    background: #FFFFFF;
}

.alert {
    margin-bottom: 18px;
    padding: 15px 16px;
    border: 1px solid rgba(198, 166, 100, .45);
    border-radius: 16px;
    background: #FFF8E6;
    color: #694D17;
    font-weight: 760;
}

.alert.success {
    border-color: rgba(101, 214, 173, .5);
    background: #ECFDF5;
    color: #05603A;
}

.thank-you {
    min-height: 58vh;
    display: grid;
    align-items: center;
}

.thank-you .center {
    text-align: center;
}

.thank-you p {
    margin: 18px auto 28px;
}

.admin-auth {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 52px 0;
}

.admin-card {
    width: min(460px, calc(100% - 34px));
    padding: 30px;
}

.admin-card h1,
.admin-page h1 {
    color: var(--midnight);
}

.admin-card .button {
    margin-top: 16px;
    width: 100%;
}

.admin-page {
    min-height: 70vh;
    padding: 54px 0;
}

.admin-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 26px;
}

.admin-head p {
    color: var(--text-soft);
}

.status-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-wrap {
    overflow: auto;
    border-radius: 22px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
}

th,
td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

td a {
    color: var(--blue-strong);
    font-weight: 850;
}

.status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(93, 173, 226, .1);
    color: var(--blue-strong);
    font-size: 13px;
    font-weight: 850;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.detail-item {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 18px;
}

.detail-item strong {
    color: var(--midnight);
}

.detail-item span {
    color: var(--text-soft);
    overflow-wrap: anywhere;
}

.link-button {
    border: 0;
    background: transparent;
    color: var(--blue-strong);
    padding: 0;
    text-align: left;
    cursor: pointer;
    font-weight: 850;
}

.file-list {
    display: grid;
    gap: 10px;
}

.file-list a {
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #FFFFFF;
    color: var(--blue-strong);
    font-weight: 800;
}

nav[role="navigation"],
.pagination {
    margin-top: 18px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

@media (max-width: 1100px) {
    .platform-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .security-grid,
    .payment-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 0;
    }
}

@media (max-width: 980px) {
    .topbar-inner span {
        display: none;
    }

    .menu-toggle {
        display: grid;
        gap: 5px;
        border: 1px solid rgba(248, 250, 252, .12);
        border-radius: 13px;
        background: rgba(248, 250, 252, .06);
        padding: 11px;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 999px;
        background: #FFFFFF;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        border: 1px solid rgba(248, 250, 252, .12);
        border-radius: 22px;
        background: rgba(10, 10, 11, .98);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a,
    .nav-item > a {
        display: block;
        padding: 12px;
    }

    .dropdown,
    .has-menu:hover .dropdown {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        box-shadow: none;
    }

    .has-menu:hover .dropdown {
        display: grid;
    }

    .industry-menu {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 66px 0;
    }

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

    .hero-sub {
        font-size: 19px;
    }

    .split-heading,
    .form-hero-grid,
    .application-shell,
    .metrics-panel {
        grid-template-columns: 1fr;
    }

    .three-grid,
    .platform-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .metrics-panel {
        gap: 1px;
    }

    .support-strip,
    .final-cta-inner,
    .footer-bottom,
    .admin-head {
        display: grid;
        align-items: start;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand-lockup b,
    .brand-lockup em {
        font-size: 14px;
    }

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

    .hero-sub {
        font-size: 17px;
    }

    .hero-actions .button,
    .final-cta .button {
        width: 100%;
    }

    .hero-proof-row,
    .dashboard-metrics,
    .risk-ledger,
    .upload-grid,
    .form-grid,
    .detail-grid,
    .application-aside .steps {
        grid-template-columns: 1fr;
    }

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

    .dashboard-frame,
    .payment-panel,
    .support-strip,
    .application-panel,
    .application-aside {
        padding: 22px;
    }

    .hero-watermark {
        display: none;
    }

    .section {
        padding: 66px 0;
    }

    .section h2,
    .final-cta h2,
    .form-hero h1,
    .thank-you h1,
    .admin-page h1,
    .admin-auth h1 {
        font-size: 32px;
    }

    .payment-panel h3,
    .form-step h2 {
        font-size: 26px;
    }

    .form-actions {
        position: static;
        margin: 28px -22px -22px;
        padding: 16px 22px;
    }

    .form-actions .button {
        flex: 1;
        padding-inline: 14px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
