:root {
    --navy-950: #050b14;
    --navy-900: #07111f;
    --navy-800: #0b1726;
    --blue-700: #0e91b8;
    --blue-600: #4986ff;
    --blue-500: #6ba3ff;
    --cyan-500: #29d9ff;
    --cyan-100: rgba(41, 217, 255, .14);
    --mint-100: rgba(71, 224, 161, .14);
    --green-600: #47e0a1;
    --gold-500: #ffcd70;
    --gold-100: rgba(255, 205, 112, .10);
    --red-500: #ff6b7f;
    --soft: #07111f;
    --pa-text: #f7fbff;
    --pa-muted: #9fb0c5;
    --pa-line: rgba(255, 255, 255, .10);
    --white: #fff;
    --container: 1240px;
    --shadow-sm: 0 14px 38px rgba(0, 0, 0, .28);
    --shadow-md: 0 28px 70px rgba(0, 0, 0, .36)
}

body {
    color: var(--pa-text);
    background: var(--navy-950);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased
}

.container {
    width: min(calc(100% - 36px), var(--container));
    margin-inline: auto
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    line-height: 1.16;
    letter-spacing: -.025em
}

h1 {
    font-size: clamp(2.55rem, 5.4vw, 5.05rem)
}

h2 {
    font-size: clamp(2rem, 3.7vw, 3.35rem)
}

h3 {
    font-size: 1.18rem
}

.section {
    padding: 108px 0
}

.section-soft {
    background: linear-gradient(180deg, var(--navy-900), var(--soft))
}

.section-copy {
    max-width: 720px;
    color: var(--pa-muted);
    font-size: 1.02rem
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 54px
}

.section-heading.center {
    text-align: center
}

.section-heading.center .section-copy {
    margin-inline: auto
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: var(--blue-700);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase
}

.eyebrow:before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue-600), var(--cyan-500))
}

.eyebrow-light {
    color: #78dce4
}

.eyebrow-light:before {
    background: #78dce4
}

.light {
    color: #bfd0df
}

.btn {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 700;
    transition: .25s
}

.btn svg {
    width: 18px
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
    box-shadow: 0 14px 32px rgba(73, 134, 255, .28)
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
    border-color: transparent;
    box-shadow: 0 18px 38px rgba(73, 134, 255, .34)
}

.btn-secondary {
    color: #d7e7f3;
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px)
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .13)
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 800px;
    padding: 156px 0 105px;
    color: #fff;
    background: radial-gradient(circle at 12% 18%, rgba(73, 134, 255, .25), transparent 30%), radial-gradient(circle at 88% 18%, rgba(41, 217, 255, .17), transparent 28%), linear-gradient(140deg, #041225, #082b4a 58%, #0a3e58)
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(to top, rgba(255, 255, 255, .04), transparent);
    clip-path: polygon(0 48%, 100% 0, 100% 100%, 0 100%)
}

.hero-glow {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%
}

.glow-one {
    width: 520px;
    height: 520px;
    right: -160px;
    top: 105px
}

.glow-two {
    width: 310px;
    height: 310px;
    right: -55px;
    top: 210px
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 58px;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #bdeef1;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4be1c4;
    box-shadow: 0 0 0 0 rgba(75, 225, 196, .55);
    animation: pulse 2s infinite
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 10px rgba(75, 225, 196, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(75, 225, 196, 0)
    }
}

.hero h1 {
    max-width: 730px
}

.hero h1 span {
    background: linear-gradient(90deg, #55d8e2, #8ee0b9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.lead {
    max-width: 700px;
    color: #c3d5e5;
    font-size: 1.12rem
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px
}

.hero-note {
    display: flex;
    gap: 10px;
    max-width: 650px;
    margin-top: 24px;
    color: #9fb7cb;
    font-size: .82rem
}

.hero-note svg {
    width: 19px;
    flex: none;
    margin-top: 2px
}

.bridge-visual {
    position: relative
}

.bridge-panel {
    position: relative;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
    box-shadow: 0 30px 75px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px)
}

.bridge-panel:before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 23px;
    pointer-events: none
}

.panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px
}

.panel-head span {
    color: #76d9e2;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .13em
}

.panel-head h3 {
    margin: 7px 0 0;
    color: #fff;
    font-size: 1.35rem
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(104, 239, 198, .18);
    border-radius: 999px;
    background: rgba(56, 196, 151, .1);
    color: #99f0d3;
    font-size: .67rem;
    font-weight: 700
}

