:root {
    --nda-text: #0f1932;
    --nda-muted: #60718f;
    --nda-line: rgba(15, 25, 50, .08);
    --nda-primary: #5a67ff;
    --nda-shadow: 0 24px 70px rgba(15, 25, 50, .12);
    --nda-shadow-soft: 0 18px 48px rgba(15, 25, 50, .08);
    --nda-shell: 1200px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--nda-text);
    background: radial-gradient(circle at top right, rgba(110, 233, 184, .14), transparent 26%), linear-gradient(180deg, #f3f5fa 0%, #eef1f6 100%)
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

button {
    font: inherit
}

.nda-shell {
    width: min(calc(100% - 48px), var(--nda-shell));
    margin: 0 auto
}

.nda-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 0;
    background: rgba(243, 245, 250, .82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .45)
}

.nda-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.nda-brand img {
    height: 38px;
    width: auto
}

.nda-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto
}

.nda-nav-links>a,
.nda-nav-dropdown>button {
    border: 0;
    background: none;
    padding: 0;
    color: #273759;
    font-weight: 500;
    cursor: pointer
}

.nda-nav-dropdown>button.is-active {
    color: var(--nda-primary);
    font-weight: 700
}

.nda-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5d6bff 0%, #6f7cf8 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(90, 103, 255, .28)
}

.nda-nav-cta-mobile,
.nda-nav-toggle,
.nda-nav-burger {
    display: none
}

.nda-nav-dropdown{position:relative}

.nda-dropdown-menu{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  min-width:220px;
  padding:12px;
  border-radius:18px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(15,25,50,.08);
  box-shadow:var(--nda-shadow-soft);
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:all .22s ease;
}

.nda-dropdown-menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-8px;
  height:8px;
}

.nda-dropdown-menu a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  color:#273759;
}

.nda-dropdown-menu a:hover{
  background:rgba(90,103,255,.08);
  color:var(--nda-primary);
}

.nda-nav-dropdown:hover .nda-dropdown-menu{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.nda-eyebrow,
.nda-section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(90, 103, 255, .12);
    background: rgba(90, 103, 255, .07);
    color: var(--nda-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em
}

.nda-section-kicker {
    margin-bottom: 16px
}

.nda-section-kicker-light {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .15);
    color: #d9e2ff
}

.nda-legal-hero {
    padding: 54px 0 24px
}

.nda-legal-hero-panel {
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, .58) 100%);
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: var(--nda-shadow);
    padding: 48px
}

.nda-legal-hero-panel h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: .97;
    letter-spacing: -.05em
}

.nda-hero-lead {
    margin: 0 0 22px;
    max-width: 760px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--nda-muted)
}

.nda-legal-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.nda-meta-pill {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(15, 25, 50, .08);
    color: #41516d;
    font-size: .96rem
}

.nda-legal-body {
    padding: 18px 0 38px
}

.nda-legal-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 28px;
    align-items: start
}

.nda-sidebar-card {
    position: sticky;
    top: 110px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: var(--nda-shadow-soft)
}

.nda-legal-toc {
    display: grid;
    gap: 10px
}

.nda-legal-toc a {
    color: #536581;
    font-size: .96rem;
    line-height: 1.45
}

.nda-legal-toc a:hover {
    color: var(--nda-primary)
}

.nda-legal-card {
    border-radius: 30px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: var(--nda-shadow-soft);
    padding: 34px
}

.nda-legal-prose {
    color: #4b5c78
}

.nda-legal-prose h2,
.nda-legal-prose h3 {
    color: var(--nda-text);
    line-height: 1.12;
    scroll-margin-top: 120px
}

.nda-legal-prose h2 {
    font-size: 2rem;
    margin: 0 0 18px
}

.nda-legal-prose h3 {
    font-size: 1.28rem;
    margin: 28px 0 12px
}

.nda-legal-prose p {
    margin: 0 0 18px;
    line-height: 1.8
}

