:root {
    --cream: #F7F3ED;
    --cream-2: #EFE9DF;
    --ink: #1E345D;
    --ink-2: #0D1526;
    --muted: #4A5B7A;
    --soft: #7B8AA3;
    --line: #E3DCCD;
    --coral: #FF716E;
    --blue: #5D95ED;
    --blue-2: #457AE4;
    --mint: #4FF7BC;
    --cyan: #71CFEB;
    --peach: #FFE2CD
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Open Sans, system-ui, -apple-system, sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility
}

h1,
h2,
h3,
h4 {
    font-family: Ubuntu, Open Sans, system-ui, sans-serif;
    font-weight: 500
}

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

button {
    font: inherit;
    cursor: pointer
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 96px 32px
}

.section-inner.narrow {
    max-width: 920px
}

.section-title {
    font-family: Ubuntu, sans-serif;
    font-size: clamp(32px, 4.4vw, 52px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 24px
}

section .eyebrow {
    display: inline-block;
    font-family: DM Mono, monospace;
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--soft)!important;
    margin-bottom: 18px;
    font-weight:400;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ff716eeb;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    color: #fff
}

.logo-text {
    font-family: Ubuntu, sans-serif;
    font-size: 20px;
    color: #ffffffeb;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1
}

.logo-nirmata {
    color: #fff;
    text-decoration: none;
    text-decoration-color: #fff6;
    text-underline-offset: 2px;
    transition: text-decoration-color .15s
}

.logo-nirmata:hover {
    text-decoration: underline;
    text-decoration-color: #ffffff80
}

.nav-links {
    display: flex;
    gap: 28px
}

.nav-links a {
    font-size: 16px;
    color: #ffffffd9;
    font-weight: 500;
    transition: color .15s
}

.nav-links a:hover {
    color: #fff
}

.nav-cta {
    background: #fff;
    color: var(--coral);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    font-family: Ubuntu, sans-serif;
    transition: transform .15s, background .15s, color .15s
}

.nav-cta:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px)
}

.hero {
    position: relative;
    background: var(--coral);
    color: #fff;
    overflow: hidden;
    padding: 64px 32px 120px
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at top, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at top, #000 30%, transparent 75%);
    pointer-events: none
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    background: #ffdcd759;
    top: -340px;
    left: 50%;
    transform: translate(-50%);
    pointer-events: none
}

.hero-glow-2 {
    width: 520px;
    height: 520px;
    background: #ff5b588c;
    top: 80px;
    left: 14%;
    transform: none
}

.hero-inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center
}

.hero-headline {
    font-family: Ubuntu, sans-serif;
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.025em;
    color: #fff;
    margin-bottom: 24px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto
}

.hero .hero-sub {
    font-size: clamp(18px, 1.7vw, 20px);
    color: #ffffffe0;
    max-width: 660px;
    margin: 0 auto 64px;
    line-height: 1.6
}

.dashboard {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 80px #0000008c, 0 4px 16px #00000059
}

.dashboard-img {
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: top left
}

.signup {
    background: var(--cream);
    position: relative;
    padding: 96px 0
}

.signup-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px
}

.signup-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center
}

.signup-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 38px 32px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 28px #1e345d14, 0 2px 8px #1e345d0a
}

.signup-product {
    min-width: 0
}

.signup-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px #0d15262e, 0 4px 14px #0d152614
}

.signup-img {
    display: block;
    width: 100%;
    height: auto
}

.product-mock {
    background: #0a1322;
    border: 1px solid rgba(13, 21, 38, .12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px #0d15262e, 0 4px 14px #0d152614
}

.pm-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 14px;
    background: #ffffff0a;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.pm-body {
    padding: 14px 16px 16px
}

.pm-tabs {
    display: flex;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding-bottom: 12px;
    margin-bottom: 12px
}

.pm-tab {
    font-family: Open Sans, sans-serif;
    font-size: 11px;
    color: #fff6;
    padding: 5px 10px;
    border-radius: 6px
}

.pm-tab-active {
    background: #5d95ed2e;
    color: #fff
}

.pm-rows {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.pm-row {
    display: grid;
    grid-template-columns: 64px 64px 1fr auto;
    gap: 10px;
    align-items: center;
    background: #ffffff08;
    border-radius: 7px;
    padding: 8px 10px;
    font-family: DM Mono, monospace;
    font-size: 11px;
    color: #fff9
}

.pm-row-block {
    background: #ff716e1a
}

.pm-row-warn {
    background: #ffbf001a
}

.pm-time {
    color: #ffffff52
}

.pm-text {
    font-family: Open Sans, sans-serif;
    font-size: 12px;
    color: #ffffffb3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.pm-text strong {
    color: #fff;
    font-weight: 600
}

.pm-cost {
    color: #ffffff80;
    font-size: 11px
}

.pm-badge {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 3px 6px;
    border-radius: 4px;
    text-align: center
}

.pm-badge.ok {
    background: #4ff7bc29;
    color: var(--mint)
}

.pm-badge.no {
    background: #ff716e33;
    color: var(--coral)
}

.pm-badge.warn {
    background: #ffc8642e;
    color: #ffc861
}

.pm-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    font-family: Open Sans, sans-serif;
    font-size: 11px;
    color: #ffffff73
}