.status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #56deb2
}

.flow-line {
    display: grid;
    grid-template-columns: 1fr 54px 1fr 54px 1fr;
    gap: 8px;
    align-items: center;
    margin-top: 29px
}

.flow-card {
    min-height: 177px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(3, 18, 35, .42)
}

.flow-card.active {
    border-color: rgba(73, 202, 217, .38);
    background: linear-gradient(145deg, rgba(25, 124, 166, .35), rgba(4, 32, 54, .56))
}

.flow-card.success {
    border-color: rgba(89, 213, 165, .3)
}

.flow-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .09);
    color: #9adce4
}

.danger .flow-icon {
    color: #f4a39e
}

.success .flow-icon {
    color: #6fe0b5
}

.flow-icon svg {
    width: 22px
}

.flow-card b {
    display: block;
    color: #fff;
    font-size: .84rem
}

.flow-card span {
    display: block;
    margin-top: 7px;
    color: #9fb4c7;
    font-size: .68rem;
    line-height: 1.5
}

.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #5cbeca
}

.flow-arrow span {
    font-size: .62rem;
    font-weight: 700
}

.flow-arrow svg {
    width: 46px;
    margin-top: 6px
}

.return-track {
    margin-top: 19px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: rgba(4, 18, 35, .34)
}

.return-title {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #a8bfd1;
    font-size: .68rem
}

.return-title strong {
    color: #fff
}

.progress {
    height: 7px;
    margin: 13px 0 9px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .09);
    overflow: hidden
}

.progress i {
    display: block;
    width: 78%;
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--cyan-500), #65d7ab);
    box-shadow: 0 0 18px rgba(41, 217, 255, .45)
}

.return-meta {
    display: flex;
    justify-content: space-between;
    color: #7895aa;
    font-size: .58rem
}

.panel-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 16px
}

.panel-metrics div {
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035)
}

.panel-metrics strong {
    display: block;
    color: #fff;
    font-size: .8rem
}

.panel-metrics span {
    display: block;
    margin-top: 2px;
    color: #819bae;
    font-size: .58rem
}

.hero-shell {
    position: relative
}

.trust-strip {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(50%)
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--navy-800);
    border: 1px solid var(--pa-line);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 22px;
    border-right: 1px solid var(--pa-line)
}

.trust-item:last-child {
    border-right: 0
}

.trust-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: none;
    border-radius: 13px;
    background: var(--cyan-100);
    color: var(--blue-700)
}

.trust-icon svg {
    width: 21px;
    height: 21px
}

.trust-item strong {
    display: block;
    font-size: .91rem;
    color: var(--pa-text)
}

.trust-item span {
    display: block;
    margin-top: 2px;
    color: var(--pa-muted);
    font-size: .76rem
}

.overview-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 64px;
    align-items: center
}

.overview-visual {
    position: relative;
    overflow: hidden;
    padding: 35px;
    border: 1px solid var(--pa-line);
    border-radius: 30px;
    background: radial-gradient(circle at 90% 0, rgba(41, 217, 255, .15), transparent 30%), linear-gradient(145deg, var(--navy-900), var(--navy-800));
    box-shadow: var(--shadow-sm)
}

.overview-visual:before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(73, 134, 255, .14);
    border-radius: 50%
}

.overview-label {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--navy-800);
    color: var(--blue-700);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 7px 20px rgba(0, 0, 0, .24)
}

.overview-visual h3 {
    font-size: 1.7rem
}

.overview-visual>p {
    color: var(--pa-muted)
}

.bridge-steps-mini {
    position: relative;
    display: grid;
    gap: 12px;
    margin-top: 26px
}

.mini-step {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06)
}

.mini-step>span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
    font-weight: 700
}

.mini-step b {
    display: block;
    font-size: .88rem
}

.mini-step small {
    display: block;
    margin-top: 2px;
    color: var(--pa-muted)
}

.mini-connector {
    width: 2px;
    height: 16px;
    margin: -10px 0 -10px 36px;
    background: linear-gradient(var(--cyan-500), var(--blue-600))
}

.overview-warning {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    margin-top: 22px;
    padding: 14px;
    border: 1px solid rgba(255, 205, 112, .35);
    border-radius: 15px;
    background: var(--gold-100);
    color: #ffe1a8;
    font-size: .79rem
}

.overview-warning svg {
    width: 20px;
    flex: none
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px
}

