:root {
    --navy: #050b1e;
    --navy2: #071633;
    --ink: #071346;
    --muted: #4d5878;
    --soft: #f8f7ff;
    --paper: #fff;
    --line: #dfe5ff;
    --violet: #6d55ff;
    --violet2: #9b8cff;
    --orange: #e65a2e;
    --shadow: 0 28px 70px rgba(27,38,105,.10)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--soft);
    color: var(--ink);
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    -webkit-font-smoothing: antialiased
}

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

.container {
    
    margin: 0 auto;
}

.serif {
    font-family: Georgia,"Times New Roman",serif;
     
}

.header {
    height: 76px;
    background: var(--navy);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.logo {
    font-weight: 900;
    letter-spacing: .18em;
    font-size: 25px
}

.logo span {
    color: var(--violet2)
}

.nav-links {
    display: flex;
    gap: 26px;
    color: rgba(255,255,255,.82);
    font-size: 14px
}

.nav-links .active {
    color: var(--violet2)
}

.btn {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 760;
    font-size: 15px;
    border: 1px solid transparent
}

.btn-primary {
    background: linear-gradient(135deg,#725dff,#4734dc);
    color: #fff;
    box-shadow: 0 18px 40px rgba(91,77,242,.34)
}

.btn-secondary {
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.04);
    color: #fff
}

.dark {
    background: radial-gradient(circle at 12% 8%,rgba(109,85,255,.22),transparent 28%),radial-gradient(circle at 86% 86%,rgba(123,97,255,.20),transparent 30%),linear-gradient(180deg,var(--navy),var(--navy2));
    color: #fff
}

.light {
    background: linear-gradient(180deg,#fff,#f8f7ff)
}

.section {
    padding: 82px 0
}

.eyebrow {
    color: var(--violet2);
    font-weight: 850;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 22px
}

/* .eyebrow:before {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    background: currentColor;
    vertical-align: middle;
    margin-right: 12px
} */

.eyebrow.orange {
    color: var(--orange)
}

.hero-grid {
    display: grid;
    grid-template-columns: .9fr .7fr;
    gap: 72px;
    align-items: center;
    padding: 92px 0
}

.hero h1 {
    font-size: clamp(50px,7vw,92px);
    line-height: .94;
    margin: 0;
    font-weight: 500
}

.hero p {
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    font-size: 18px;
    max-width: 620px
}

.hero-quote {
    margin-top: 26px;
    padding-left: 22px;
    border-left: 2px solid var(--violet2);
    font-family: Georgia,"Times New Roman",serif;
    font-style: italic;
    color: #fff!important
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 32px
}

.loop-visual {
    border: 1px solid rgba(155,140,255,.25);
    border-radius: 28px;
    background: rgba(255,255,255,.04);
    padding: 34px;
    box-shadow: 0 28px 70px rgba(0,0,0,.24)
}

.loop-ring {
    aspect-ratio: 1;
    border: 2px solid rgba(155,140,255,.45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    background: radial-gradient(circle,rgba(123,97,255,.20),transparent 60%)
}

.loop-ring strong {
    font-family: Georgia,"Times New Roman",serif;
    font-size: 36px;
    color: var(--violet2);
    text-align: center
}

.loop-pill {
    position: absolute;
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid var(--line)
}

.p1 {
    top: 8%;
    left: 50%;
    transform: translateX(-50%)
}

.p2 {
    right: -8%;
    top: 45%
}

.p3 {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%)
}

.p4 {
    left: -8%;
    top: 45%
}

.problem-card {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 42px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow)
}

.problem-card h2,.doctrine-card h2,.loop-section h2 {
    font-size: clamp(36px,5vw,64px);
    line-height: 1.02;
    margin: 0;
    font-weight: 500
}

.problem-card p,.doctrine-text p,.loop-section p {
    color: var(--muted);
    line-height: 1.68
}

.problem-split {
    display: grid;
    gap: 14px
}

.split-row {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    background: linear-gradient(180deg,#fff,#fbfbff)
}

.split-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--violet)
}

.split-row.change .split-number {
    color: var(--orange)
}

.split-row ul {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.6
}

.doctrine-list {
    display: grid;
    gap: 24px
}

.doctrine-card {
    display: grid;
    grid-template-columns: 1fr .28fr;
    gap: 34px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow)
}

.doctrine-card.dark-card {
    background: linear-gradient(180deg,#061126,#050b1e);
    color: #fff;
    border-color: rgba(155,140,255,.20)
}

.doctrine-card.dark-card p,.doctrine-card.dark-card .concept li {
    color: rgba(255,255,255,.74)
}

.doctrine-num {
    color: var(--violet);
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 14px
}

.doctrine-card h2 {
    font-size: clamp(30px,4vw,52px)
}

.quote {
    font-family: Georgia,"Times New Roman",serif;
    font-style: italic;
    font-size: 20px;
    color: var(--orange);
    margin: 18px 0 22px
}

.concept {
    margin: 0;
    color: var(--muted);
    line-height: 1.68
}

.concept ul {
    margin: 14px 0;
    padding-left: 20px
}

.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px
}

.chip {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
    color: #334066
}

.dark-card .chip {
    background: rgba(255,255,255,.05);
    border-color: rgba(155,140,255,.22);
    color: #fff
}

.icon-box {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    background: linear-gradient(180deg,#fff,#f8f7ff);
    display: grid;
    place-items: center;
    min-height: 220px
}

.dark-card .icon-box {
    background: rgba(255,255,255,.04);
    border-color: rgba(155,140,255,.22)
}

.icon-box img {
    width: 86px;
    height: 86px
}

.loop-section {
    text-align: center
}

.loop-steps {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 14px
}

.loop-step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 16px 38px rgba(27,38,105,.05)
}

.loop-step img {
    width: 42px;
    height: 42px
}

.loop-step h3 {
    margin: 12px 0 6px
}

.loop-step p {
    font-size: 13px;
    margin: 0
}

.cta {
    padding: 76px 0
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center
}

.cta h2 {
    font-size: clamp(40px,6vw,76px);
    line-height: .96;
    margin: 0;
    font-weight: 500
}

.cta h2 span {
    color: var(--violet2)
}

.cta p {
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.65
}

@media(max-width: 980px) {
    .nav-links {
        display:none
    }

    .hero-grid,.problem-card,.doctrine-card,.cta-grid {
        grid-template-columns: 1fr
    }

    .loop-steps {
        grid-template-columns: 1fr
    }

    .icon-box {
        min-height: 150px
    }

    .p2 {
        right: 0
    }

    .p4 {
        left: 0
    }
}

@media(max-width: 640px) {
    .container {
        width:min(100% - 28px,1120px)
    }

    .section {
        padding: 58px 0
    }

    .hero-grid {
        padding: 62px 0
    }

    .hero h1 {
        font-size: 44px
    }

    .problem-card,.doctrine-card {
        padding: 22px;
        border-radius: 18px
    }

    .btn {
        width: 100%
    }
}


.doc-pad
{
padding:100px;

}

@media(max-width: 640px) 

{

.doc-pad
{
padding:0;

}

}