* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-blue: #0B55D9;
    --primary-deep: #07142f;
    --ink: #081225;
    --muted: #5d6b82;
    --soft: #f5f8fc;
    --panel: #ffffff;
    --line: #dce5f2;
    --success: #16a36a;
    --brand-violet: #4f46e5;
    --shadow: 0 24px 70px rgba(8, 18, 37, 0.12);
    --radius: 18px;
}
html { scroll-behavior: smooth; }
body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background: #ffffff;
}
a { color: inherit; }
.marketing-nav,
body > nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.8rem clamp(1rem, 3vw, 2.5rem);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(220, 229, 242, 0.9);
    box-shadow: 0 10px 35px rgba(8, 18, 37, 0.06);
    backdrop-filter: blur(18px);
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img {
    display: block;
    width: 164px;
    max-height: 72px;
    object-fit: contain;
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.9rem, 2vw, 1.8rem);
    list-style: none;
}
.nav-links a {
    color: #1c2940;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 650;
}
.nav-links a:hover { color: var(--primary-blue); }
.nav-buttons,
.hero-actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1.25rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 760;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(8, 18, 37, 0.14); }
.btn-primary { background: linear-gradient(135deg, var(--primary-blue), var(--brand-violet)); color: #ffffff; }
.btn-login,
.btn-secondary { background: #ffffff; color: var(--primary-blue); border-color: #b9ccf8; }
.btn-login:hover,
.btn-secondary:hover { background: #eef4ff; border-color: var(--primary-blue); }
.btn-large { min-height: 52px; padding: 0.92rem 1.45rem; font-size: 1rem; }
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(11, 85, 217, 0.18), transparent 32%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 42%, #eef4ff 100%);
}
.hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: center;
    min-height: calc(100vh - 86px);
    padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}
.hero-copy { max-width: 760px; }
.eyebrow {
    margin-bottom: 0.85rem;
    color: var(--primary-blue);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.hero h1 {
    max-width: 780px;
    font-size: clamp(3.3rem, 9vw, 7.7rem);
    line-height: 0.92;
    letter-spacing: 0;
    color: var(--primary-deep);
}
.hero-lede {
    max-width: 640px;
    margin: 1.35rem 0 1.8rem;
    color: #34425a;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.trust-strip { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 1.5rem; }
.trust-strip span {
    padding: 0.48rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 650;
}
.product-panel {
    position: relative;
    padding: 1rem;
    border: 1px solid rgba(185, 204, 248, 0.72);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}
.panel-top { display: flex; align-items: center; gap: 0.45rem; padding: 0.65rem 0.75rem 1rem; color: #26354f; }
.panel-dot { width: 9px; height: 9px; border-radius: 999px; background: #c8d6ea; }
.panel-top strong { margin-left: 0.45rem; font-size: 0.92rem; }
.document-preview {
    padding: 1.4rem;
    min-height: 360px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e5edf8;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}
.document-line { height: 10px; margin-bottom: 0.75rem; border-radius: 999px; background: #dbe6f5; }
.document-line.strong { width: 58%; background: #9fb8df; }
.document-line.short { width: 38%; }
.signature-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 4.5rem 0 1rem;
    padding: 1rem;
    border: 1.5px solid #9db9fa;
    border-radius: 14px;
    background: #f8fbff;
    color: var(--primary-blue);
    font-weight: 800;
}
.signature-field img { width: 54px; height: 54px; object-fit: contain; }
.initials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.initials-grid span { padding: 0.85rem; border: 1px solid #e0e9f8; border-radius: 12px; color: #53647c; font-weight: 720; }
.status-card,
.audit-card { display: flex; align-items: center; gap: 0.9rem; margin-top: 1rem; padding: 1rem; border-radius: 18px; background: #ffffff; border: 1px solid #e5edf8; }
.status-card { display: block; }
.status-card strong,
.audit-card strong { display: block; color: #17233a; }
.status-card small,
.audit-card small { color: var(--muted); }
.progress { height: 8px; overflow: hidden; margin-top: 0.75rem; border-radius: 999px; background: #e8eef8; }
.progress span { display: block; width: 68%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary-blue), var(--success)); }
.line-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border: 1px solid #c8d8fb;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f3f7ff);
    color: var(--primary-blue);
}
.line-icon svg { width: 25px; height: 25px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.proof-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 1180px;
    margin: -2.4rem auto 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--line);
    box-shadow: 0 18px 48px rgba(8, 18, 37, 0.11);
}
.proof-band div { padding: 1.15rem; background: #ffffff; }
.proof-band strong { display: block; color: var(--primary-deep); font-size: 1rem; }
.proof-band span { display: block; margin-top: 0.2rem; color: var(--muted); font-size: 0.9rem; }
.section { max-width: 1180px; margin: 0 auto; padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 3vw, 2rem); }
.section-tinted { max-width: none; background: var(--soft); }
.section-tinted > .section-heading,
.section-tinted > .feature-grid,
.section-tinted > .industry-grid { max-width: 1180px; margin-left: auto; margin-right: auto; }
.section-heading { max-width: 720px; margin-bottom: 2rem; }
.section-heading h2,
.benefit-copy h2,
.cta-section h2,
.page-hero h1 { color: var(--primary-deep); font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05; }
.section-heading p:not(.eyebrow),
.benefit-copy p,
.page-hero p { margin-top: 0.8rem; color: var(--muted); font-size: 1.05rem; }
.steps-grid,
.feature-grid,
.industry-grid,
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step-card,
.feature-card,
.industry-grid article,
.card { padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: 0 10px 34px rgba(8, 18, 37, 0.06); }
.step-number { display: inline-block; margin-bottom: 2rem; color: var(--primary-blue); font-weight: 850; letter-spacing: 0.08em; }
.step-card h3,
.feature-card h3,
.industry-grid h3,
.card h3 { margin-bottom: 0.45rem; color: var(--primary-deep); font-size: 1.05rem; }
.step-card p,
.feature-card p,
.industry-grid p,
.card p { color: var(--muted); font-size: 0.95rem; }
.feature-card .line-icon { margin-bottom: 1rem; }
.benefit-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.sleek-list,
.checklist { list-style: none; margin: 1.5rem 0 0; }
.sleek-list li,
.checklist li { position: relative; padding: 0.62rem 0 0.62rem 1.8rem; color: #2d3a50; }
.sleek-list li::before,
.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.02rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-blue), var(--success));
    box-shadow: 0 0 0 4px rgba(11, 85, 217, 0.11);
}
.record-panel { padding: 1.5rem; border-radius: 24px; background: var(--primary-deep); color: #ffffff; box-shadow: var(--shadow); }
.record-panel h3 { margin-bottom: 1rem; font-size: 1.25rem; }
.record-panel dl { display: grid; gap: 0.75rem; }
.record-panel div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; background: rgba(255,255,255,0.06); }
.record-panel dt { color: #aebfe0; }
.record-panel dd { margin: 0; font-weight: 760; text-align: right; }
.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1180px;
    margin: 0 auto 5rem;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 28px;
    background: radial-gradient(circle at 85% 10%, rgba(255,255,255,0.18), transparent 30%), linear-gradient(135deg, var(--primary-blue), var(--brand-violet));
    color: #ffffff;
    box-shadow: var(--shadow);
}
.cta-section .eyebrow,
.cta-section h2 { color: #ffffff; }
.cta-section .btn-primary { background: #ffffff; color: var(--primary-blue); }
.page-hero { padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem; text-align: center; background: linear-gradient(135deg, #f7fbff, #eef4ff); border-bottom: 1px solid var(--line); }
.page-content { max-width: 920px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.page-content h2 { margin: 2.5rem 0 0.8rem; color: var(--primary-deep); font-size: 1.55rem; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { margin: 1.6rem 0 0.45rem; color: var(--primary-deep); }
.page-content p,
.page-content li { color: #2d3a50; }
.page-content p { margin-bottom: 1rem; }
.page-content ul,
.page-content ol { margin: 0 0 1.25rem 1.5rem; }
.page-content a { color: var(--primary-blue); font-weight: 650; }
.lede { color: var(--muted) !important; font-size: 1.08rem; }
.meta { color: var(--muted); font-size: 0.9rem; }
.tinted { background: var(--soft); }
footer { padding: 3.5rem 1.5rem 2rem; background: #07142f; color: #ffffff; }
.footer-content { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; max-width: 1180px; margin: 0 auto; }
.footer-section h4 { margin-bottom: 0.85rem; color: #ffffff; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.42rem; }
.footer-section a { color: #b9c8e6; text-decoration: none; font-size: 0.94rem; }
.footer-section a:hover { color: #ffffff; text-decoration: underline; }
.footer-bottom { max-width: 1180px; margin: 2.5rem auto 0; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.12); color: #b9c8e6; text-align: center; font-size: 0.9rem; }
.footer-bottom a { color: #b9c8e6; text-decoration: none; }
.footer-bottom a:hover { color: #ffffff; text-decoration: underline; }
@media (max-width: 980px) {
    .marketing-nav,
    body > nav { align-items: stretch; flex-direction: column; }
    .logo { justify-content: center; }
    .nav-links { flex-wrap: wrap; }
    .nav-buttons { justify-content: center; }
    .hero-split,
    .benefit-section { grid-template-columns: 1fr; }
    .product-panel { max-width: 520px; margin: 0 auto; }
    .proof-band,
    .steps-grid,
    .feature-grid,
    .industry-grid,
    .card-grid,
    .footer-content { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .logo img { width: 136px; }
    .nav-links { display: none; }
    .nav-links a { font-size: 0.88rem; }
    .nav-buttons { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
    .nav-buttons .btn { min-height: 42px; padding: 0.6rem 0.8rem; }
    .hero-split { padding-top: 2rem; padding-bottom: 2rem; min-height: auto; }
    .product-panel { display: none; }
    .hero h1 { font-size: clamp(2.8rem, 15vw, 4.1rem); }
    .proof-band,
    .steps-grid,
    .feature-grid,
    .industry-grid,
    .card-grid,
    .footer-content { grid-template-columns: 1fr; }
    .cta-section { flex-direction: column; align-items: flex-start; margin-left: 1rem; margin-right: 1rem; }
    .record-panel div { flex-direction: column; }
    .record-panel dd { text-align: left; }
}