.feature-card {
    padding: 21px;
    border: 1px solid var(--pa-line);
    border-radius: 19px;
    background: var(--navy-800);
    box-shadow: 0 7px 24px rgba(0, 0, 0, .20);
    transition: .25s
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm)
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(41, 217, 255, .14), rgba(73, 134, 255, .12));
    color: var(--blue-700)
}

.feature-icon svg {
    width: 22px
}

.feature-card h3 {
    font-size: 1rem
}

.feature-card p {
    margin: 0;
    color: var(--pa-muted);
    font-size: .82rem
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.model-card {
    position: relative;
    overflow: hidden;
    padding: 25px;
    border: 1px solid var(--pa-line);
    border-radius: 22px;
    background: var(--navy-800);
    box-shadow: 0 9px 28px rgba(0, 0, 0, .22);
    transition: .25s
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm)
}

.model-card:before {
    content: "";
    position: absolute;
    right: -40px;
    top: -50px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(73, 134, 255, .08), rgba(41, 217, 255, .12))
}

.model-no {
    position: absolute;
    right: 17px;
    top: 15px;
    color: rgba(255, 255, 255, .12);
    font-size: 2.1rem;
    font-weight: 700
}

.model-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 32px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
    box-shadow: 0 10px 24px rgba(14, 145, 184, .2)
}

.model-icon svg {
    width: 23px
}

.model-card h3 {
    font-size: 1rem
}

.model-card p {
    min-height: 91px;
    color: var(--pa-muted);
    font-size: .82rem
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.tags span {
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #9fb0c5;
    font-size: .65rem;
    font-weight: 700
}

.use-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 62px;
    align-items: start
}

.use-list {
    display: grid;
    gap: 13px
}

.use-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 17px;
    padding: 21px;
    border: 1px solid var(--pa-line);
    border-radius: 20px;
    background: var(--navy-800);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .20)
}

.use-item>span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--cyan-100);
    color: var(--blue-700);
    font-weight: 700
}

.use-item h3 {
    margin-bottom: 6px;
    font-size: 1rem
}

.use-item p {
    margin: 0;
    color: var(--pa-muted);
    font-size: .83rem
}

.section-dark {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 10% 10%, rgba(73, 134, 255, .22), transparent 28%), linear-gradient(145deg, #050b14, #0b2f4c)
}

.section-dark:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, #000, transparent)
}

.section-dark .container {
    position: relative;
    z-index: 2
}

.section-dark h2 {
    color: #fff
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px
}

.process-card {
    position: relative;
    min-height: 225px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 21px;
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(10px);
    transition: .25s
}

.process-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .085)
}

.process-card.featured {
    border-color: rgba(83, 218, 196, .34);
    background: linear-gradient(145deg, rgba(41, 217, 255, .18), rgba(255, 255, 255, .055))
}

.process-card .step {
    position: absolute;
    right: 17px;
    top: 13px;
    color: rgba(255, 255, 255, .11);
    font-size: 2.2rem;
    font-weight: 700
}

.process-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    color: #7fe0e6;
    font-size: .75rem;
    font-weight: 700
}

.process-card h3 {
    color: #fff;
    font-size: 1rem
}

.process-card p {
    margin: 0;
    color: #aec2d3;
    font-size: .82rem
}

.docs-layout {
    display: grid;
    grid-template-columns: 1fr .84fr;
    gap: 58px;
    align-items: start
}

.doc-list {
    display: grid;
    gap: 12px;
    margin-top: 29px
}

.doc-item {
    display: grid;
    grid-template-columns: 43px 1fr;
    gap: 14px;
    padding: 17px;
    border: 1px solid var(--pa-line);
    border-radius: 17px;
    background: var(--navy-800)
}

.doc-check {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--mint-100);
    color: var(--green-600)
}

.doc-check svg {
    width: 20px
}

.doc-item b {
    display: block;
    font-size: .9rem
}

.doc-item span {
    display: block;
    margin-top: 3px;
    color: var(--pa-muted);
    font-size: .78rem
}

