/* STREAMING_CHUNK:Defining CSS custom design tokens... */
:root {
    --ink: #07111f;
    --muted: #607086;
    --line: #dfe7ef;
    --bg: #f7f9fc;
    --blue: #1769ff;
    --cyan: #16c6d8;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;
}

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

.wrap {
    max-width: 1180px;
    margin: auto;
    padding: 0 28px;
}

/* STREAMING_CHUNK:Styling sticky navigation bar and submenus... */
#nav-container {
    position: sticky;
    z-index: 50;
    top: 0;
}
nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(7, 17, 31, .08);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand {
    height: 42px;
    width: 168px;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

.brand svg {
    width: 100%;
    height: auto;
    display: block;
}

.links {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 14px;
    font-weight: 650;
    color: #43536a;
}

.links a:hover, .dropdown-trigger:hover {
    color: var(--blue);
}

.navcta {
    padding: 10px 17px;
    border-radius: 9px;
    background: var(--ink);
    color: white !important;
    transition: background 0.2s, transform 0.2s;
}

.navcta:hover {
    background: var(--blue);
    transform: translateY(-1px);
}

/* Dropdown Submenu Component Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(7, 17, 31, 0.12);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 0;
    z-index: 60;
    animation: fadeIn 0.2s ease-out forwards;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--ink);
    font-weight: 500;
    font-size: 13px;
    transition: background 0.15s, color 0.15s;
}

.dropdown-content a:hover {
    background: var(--bg);
    color: var(--blue);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* STREAMING_CHUNK:Styling hero and grid layouts... */
.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 105px;
    background: radial-gradient(circle at 78% 20%, rgba(23, 105, 255, .12), transparent 30%), linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(23, 105, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 105, 255, .045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 18px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 5px rgba(22, 198, 216, .12);
}

.hero-grid h1 {
    font-size: clamp(48px, 6.2vw, 78px);
    line-height: .98;
    letter-spacing: -.055em;
    margin: 0 0 25px;
    max-width: 760px;
}

.gradient {
    background: linear-gradient(100deg, var(--ink), #286dff 65%, #13bfcf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lede {
    font-size: 19px;
    line-height: 1.65;
    color: #596a80;
    max-width: 650px;
    margin: 0 0 34px;
}

.actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 750;
    font-size: 14px;
    transition: .2s transform, .2s box-shadow;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 12px 25px rgba(23, 105, 255, .2);
}

.secondary {
    background: white;
    border: 1px solid var(--line);
}

/* STREAMING_CHUNK:Styling visual orbs and cards... */
.visual {
    min-height: 400px;
    position: relative;
}

.orb {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    right: 12%;
    top: 18px;
    background: radial-gradient(circle at 34% 28%, #fff 0 4%, rgba(255, 255, 255, .55) 5%, transparent 24%), linear-gradient(145deg, #dfeaff, #f8fcff);
    box-shadow: inset -30px -35px 80px rgba(23, 105, 255, .11), 0 35px 100px rgba(23, 105, 255, .12);
    border: 1px solid rgba(23, 105, 255, .1);
}

.orb:before,
.orb:after {
    content: "";
    position: absolute;
    inset: -25px;
    border: 1px solid rgba(23, 105, 255, .14);
    border-radius: 50%;
    transform: rotate(28deg);
}

.orb:after {
    inset: 30px;
    border-color: rgba(22, 198, 216, .16);
    transform: rotate(-40deg);
}

.chip {
    position: absolute;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 45px rgba(23, 45, 78, .11);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.chip small {
    display: block;
    color: #8090a3;
    font-weight: 600;
    margin-top: 3px;
}

.c1 { top: 52px; left: 6%; }
.c2 { right: 0; top: 130px; }
.c3 { bottom: 42px; left: 18%; }

.section {
    padding: 100px 0;
}

.section.alt {
    background: var(--bg);
}

.kicker {
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 11px;
}

.wrap h2 {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -.035em;
    margin: 0 0 16px;
}

.intro {
    color: var(--muted);
    max-width: 650px;
    font-size: 17px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 45px;
}

.card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    min-height: 220px;
    box-shadow: 0 8px 30px rgba(18, 38, 63, .035);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(18, 38, 63, .07);
}

.card h3 {
    margin: 0 0 9px;
    font-size: 19px;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.band {
    padding: 72px 0;
    background: #07111f;
    color: white;
    position: relative;
    overflow: hidden;
}

.band:after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    right: -160px;
    top: -250px;
    background: radial-gradient(circle, rgba(23, 105, 255, .45), transparent 65%);
}

.band-grid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.band h2 {
    max-width: 680px;
    margin: 0;
    font-size: 38px;
}

.band p {
    color: #aebcd0;
    margin: 10px 0 0;
    max-width: 650px;
}

.band .btn {
    background: white;
    color: var(--ink);
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-box {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(145deg, #fff, #f6f9fd);
}

.contact-row {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
    border-bottom: 0;
}

.label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #8492a4;
    font-weight: 800;
}

footer {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    color: #8090a3;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.inscriptor-card {
    position: relative;
}

.inscriptor-logo {
    height: 72px;
    display: flex;
    align-items: center;
    margin: -4px 0 12px;
    overflow: hidden;
}

.inscriptor-logo svg {
    width: 100%;
    max-width: 360px;
    height: auto;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    padding: 10px 17px;
    border-radius: 10px;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    transition: transform .2s, background .2s;
    cursor: pointer;
}

.demo-btn:hover {
    transform: translateY(-2px);
    background: var(--blue);
}

@media(max-width:820px) {
    .links a:not(.navcta):not(.dropdown-trigger) {
        display: none;
    }
    .hero { padding: 75px 0; }
    .hero-grid, .contact { grid-template-columns: 1fr; }
    .visual { min-height: 320px; }
    .orb { width: 280px; height: 280px; right: 15%; top: 25px; }
    .cards { grid-template-columns: 1fr; }
    .band-grid { align-items: flex-start; flex-direction: column; }
    h2 { font-size: 34px; }
}

/* --- Navigation Dropdown & Flex Utilities --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 12px 30px rgba(18, 38, 63, 0.12);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 18px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-content a:hover {
    background: #f7f9fc;
    color: var(--blue);
}

.flex-inline-center {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* --- Learn More View Page Styling --- */
.learn-more-wrapper {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    min-height: 80vh;
}

.learn-more-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.learn-more-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(18, 38, 63, 0.06);
    padding: 48px;
    margin-bottom: 30px;
}

.learn-more-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 35px 0;
}

.feature-box {
    padding: 24px;
    border-radius: 14px;
    background: #f7f9fc;
    border: 1px solid var(--line);
}

.feature-box h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--ink);
    font-weight: 750;
}

.feature-box p {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
}

@media(max-width: 768px) {
    .learn-more-grid {
        grid-template-columns: 1fr;
    }
    .learn-more-card {
        padding: 24px;
    }
}