.nda-legal-prose ul {
    padding-left: 22px;
    margin: 12px 0 20px
}

.nda-legal-prose li {
    margin-bottom: 10px;
    line-height: 1.8
}

.nda-legal-cta {
    padding: 0 0 92px
}

.nda-legal-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px;
    border-radius: 34px;
    background: linear-gradient(135deg, #111d49 0%, #243a8e 100%);
    box-shadow: 0 28px 60px rgba(16, 29, 73, .22)
}

.nda-legal-cta-inner h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -.04em
}

.nda-legal-cta-inner p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
    line-height: 1.65
}

.nda-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.nda-primary-btn,
.nda-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700
}

.nda-primary-btn {
    background: #fff;
    color: #122156
}

.nda-secondary-btn {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff
}

.nda-site-footer {
    padding: 0 0 34px
}

.nda-footer-top {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    padding: 34px 0 28px;
    border-top: 1px solid var(--nda-line)
}

.nda-footer-brand img {
    height: 38px;
    margin-bottom: 16px
}

.nda-footer-brand p {
    margin: 0;
    color: var(--nda-muted);
    line-height: 1.75;
    max-width: 640px
}

.nda-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px
}

.nda-footer-links h3 {
    margin: 0 0 14px;
    font-size: 1rem
}

.nda-footer-links a {
    display: block;
    margin-bottom: 10px;
    color: var(--nda-muted)
}

.nda-footer-bottom {
    padding-top: 18px;
    border-top: 1px solid var(--nda-line)
}

.nda-footer-bottom p {
    margin: 0;
    color: var(--nda-muted);
    font-size: .95rem
}

@media (max-width:1080px) {

    .nda-legal-layout,
    .nda-footer-top {
        grid-template-columns: 1fr
    }

    .nda-sidebar-card {
        position: static
    }
}

@media (max-width:900px) {
    .nda-site-header {
        padding: 14px 0
    }

    .nda-nav-burger {
        display: inline-flex;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .74);
        border: 1px solid rgba(15, 25, 50, .08);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        margin-left: auto
    }

    .nda-nav-burger span {
        width: 20px;
        height: 2px;
        background: #1d2a4d;
        border-radius: 999px
    }

    .nda-nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 24px;
        right: 24px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255, 255, 255, .94);
        border: 1px solid rgba(15, 25, 50, .08);
        box-shadow: var(--nda-shadow-soft)
    }

    .nda-nav-links>a,
    .nda-nav-dropdown>button {
        width: 100%;
        padding: 12px 10px
    }

    .nda-nav-cta-desktop {
        display: none
    }

    .nda-nav-cta-mobile {
        display: inline-flex;
        margin-top: 10px
    }

    .nda-nav-toggle:checked~.nda-nav-links {
        display: flex
    }

    .nda-nav-dropdown {
        width: 100%
    }

    .nda-dropdown-menu {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        min-width: 0;
        margin-top: 4px;
        box-shadow: none;
        background: rgba(90, 103, 255, .04);
        display: block
    }

    .nda-legal-cta-inner {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width:640px) {
    .nda-shell {
        width: min(calc(100% - 28px), var(--nda-shell))
    }

    .nda-legal-hero {
        padding: 38px 0 18px
    }

    .nda-legal-hero-panel,
    .nda-legal-card,
    .nda-sidebar-card {
        padding: 24px;
        border-radius: 24px
    }

    .nda-hero-lead,
    .nda-legal-prose p,
    .nda-legal-prose li {
        font-size: 1rem;
        line-height: 1.72
    }

    .nda-legal-prose h2 {
        font-size: 1.55rem
    }

    .nda-legal-prose h3 {
        font-size: 1.15rem
    }

    .nda-legal-cta-inner {
        padding: 26px 22px;
        border-radius: 26px
    }

    .nda-footer-links {
        grid-template-columns: 1fr
    }
}