.control-panel {
    position: sticky;
    top: 110px;
    padding: 32px;
    border-radius: 28px;
    color: #fff;
    background: radial-gradient(circle at 100% 0, rgba(41, 217, 255, .24), transparent 30%), linear-gradient(145deg, var(--navy-950), #114568);
    box-shadow: var(--shadow-md)
}

.panel-kicker {
    display: inline-flex;
    margin-bottom: 17px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: #8ee2e6;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em
}

.control-panel h3 {
    color: #fff;
    font-size: 1.45rem
}

.control-panel p {
    color: #c4d5e2
}

.control-panel ul {
    display: grid;
    gap: 11px;
    margin: 22px 0;
    padding: 0;
    list-style: none
}

.control-panel li {
    display: flex;
    gap: 10px;
    color: #d3e1eb;
    font-size: .82rem
}

.control-panel li:before {
    content: "";
    width: 7px;
    height: 7px;
    flex: none;
    margin-top: 8px;
    border-radius: 50%;
    background: #56d8c7
}

.control-footer {
    display: flex;
    gap: 10px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #96b7ca;
    font-size: .73rem
}

.control-footer svg {
    width: 20px;
    flex: none;
    color: #5bdcc9
}

.faq-list {
    max-width: 900px;
    margin-inline: auto;
    display: grid;
    gap: 12px
}

.faq-item {
    border: 1px solid var(--pa-line);
    border-radius: 18px;
    background: var(--navy-800);
    overflow: hidden
}

.faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 22px;
    border: 0;
    background: transparent;
    color: var(--pa-text);
    text-align: left;
    font-weight: 700;
    cursor: pointer
}

.faq-button:focus-visible { outline: 2px solid var(--cyan); outline-offset: -3px; }

.plus {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: var(--blue-700);
    font-style: normal;
    transition: .25s
}

.faq-item.open .plus {
    transform: rotate(45deg);
    background: var(--blue-600);
    color: #fff
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease)
}

.faq-panel p {
    padding: 0 22px 22px;
    margin: 0;
    color: var(--pa-muted);
    font-size: .91rem
}

.cta {
    padding: 0 0 105px
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: 58px;
    border-radius: 32px;
    color: #fff;
    background: linear-gradient(135deg, #0a2440, #0d5270);
    box-shadow: var(--shadow-md)
}

.cta-pattern {
    position: absolute;
    right: -100px;
    top: -145px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%
}

.cta-pattern:after {
    content: "";
    position: absolute;
    inset: 48px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%
}

.cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center
}

.cta-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: #7de2e6;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .13em
}

.cta h2 {
    max-width: 730px;
    color: #fff
}

.cta p {
    max-width: 720px;
    margin: 0;
    color: #c4d7e4
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 218px
}

.btn-white {
    color: #0d3d59;
    background: #fff
}

.btn-white:hover {
    background: #fff;
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(255, 255, 255, .18)
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .06)
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s var(--ease), transform .65s var(--ease)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:1050px) {

    .hero-grid,
    .overview-grid,
    .use-layout,
    .docs-layout {
        grid-template-columns: 1fr
    }

    .bridge-visual {
        max-width: 760px;
        margin-inline: auto
    }

    .overview-grid,
    .use-layout,
    .docs-layout {
        gap: 45px
    }

    .model-grid {
        grid-template-columns: 1fr 1fr
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr
    }

    .trust-item:nth-child(2) {
        border-right: 0
    }

    .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--pa-line)
    }

    .control-panel {
        position: static
    }

    .cta-grid {
        grid-template-columns: 1fr
    }

    .cta-actions {
        flex-direction: row
    }

    .process-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:820px) {
    .flow-line {
        grid-template-columns: 1fr
    }

    .flow-arrow {
        transform: rotate(90deg);
        height: 42px
    }

    .flow-card {
        min-height: auto
    }

    .model-grid,
    .feature-grid,
    .process-grid {
        grid-template-columns: 1fr
    }

    .process-card {
        min-height: auto
    }
}

@media(max-width:620px) {
    .container {
        width: min(calc(100% - 28px), var(--container))
    }

    .section {
        padding: 78px 0
    }

    .hero {
        min-height: auto;
        padding: 126px 0 78px
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch
    }

    .btn {
        width: 100%
    }

    .bridge-panel {
        padding: 18px;
        border-radius: 24px
    }

    .panel-head {
        flex-direction: column
    }

    .panel-metrics {
        grid-template-columns: 1fr
    }

    .trust-grid {
        grid-template-columns: 1fr
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--pa-line)
    }

    .trust-item:last-child {
        border-bottom: 0
    }

    .overview-visual {
        padding: 24px
    }

    .model-grid {
        grid-template-columns: 1fr
    }

    .use-item {
        grid-template-columns: 48px 1fr;
        padding: 17px
    }

    .use-item>span {
        width: 44px;
        height: 44px
    }

    .cta-box {
        padding: 38px 23px
    }
}