.pm-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 8px var(--mint);
    animation: pulse 2.4s ease-in-out infinite
}

@keyframes pulse {

    0%,
    to {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.7)
    }
}

.signup-title {
    font-family: Ubuntu, sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 10px
}

.signup-lede {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.6
}

.btn-primary {
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    transition: background .15s, transform .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center
}

.btn-primary:hover {
    background: #122546;
    transform: translateY(-1px)
}

.form-note {
    font-size: 15px;
    color: var(--soft);
    text-align: center;
    margin-top: 4px
}

.success {
    text-align: center;
    padding: 40px 8px
}

.success-check {
    font-size: 40px;
    color: var(--mint);
    margin-bottom: 8px;
    display: inline-block
}

.success p {
    font-size: 18px;
    color: var(--ink);
    max-width: 400px;
    margin: 0 auto
}

.visibility-bridge {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.vb-questions {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 56px
}

.vb-question {
    font-size: 32px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -.01em;
    padding: 32px 0;
    border-top: 1px solid var(--line)
}

.vb-question:last-child {
    border-bottom: 1px solid var(--line)
}

.vb-close {
    margin-top: 40px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted)
}

.timeline {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 56px;
    position: relative
}

.timeline-grid:before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--line) 0%, var(--blue) 35%, var(--coral) 65%, var(--ink-2) 100%);
    opacity: .4;
    z-index: 0
}

.timeline-col {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.t-label {
    font-family: DM Mono, monospace;
    font-size: 15px;
    color: var(--soft);
    letter-spacing: .08em;
    text-transform: uppercase
}

.t-line {
    height: 24px;
    display: flex;
    align-items: center
}

.t-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--soft)
}

.t-dot-now {
    background: var(--coral);
    border-color: var(--coral);
    box-shadow: 0 0 0 5px #ff716e2e
}

.t-dot-future {
    background: var(--cream);
    border: 2px dashed var(--ink-2)
}

.timeline-col p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65
}

.step-section {
    background: var(--cream)
}

.step-section-alt {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.step-inner {
    max-width: 1180px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center
}

.step-text .section-title {
    margin-bottom: 16px
}

.step-text .how-body {
    margin-bottom: 0
}

.step-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px #0d152624, 0 4px 14px #0d152614;
    height: 380px
}

.step-img {
    display: block;
    width: 122%;
    height: auto;
    margin-left: -18%;
    margin-top: -40px
}

.step-img-wrap-gov {
    background-image: url(https://nirmata.com/aicontrols_nirmata/governance.png);
    background-size: 100%;
    background-position: 0% 0%;
    background-repeat: no-repeat
}

@media(max-width:920px) {
    .step-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

.how {
    background: var(--cream);
    border-top: 1px solid var(--line)
}

.how-body {
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 40px
}

.how-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.pillar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 22px
}

.pillar p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted)
}

.pillar strong {
    color: var(--ink);
    font-weight: 600
}

.how-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 56px
}

.how-stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
    width: 220px
}

.hs-val {
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.015em;
    line-height: 1.1
}

.hs-lbl {
    font-size: 15px;
    color: var(--soft)
}

.diagram {
    display: flex;
    align-items: stretch;
    gap: 14px;
    background: var(--ink-2);
    color: #fff;
    border-radius: 18px;
    padding: 32px 28px
}

.dia-col {
    flex: 1;
    display: flex
}

.dia-box {
    flex: 1;
    background: #ffffff0d;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    text-align: center
}

.dia-box strong {
    font-weight: 600;
    font-size: 14.5px;
    color: #fff
}

.dia-box span {
    font-size: 15px;
    color: #ffffff8c;
    font-family: DM Mono, monospace;
    letter-spacing: .02em
}

.dia-box-active {
    background: linear-gradient(180deg, #5d95ed2e, #5d95ed0f);
    border-color: #5d95ed80;
    box-shadow: 0 0 0 1px #5d95ed40, 0 0 24px #5d95ed2e
}

.dia-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 6px
}

.dia-tags span {
    background: #ffffff14;
    color: #ffffffbf;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 999px;
    font-family: DM Mono, monospace;
    letter-spacing: .04em
}

.dia-arrow {
    align-self: center;
    color: #fff6;
    font-size: 18px
}

