@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --ink: #07111f;
    --ink-soft: #405066;
    --blue: #1677ff;
    --blue-deep: #0a5fd8;
    --cyan: #36c5f0;
    --mint: #6ee7b7;
    --line: #dce5ef;
    --paper: #ffffff;
    --surface: #f5f8fc;
    --surface-blue: #edf6ff;
    --night: #06101d;
    --night-2: #09192c;
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;
    --shadow: 0 24px 70px rgba(14, 38, 66, .14);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 16px; background: white; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.86);
    border-bottom: 1px solid rgba(220,229,239,.8);
    backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    background: linear-gradient(145deg, #fff, #e8f2ff); border: 1px solid #d4e5f8; box-shadow: 0 8px 20px rgba(15,75,138,.12);
    color: #123d6c; position: relative; overflow: hidden;
}
.brand-mark span { font-family: "Manrope"; font-weight: 800; font-size: 13px; transform: translateY(-5px); }
.brand-mark svg { position: absolute; width: 25px; height: 25px; bottom: 1px; stroke: var(--blue); stroke-width: 1.8; fill: none; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-family: "Manrope"; font-size: 16px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: #718096; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 28px; color: #26384c; font-weight: 600; font-size: 14px; }
.primary-nav > a:not(.button):hover { color: var(--blue); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

.button {
    display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px;
    border-radius: 12px; border: 1px solid transparent; font-weight: 700; transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--blue), #0458c6); color: white; box-shadow: 0 13px 28px rgba(22,119,255,.24); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(22,119,255,.32); }
.button-secondary { background: white; border-color: var(--line); color: var(--ink); }
.button-ghost { border-color: #cbd8e6; background: rgba(255,255,255,.6); }
.button-small { min-height: 42px; padding: 0 17px; }
.button-full { width: 100%; }

.hero {
    position: relative; overflow: hidden;
    padding: 96px 0 78px;
    background:
        linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.95)),
        radial-gradient(circle at 30% 0%, #dcebff, transparent 38%);
}
.hero::before {
    content: ""; position: absolute; inset: 0; opacity: .32; pointer-events: none;
    background-image: linear-gradient(#cbd8e6 1px, transparent 1px), linear-gradient(90deg, #cbd8e6 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero-orb { position: absolute; border-radius: 999px; filter: blur(3px); }
.hero-orb-one { width: 430px; height: 430px; background: rgba(38,150,255,.11); right: -140px; top: 0; }
.hero-orb-two { width: 280px; height: 280px; background: rgba(110,231,183,.12); left: -120px; bottom: -80px; }
.hero-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.eyebrow, .kicker { color: var(--blue-deep); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 800; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; background: #eef6ff; border: 1px solid #d4e7ff; border-radius: 999px; padding: 8px 12px; }
.eyebrow span { width: 8px; height: 8px; border-radius: 99px; background: #26b979; box-shadow: 0 0 0 4px rgba(38,185,121,.13); }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(45px, 5vw, 70px); margin: 22px 0 24px; }
h2 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 20px; }
h3 { font-size: 22px; margin-bottom: 13px; }
.hero-lead { font-size: 19px; color: var(--ink-soft); max-width: 640px; margin: 0; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.hero-proof div { border-left: 2px solid #d8e7f7; padding-left: 14px; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-family: "Manrope"; font-size: 13px; }
.hero-proof span { color: #718096; font-size: 12px; margin-top: 4px; line-height: 1.45; }

.hero-visual { position: relative; padding: 18px 0 26px; }
.dashboard-frame {
    background: #09111e; border: 1px solid #1b2d45; border-radius: 21px; padding: 10px;
    box-shadow: 0 38px 90px rgba(4,21,41,.25); transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}
.frame-toolbar { height: 34px; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; color: #8fa5bf; font-size: 9px; padding: 0 4px 6px; }
.frame-dots { display: flex; gap: 5px; }
.frame-dots i { width: 7px; height: 7px; border-radius: 99px; background: #37526f; }
.frame-url { justify-self: center; background: #101d2d; padding: 3px 16px; border-radius: 99px; }
.frame-status { justify-self: end; display: flex; align-items: center; gap: 5px; }
.frame-status span { width: 5px; height: 5px; border-radius: 99px; background: var(--mint); }
.dashboard-frame img { border-radius: 12px; border: 1px solid #20334b; }
.floating-card {
    position: absolute; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.96);
    border: 1px solid #dce8f4; border-radius: 14px; padding: 12px 15px; box-shadow: 0 18px 45px rgba(15,45,78,.18);
}
.floating-card-one { left: -24px; bottom: 0; }
.floating-card-two { right: -18px; top: -4px; }
.floating-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: #edf6ff; color: var(--blue); font-size: 14px; font-weight: 800; }
.floating-card strong, .floating-card small { display: block; line-height: 1.35; }
.floating-card strong { font-size: 12px; }
.floating-card small { font-size: 10px; color: #718096; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fbfdff; }
.trust-grid { min-height: 78px; display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; text-align: center; gap: 16px; color: #5f7187; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

.section { padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 55px; }
.section-heading h2 { margin: 10px 0 0; }
.section-heading > p { color: var(--ink-soft); font-size: 17px; margin: 0 0 7px; }
.center-heading { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.center-heading h2 { margin-top: 11px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { background: var(--surface); border: 1px solid #e2eaf3; border-radius: var(--radius); padding: 30px; min-height: 260px; transition: .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(22,55,90,.09); border-color: #cfe0f2; }
.feature-card-large { grid-row: span 2; min-height: 538px; background: linear-gradient(145deg, #071526, #10263f); color: white; padding: 38px; }
.feature-card-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr .9fr; gap: 38px; align-items: center; min-height: 260px; background: var(--surface-blue); }
.icon-box { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; margin-bottom: 48px; background: white; border: 1px solid #d9e6f3; color: var(--blue); font-family: "Manrope"; font-weight: 800; font-size: 13px; }
.feature-card-large .icon-box { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #7cc6ff; }
.feature-card p { color: var(--ink-soft); margin: 0; }
.feature-card-large p { color: #b8c8db; font-size: 17px; }
.feature-card ul { list-style: none; padding: 0; margin: 54px 0 0; }
.feature-card li { padding: 15px 0; border-top: 1px solid rgba(255,255,255,.12); color: #dbe7f4; font-size: 14px; }
.mini-metrics { background: white; border: 1px solid #d8e4f1; border-radius: 18px; padding: 22px; box-shadow: 0 18px 45px rgba(28,80,132,.08); }
.mini-metrics div { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-bottom: 18px; }
.mini-metrics div:last-child { margin-bottom: 0; }
.mini-metrics span { font-size: 12px; color: #68798e; }
.mini-metrics strong { font-size: 14px; }
.mini-metrics i { grid-column: 1 / -1; display: block; height: 6px; background: #e8eef5; border-radius: 99px; overflow: hidden; }
.mini-metrics i::after { content: ""; display: block; width: var(--width); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan)); }

.section-dark { color: white; background: radial-gradient(circle at 90% 10%, #123d68 0, transparent 30%), linear-gradient(145deg, #050d17, #091829); }
.heading-light > p { color: #aabbd0; }
.heading-light .kicker { color: #65b9ff; }
.workflow-grid { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; overflow: hidden; }
.workflow-grid article { min-height: 285px; padding: 28px; background: rgba(8,24,41,.95); }
.workflow-grid article > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 99px; background: rgba(53,157,255,.15); color: #6cc0ff; font-weight: 800; margin-bottom: 58px; }
.workflow-grid h3 { font-size: 20px; }
.workflow-grid p { color: #a9b9cc; font-size: 14px; }
.human-control { display: flex; align-items: center; gap: 20px; margin-top: 24px; padding: 24px 28px; border: 1px solid rgba(110,231,183,.26); border-radius: 18px; background: rgba(110,231,183,.07); }
.human-control-icon { flex: 0 0 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(110,231,183,.14); color: var(--mint); font-family: "Manrope"; font-weight: 800; }
.human-control p { margin: 4px 0 0; color: #b9c8d9; font-size: 14px; }

.role-tabs { border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; overflow: hidden; box-shadow: 0 25px 70px rgba(22,52,86,.08); }
.tab-list { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: #f8fbfe; }
.tab-list button { border: 0; border-right: 1px solid var(--line); padding: 20px; background: transparent; font-weight: 700; color: #68798e; }
.tab-list button:last-child { border-right: 0; }
.tab-list button[aria-selected="true"] { background: white; color: var(--blue); box-shadow: inset 0 -3px var(--blue); }
.tab-panels article { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; min-height: 440px; padding: 55px; }
.panel-label { display: inline-block; color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.tab-panels h3 { font-size: 34px; }
.tab-panels p { color: var(--ink-soft); max-width: 610px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; }
.check-list li { position: relative; padding-left: 25px; font-size: 14px; color: #34485f; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #1cb978; font-weight: 900; }
.role-visual { min-height: 300px; border-radius: 24px; padding: 30px; background: linear-gradient(145deg, #0a1728, #123153); display: flex; flex-direction: column; justify-content: center; gap: 16px; position: relative; overflow: hidden; }
.role-visual::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(43,153,255,.15); right: -70px; top: -80px; }
.role-card { position: relative; z-index: 1; padding: 22px; border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.role-card small, .role-card strong, .role-card span { display: block; }
.role-card small { color: #718096; }
.role-card strong { margin: 4px 0 10px; font-family: "Manrope"; }
.role-card span { font-size: 12px; color: #52657b; }
.role-card span i { display: inline-block; width: 7px; height: 7px; background: #22bd7e; border-radius: 99px; margin-right: 6px; }

.security-section { background: #f5f9fd; }
.security-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.security-copy { position: sticky; top: 120px; }
.security-copy h2 { margin-top: 10px; }
.security-copy > p { color: var(--ink-soft); font-size: 17px; }
.notice { margin-top: 32px; padding: 20px; border-left: 3px solid var(--blue); background: white; box-shadow: 0 10px 28px rgba(35,69,105,.07); }
.notice p { margin: 6px 0 0; color: #5d6e83; font-size: 13px; }
.security-list { border-top: 1px solid var(--line); }
.security-list article { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 31px 0; border-bottom: 1px solid var(--line); }
.security-list article > span { color: var(--blue); font-weight: 800; font-size: 12px; }
.security-list h3 { margin-bottom: 8px; }
.security-list p { color: var(--ink-soft); margin: 0; }

.roadmap-section { background: white; }
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.roadmap article { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; min-height: 250px; }
.roadmap article.active { background: #071626; color: white; border-color: #071626; }
.roadmap article > span { display: inline-block; color: var(--blue); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-bottom: 54px; }
.roadmap article.active > span { color: #65b9ff; }
.roadmap p { color: var(--ink-soft); font-size: 14px; }
.roadmap article.active p { color: #adbed0; }

.cta-section { padding: 100px 0; background: radial-gradient(circle at 10% 20%, #164b7f 0, transparent 32%), #071524; color: white; }
.cta-grid { display: grid; grid-template-columns: 1fr 480px; gap: 90px; align-items: center; }
.kicker-light { color: #63b8ff; }
.cta-grid h2 { margin-top: 11px; }
.cta-grid > div > p { color: #adc0d5; font-size: 17px; max-width: 600px; }
.contact-lines { display: flex; gap: 25px; margin-top: 34px; color: #c9d8e7; font-size: 14px; }
.contact-lines a { color: #7fc7ff; }
.signup-card { background: white; color: var(--ink); border-radius: 24px; padding: 30px; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.signup-card label { display: block; margin: 15px 0 6px; font-size: 12px; font-weight: 800; }
.signup-card label:first-of-type { margin-top: 0; }
.signup-card input, .signup-card select { width: 100%; height: 49px; border: 1px solid #cfdae7; border-radius: 10px; background: #fbfdff; padding: 0 13px; color: var(--ink); outline: none; }
.signup-card input:focus, .signup-card select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,119,255,.12); }
.signup-card button { margin-top: 22px; }
.signup-card small { display: block; margin-top: 13px; color: #718096; line-height: 1.5; }

.site-footer { background: #040b13; color: #aebed0; padding: 55px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 260px 1fr auto; gap: 50px; align-items: center; }
.footer-brand { color: white; }
.footer-grid > p { font-size: 13px; max-width: 430px; }
.footer-links { display: flex; gap: 18px; font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 42px; padding-top: 18px; border-top: 1px solid #172536; display: flex; justify-content: space-between; font-size: 11px; color: #718096; }

@media (max-width: 1050px) {
    .hero-grid { grid-template-columns: 1fr; gap: 55px; }
    .hero-copy { max-width: 790px; }
    .hero-proof { max-width: 720px; }
    .hero-visual { max-width: 900px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .feature-card-large { grid-row: span 2; }
    .feature-card-wide { grid-column: 1 / -1; }
    .workflow-grid { grid-template-columns: repeat(3, 1fr); }
    .security-grid { grid-template-columns: 1fr; gap: 45px; }
    .security-copy { position: static; }
    .cta-grid { grid-template-columns: 1fr 420px; gap: 50px; }
}
@media (max-width: 820px) {
    .primary-nav {
        display: none; position: absolute; left: 20px; right: 20px; top: 70px; padding: 22px;
        flex-direction: column; align-items: stretch; gap: 18px; background: white; border: 1px solid var(--line);
        border-radius: 16px; box-shadow: var(--shadow);
    }
    .primary-nav.open { display: flex; }
    .nav-toggle { display: block; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); padding: 22px 0; }
    .section-heading { grid-template-columns: 1fr; gap: 20px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card-large { min-height: auto; grid-row: auto; }
    .feature-card-wide { grid-column: auto; grid-template-columns: 1fr; }
    .workflow-grid { grid-template-columns: 1fr 1fr; }
    .tab-panels article { grid-template-columns: 1fr; padding: 38px; gap: 35px; }
    .roadmap { grid-template-columns: 1fr; }
    .roadmap article { min-height: 210px; }
    .roadmap article > span { margin-bottom: 30px; }
    .cta-grid { grid-template-columns: 1fr; }
    .signup-card { max-width: 560px; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
}
@media (max-width: 580px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .hero { padding-top: 65px; }
    h1 { font-size: 42px; }
    .hero-proof { grid-template-columns: 1fr; }
    .dashboard-frame { transform: none; }
    .floating-card { display: none; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 78px 0; }
    .workflow-grid { grid-template-columns: 1fr; }
    .workflow-grid article { min-height: auto; }
    .workflow-grid article > span { margin-bottom: 32px; }
    .tab-list { grid-template-columns: 1fr 1fr; }
    .tab-list button { border-bottom: 1px solid var(--line); }
    .tab-panels article { padding: 28px 22px; }
    .check-list { grid-template-columns: 1fr; }
    .role-visual { min-height: 250px; padding: 18px; }
    .security-list article { grid-template-columns: 38px 1fr; }
    .contact-lines { flex-direction: column; gap: 8px; }
    .footer-links { flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; gap: 6px; }
}