.social-proof {
    background: var(--blue);
    position: relative;
    overflow: hidden
}

.social-proof:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    pointer-events: none
}

.social-proof .section-inner {
    position: relative
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.quote-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start
}

.quote-avatar {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 16px
}

.quote-avatar svg {
    width: 100%;
    height: 100%
}

.quote-body {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.quote-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink);
    font-style: italic
}

.quote-cite {
    font-family: DM Mono, monospace;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: .02em;
    font-style: normal
}

.credibility {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center
}

.credibility .section-inner {
    padding: 72px 32px
}

.cred-line {
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 40px
}

.control-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding-top: 8px
}

.pill {
    background: var(--cream);
    color: var(--soft);
    border: 1px solid var(--line);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    font-family: DM Mono, monospace;
    letter-spacing: .02em
}

.pill-active {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
    box-shadow: 0 4px 14px #ff716e40
}

.pill-arrow {
    color: var(--soft);
    font-size: 15px
}

.final-cta {
    background: var(--coral);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden
}

.final-cta:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    pointer-events: none
}

.final-cta .section-inner {
    position: relative;
    padding: 96px 32px 120px
}

.final-cta .section-title {
    color: #fff
}

.final-cta .how-body {
    color: #ffffffe0;
    max-width: 580px;
    margin: 0 auto 32px;
    text-align: center
}

.cta-divider {
    width: 72px;
    height: 3px;
    background: #fff;
    margin: 0 auto 28px;
    border-radius: 2px
}

.cta-btn {
    padding: 15px 30px;
    font-size: 16px;
    background: #fff;
    color: var(--coral);
    font-family: Ubuntu, sans-serif;
    font-weight: 600
}

.cta-btn:hover {
    background: var(--ink);
    color: #fff
}

.footer {
    background: var(--ink-2);
    color: #ffffff8c;
    padding: 36px 0
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px
}

.footer-copy a {
    color: #ffffff8c;
    transition: color .15s
}

.footer-copy a:hover {
    color: #fff
}

.footer-links {
    display: flex;
    gap: 22px
}

.footer-links a {
    color: #ffffff8c;
    transition: color .15s
}

.footer-links a:hover {
    color: #fff
}

@media(max-width:920px) {
    .timeline-grid:before {
        display: none
    }

    .timeline-grid,
    .how-pillars,
    .how-stats,
    .quotes-grid,
    .signup-grid {
        grid-template-columns: 1fr
    }

    .signup-grid,
    .timeline-grid {
        gap: 32px
    }

    .diagram {
        flex-direction: column
    }

    .dia-arrow {
        transform: rotate(90deg)
    }
}

@media(max-width:640px) {
    .nav-inner {
        padding: 0 20px;
        gap: 16px;
        height: 60px
    }

    .nav-links {
        display: none
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 12.5px
    }

    .logo-text {
        font-size: 15px
    }

    .signup-card {
        padding: 28px 22px
    }

    .signup-title {
        font-size: 26px
    }

    .signup-lede {
        font-size: 15.5px
    }

    .section-inner {
        padding: 64px 20px
    }

    .hero {
        padding: 48px 20px 80px
    }

    .hero-sub {
        margin-bottom: 40px
    }

    .dashboard {
        border-radius: 12px
    }

    .control-pills {
        gap: 6px
    }

    .pill {
        padding: 6px 12px;
        font-size: 12px
    }

    .pill-arrow {
        display: none
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 0 20px
    }

    .pm-row {
        grid-template-columns: 56px 56px 1fr auto;
        font-size: 10.5px;
        padding: 7px 9px
    }

    .pm-text {
        font-size: 11.5px
    }

    .diagram {
        padding: 24px 20px
    }

    .credibility .section-inner {
        padding: 56px 20px
    }
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.af-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.af-field {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.af-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .07em;
    text-transform: uppercase
}

.af-input {
    width: 100%;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid var(--line);
    border-radius: 10px;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    -webkit-appearance: none;
    appearance: none
}

.af-input::placeholder {
    color: #1e345d59
}

.af-input:focus {
    border-color: var(--blue-2);
    box-shadow: 0 0 0 3px #457ae41f;
    background: #fff
}

.af-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A5B7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer
}

.af-submit {
    width: 100%;
    margin-top: 6px;
    justify-content: center
}

@media(max-width:420px) {
    .signup-title {
        font-size: 24px
    }

    .section-inner {
        padding: 56px 18px
    }

    .hero {
        padding: 40px 18px 72px
    }

    .hero-sub {
        font-size: 16px;
        margin-bottom: 36px
    }

    .signup-card {
        padding: 24px 18px;
        border-radius: 16px
    }

    .pm-row {
        grid-template-columns: 48px 50px 1fr auto;
        gap: 8px;
        padding: 7px 8px
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 14px
    }
}