:root {
    --navy: #2f455c;
    --navy-deep: #1d2b3a;
    --navy-dark: #192533;
    --green: #3cc47f;
    --green-bright: #77dfad;
    --paper: #f7f8fa;
    --paper-alt: #eef2f5;
    --ink: #263545;
    --muted: #566575;
    --line: #dfe6ec;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--paper);
    color: #333;
}

.debt-page *,
.debt-page *::before,
.debt-page *::after {
    box-sizing: border-box;
}

.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.page-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--green-bright));
    transform: scaleX(0);
    transform-origin: left center;
}

header {
    background-color: var(--navy);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 80px;
    position: relative;
    z-index: 100;
}

.logo-link {
    position: absolute;
    left: 40px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 53px;
    width: auto;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-link:hover .logo-img {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.24));
}

header nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

header nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

header nav a:hover,
header nav a.active {
    border-bottom: 2px solid var(--green);
}

header nav a:hover {
    transform: translateY(-1px);
}

.btn-investors {
    background-color: var(--green);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    text-transform: none;
    position: absolute;
    right: 40px;
    box-shadow: 0 0 0 rgba(60, 196, 127, 0);
}

.btn-investors:hover {
    background-color: var(--green);
    border-bottom: none;
    color: white;
    box-shadow: 0 10px 22px rgba(60, 196, 127, 0.25);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
}

.hero {
    min-height: 325px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-color: var(--navy-deep);
    background-image:
        linear-gradient(135deg, rgba(60, 196, 127, 0.18) 0%, rgba(60, 196, 127, 0) 42%),
        linear-gradient(160deg, var(--navy) 0%, #233448 48%, var(--navy-dark) 100%);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: -18%;
    pointer-events: none;
}

.hero::before {
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 48px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 48px);
    animation: gridDrift 26s linear infinite;
    z-index: -2;
}

.hero::after {
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.10), transparent),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
    transform: translateX(-68%) skewX(-18deg);
    animation: heroSweep 7s ease-in-out infinite;
    z-index: -1;
}

.hero-flow {
    position: absolute;
    inset: 0;
    transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
    transition: transform 0.25s ease-out;
    pointer-events: none;
}

.flow-line,
.flow-node {
    position: absolute;
    display: block;
}

.flow-line {
    height: 1px;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(119, 223, 173, 0.8), transparent);
    opacity: 0.72;
    transform-origin: center;
    animation: flowPulse 4.8s ease-in-out infinite;
}

.flow-line-one {
    left: 6%;
    top: 25%;
    transform: rotate(17deg);
}

.flow-line-two {
    right: 8%;
    top: 67%;
    animation-delay: 0.8s;
    transform: rotate(-13deg);
}

.flow-line-three {
    left: 34%;
    top: 78%;
    width: 28%;
    animation-delay: 1.6s;
    transform: rotate(3deg);
}

.flow-node {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(119, 223, 173, 0.8);
    border-radius: 2px;
    background: rgba(60, 196, 127, 0.10);
    transform: rotate(45deg);
    animation: nodePulse 3.6s ease-in-out infinite;
}

.flow-node-one {
    left: 18%;
    top: 34%;
}

.flow-node-two {
    right: 22%;
    top: 25%;
    animation-delay: 0.45s;
}

.flow-node-three {
    left: 27%;
    bottom: 22%;
    animation-delay: 0.9s;
}

.flow-node-four {
    right: 13%;
    bottom: 28%;
    animation-delay: 1.25s;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 52px 20px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green-bright);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.16;
    margin: 0;
    text-transform: uppercase;
}

.underline {
    width: 110px;
    height: 1px;
    background-color: var(--green);
    margin: 18px auto 0;
    transform: scaleX(0.34);
    transform-origin: center;
    animation: underlineBreathe 2.7s ease-in-out infinite;
}

.hero-sub {
    max-width: 760px;
    margin: 16px auto 0;
    color: #d7e0ea;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.5;
}

.hero-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.07);
    color: #ecf5fb;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateY(0);
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
    animation: tagFloat 4.8s ease-in-out infinite;
}

.hero-tags span:nth-child(2) {
    animation-delay: 0.45s;
}

.hero-tags span:nth-child(3) {
    animation-delay: 0.9s;
}

.hero-tags span:hover {
    transform: translateY(-3px);
    border-color: rgba(119, 223, 173, 0.85);
    background: rgba(60, 196, 127, 0.18);
}

.section-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 85;
    padding: 10px 20px;
    background: rgba(247, 248, 250, 0.92);
    border-bottom: 1px solid rgba(223, 230, 236, 0.9);
    backdrop-filter: blur(14px);
}

.section-nav {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.section-nav-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    color: var(--navy);
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.section-nav-link:hover,
.section-nav-link.is-active,
.section-nav-link[aria-selected="true"] {
    color: #123021;
    border-color: rgba(60, 196, 127, 0.38);
    background: rgba(60, 196, 127, 0.12);
    transform: translateY(-1px);
}

.section-nav-link:focus-visible,
.filter-btn:focus-visible,
.structure-controls button:focus-visible,
.cta-btn:focus-visible,
footer a:focus-visible {
    outline: 2px solid var(--green-bright);
    outline-offset: 3px;
}

.intro-section {
    padding: 40px 20px;
    background-color: #f4f6f8;
    background-image: url('Background.jpg');
    background-position: center;
    background-size: cover;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}

.intro-grid p {
    position: relative;
    margin: 0;
    color: #283747;
    font-size: 16px;
    line-height: 1.65;
    padding-left: 18px;
}

.intro-grid p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    bottom: 7px;
    width: 3px;
    border-radius: 3px;
    background: var(--green);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.65s ease 0.2s;
}

.intro-grid p.is-visible::before,
.motion-ready .intro-grid p.is-visible::before {
    transform: scaleY(1);
}

.intro-grid p:first-child {
    font-size: 17px;
    font-weight: 500;
}

.overview-section .section-heading {
    margin-top: 42px;
}

.section {
    padding: 52px 20px;
}

.page-section {
    scroll-margin-top: 72px;
}

.page-section[hidden] {
    display: none !important;
}

.page-section.is-active-section {
    animation: sectionPanelEnter 0.42s ease both;
}

.section-heading {
    max-width: 880px;
    margin: 0 auto 28px;
    text-align: center;
}

.section-heading h2,
.approach-main h2,
.philosophy-panel h2,
.closing-section h2 {
    margin: 0;
    color: var(--navy);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-heading h2::after,
.approach-main h2::after,
.philosophy-panel h2::after,
.closing-section h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 1px;
    background: var(--green);
    margin: 14px auto 0;
    transform: scaleX(0.2);
    transform-origin: left center;
    transition: transform 0.65s ease 0.1s;
}

.is-visible > h2::after,
.is-visible.section-heading h2::after,
.motion-ready .is-visible > h2::after,
.motion-ready .is-visible.section-heading h2::after {
    transform: scaleX(1);
}

.section-heading p {
    margin: 18px 0 0;
    color: #44515f;
    font-size: 16px;
    line-height: 1.6;
}

.deploy-section {
    background-color: var(--paper-alt);
}

.capital-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: -6px 0 26px;
}

.filter-btn,
.structure-controls button {
    min-height: 38px;
    border: 1px solid rgba(47, 69, 92, 0.18);
    border-radius: 5px;
    padding: 0 16px;
    background: #ffffff;
    color: var(--navy);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.filter-btn:hover,
.filter-btn.is-active,
.structure-controls button:hover,
.structure-controls button[aria-selected="true"] {
    color: #0a2a1a;
    border-color: rgba(60, 196, 127, 0.6);
    background: rgba(60, 196, 127, 0.12);
    box-shadow: 0 8px 20px rgba(60, 196, 127, 0.15);
    transform: translateY(-2px);
}

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

.deploy-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--green);
    border-radius: 4px;
    padding: 24px 26px;
}

.interactive-card {
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0));
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease, filter 0.24s ease;
    will-change: transform;
}

.interactive-card:hover {
    --lift: -6px;
    border-color: rgba(60, 196, 127, 0.55);
    box-shadow: 0 18px 42px rgba(24, 37, 51, 0.14);
}

.interactive-card.is-muted {
    opacity: 0.42;
    filter: saturate(0.72);
    transform: scale(0.985);
}

.interactive-card.is-selected {
    border-color: rgba(60, 196, 127, 0.75);
    box-shadow: 0 16px 38px rgba(60, 196, 127, 0.15);
}

.card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(119, 223, 173, 0.24), transparent 34%);
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.interactive-card:hover .card-glow {
    opacity: 1;
}

.card-heading {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.card-heading i {
    color: var(--green);
    font-size: 21px;
    line-height: 1;
    margin-top: 3px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.interactive-card:hover .card-heading i {
    color: #25ad6b;
    transform: translateY(-2px) scale(1.08);
}

.card-heading h3 {
    margin: 0;
    color: var(--navy);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.card-heading span {
    display: block;
    margin-top: 4px;
    color: #798691;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.deploy-card ul,
.philosophy-panel ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.deploy-card li {
    position: relative;
    margin: 0 0 9px;
    padding-left: 19px;
    color: #3d4854;
    font-size: 15px;
    line-height: 1.48;
    transition: color 0.2s ease, transform 0.2s ease;
}

.deploy-card li:last-child {
    margin-bottom: 0;
}

.deploy-card li:hover {
    color: #1e3328;
    transform: translateX(3px);
}

.deploy-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deploy-card li:hover::before {
    transform: scale(1.45);
    box-shadow: 0 0 0 5px rgba(60, 196, 127, 0.13);
}

.market-section {
    position: relative;
    color: white;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
        var(--navy);
    overflow: hidden;
}

.market-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
    mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
    animation: gridDrift 34s linear infinite reverse;
    pointer-events: none;
}

.market-section .container {
    position: relative;
    z-index: 1;
}

.market-section .section-heading h2 {
    color: white;
}

.market-group + .market-group {
    margin-top: 44px;
}

.market-group-title {
    margin: 0 0 18px;
    padding-left: 14px;
    border-left: 3px solid var(--green);
    color: var(--green-bright);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.market-card {
    min-height: 286px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 28px 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.055);
}

.market-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--green), rgba(119, 223, 173, 0));
    opacity: 0.88;
}

.market-card:hover {
    box-shadow: 0 18px 44px rgba(10, 18, 28, 0.25);
}

.stat-label {
    color: var(--green-bright);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.market-card strong {
    display: block;
    min-height: 0;
    margin: 18px 0 13px;
    color: #ffffff;
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0;
    transition: transform 0.25s ease, text-shadow 0.25s ease;
}

.market-card:hover strong {
    transform: translateY(-2px) scale(1.03);
    text-shadow: 0 0 18px rgba(119, 223, 173, 0.22);
}

.market-card p {
    flex: 1;
    margin: 17px 0 0;
    color: #d4dde6;
    font-size: 15.5px;
    line-height: 1.65;
}

.market-card strong + p {
    margin-top: 0;
}

.market-card-scale p {
    max-width: 320px;
}

.market-card a {
    margin-top: auto;
    padding-top: 20px;
    color: #b7c7d7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.market-card a:hover {
    color: var(--green-bright);
    transform: translateY(-1px);
}

.approach-section {
    background-color: var(--paper);
    background-image: url('Background.jpg');
    background-position: center;
    background-size: cover;
    padding-top: 72px;
    padding-bottom: 72px;
}

.approach-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.95fr);
    gap: 36px;
    align-items: start;
}

.approach-grid-single {
    display: block;
    max-width: 1040px;
}

.approach-main h2,
.philosophy-panel h2,
.closing-section h2 {
    text-align: left;
}

.approach-main h2::after,
.philosophy-panel h2::after,
.closing-section h2::after {
    margin-left: 0;
    margin-right: 0;
}

.approach-main {
    position: relative;
    overflow: hidden;
    padding: 48px 52px 52px;
    border: 1px solid rgba(223, 230, 236, 0.92);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
        rgba(255, 255, 255, 0.95);
    box-shadow: 0 24px 60px rgba(31, 46, 61, 0.12);
}

.approach-main::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--green), rgba(119, 223, 173, 0.28));
}

.approach-main::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(60, 196, 127, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.approach-main p,
.philosophy-panel p {
    color: #3b4652;
    font-size: 15.5px;
    line-height: 1.7;
    margin: 18px 0 0;
}

.approach-main .lead {
    color: #1a2d3d;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 900px;
}

.structure-lab {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 1.8fr);
    gap: 28px;
    margin-top: 32px;
    padding: 28px;
    border: 1px solid rgba(47, 69, 92, 0.12);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(32, 45, 58, 0.08);
}

.structure-lab-head {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 16px;
    grid-column: 1;
    grid-row: 1;
}

.structure-lab h3 {
    margin: 0;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.structure-lab-head span {
    color: #8a99a8;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.structure-controls {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    grid-column: 1;
    grid-row: 2;
}

.structure-controls button {
    justify-content: flex-start;
    width: 100%;
    min-height: 40px;
    padding: 0 16px;
    text-align: left;
}

.structure-output {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 200px;
    margin-top: 0;
    padding: 24px;
    border-top: none;
    border-left: 1px solid rgba(47, 69, 92, 0.15);
    background: linear-gradient(135deg, rgba(60, 196, 127, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 4px;
}

.structure-output strong {
    display: block;
    color: #1a2d3d;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    transition: transform 0.18s ease, opacity 0.18s ease;
    margin-bottom: 4px;
}

.structure-output p {
    margin-top: 12px;
    color: #3b4652;
    font-size: 15px;
    line-height: 1.6;
}

.structure-output.is-changing strong,
.structure-output.is-changing p {
    opacity: 0;
    transform: translateY(8px);
}

.structure-meter {
    height: 6px;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 3px;
    background: rgba(47, 69, 92, 0.12);
}

.structure-meter span {
    display: block;
    width: var(--meter, 72%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--green), var(--green-bright));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(60, 196, 127, 0.3);
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 36px;
}

.assessment-grid > div {
    padding: 28px 28px 24px;
    border: 1px solid rgba(223, 230, 236, 0.95);
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.assessment-grid > div:hover {
    transform: translateY(-3px);
    border-color: rgba(60, 196, 127, 0.5);
    box-shadow: 0 14px 32px rgba(31, 46, 61, 0.12);
}

.assessment-grid h3 {
    margin: 0;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.assessment-grid h3::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    background: var(--green);
    border-radius: 1px;
}

.assessment-grid p {
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.65;
    color: #3b4652;
}

.philosophy-panel {
    padding: 25px 26px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 4px;
}

.philosophy-section {
    background:
        linear-gradient(120deg, rgba(60, 196, 127, 0.08), transparent 42%),
        var(--paper-alt);
}

.philosophy-grid {
    max-width: 920px;
}

.philosophy-section .philosophy-panel {
    padding: 34px 36px;
}

.philosophy-panel li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
    margin-top: 16px;
    color: #344252;
    font-size: 14.5px;
    line-height: 1.45;
    transition: transform 0.2s ease, color 0.2s ease;
}

.philosophy-panel li:hover {
    color: #182d22;
    transform: translateX(4px);
}

.philosophy-panel i {
    color: var(--green);
    font-size: 16px;
    text-align: center;
    margin-top: 2px;
    transition: transform 0.2s ease;
}

.philosophy-panel li:hover i {
    transform: scale(1.14) rotate(-4deg);
}

.closing-section {
    padding: 42px 20px;
    color: white;
    background:
        linear-gradient(120deg, rgba(60, 196, 127, 0.09), transparent 44%),
        #253545;
}

.closing-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
}

.closing-section h2 {
    color: white;
}

.closing-section p {
    max-width: 850px;
    margin: 16px 0 0;
    color: #ccd7e1;
    font-size: 15.5px;
    line-height: 1.6;
}

.cta-btn {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 43px 0 28px;
    color: #ffffff;
    background: var(--green);
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: translateX(-115%);
    transition: transform 0.55s ease;
}

.cta-btn::after {
    content: "";
    position: absolute;
    right: 24px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    transform: rotate(45deg);
    transition: transform 0.22s ease;
}

.cta-btn:hover {
    background: #34ae70;
    box-shadow: 0 16px 32px rgba(60, 196, 127, 0.22);
    transform: translateY(-3px);
}

.cta-btn:hover::before {
    transform: translateX(115%);
}

.cta-btn:hover::after {
    transform: translateX(4px) rotate(45deg);
}

footer {
    background-color: #253545;
    color: white;
    padding: 34px 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    margin: 0 10px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--green-bright);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    background-color: var(--green);
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.social-icons a:hover {
    background: #34ae70;
    box-shadow: 0 10px 20px rgba(60, 196, 127, 0.2);
    transform: translateY(-3px);
}

.social-icons a i {
    color: #fff;
}

.motion-ready [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.motion-ready .is-visible li {
    animation: itemRise 0.45s ease both;
}

.motion-ready .is-visible li:nth-child(2) {
    animation-delay: 0.05s;
}

.motion-ready .is-visible li:nth-child(3) {
    animation-delay: 0.10s;
}

.motion-ready .is-visible li:nth-child(4) {
    animation-delay: 0.15s;
}

.motion-ready .is-visible li:nth-child(5) {
    animation-delay: 0.20s;
}

@keyframes gridDrift {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 96px 96px, -96px 96px;
    }
}

@keyframes heroSweep {
    0%,
    45% {
        transform: translateX(-68%) skewX(-18deg);
        opacity: 0;
    }
    58% {
        opacity: 0.85;
    }
    100% {
        transform: translateX(68%) skewX(-18deg);
        opacity: 0;
    }
}

@keyframes flowPulse {
    0%,
    100% {
        opacity: 0.22;
        filter: blur(0);
    }
    50% {
        opacity: 0.95;
        filter: blur(0.2px);
    }
}

@keyframes nodePulse {
    0%,
    100% {
        opacity: 0.42;
        box-shadow: 0 0 0 rgba(119, 223, 173, 0);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(119, 223, 173, 0.32);
    }
}

@keyframes underlineBreathe {
    0%,
    100% {
        transform: scaleX(0.42);
        opacity: 0.78;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes tagFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

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

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

@media (max-width: 1180px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-panel {
        max-width: 760px;
    }
}

@media (max-width: 980px) {
    .structure-lab {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .structure-lab-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        grid-column: auto;
        grid-row: auto;
        margin-bottom: 8px;
    }

    .structure-controls {
        flex-direction: row;
        flex-wrap: wrap;
        grid-column: auto;
        grid-row: auto;
    }

    .structure-controls button {
        width: auto;
        justify-content: center;
        min-width: calc(50% - 6px);
        flex: 1 1 auto;
    }

    .structure-output {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
        padding: 20px;
        border-left: none;
        border-top: 1px solid rgba(47, 69, 92, 0.15);
    }
}

@media (max-width: 1040px) {
    .market-grid {
        grid-template-columns: 1fr;
    }

    .market-card,
    .market-card strong {
        min-height: 0;
    }
}

@media (max-width: 900px) {
    .section-nav-wrap {
        top: 0;
        padding: 9px 14px;
    }

    .section-nav-link {
        min-height: 32px;
        padding: 0 11px;
        font-size: 12px;
    }

    .hero {
        min-height: 292px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .intro-grid,
    .deploy-grid,
    .assessment-grid {
        grid-template-columns: 1fr;
    }

    .closing-grid {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    header nav {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .hero {
        min-height: 0;
    }

    .hero-content {
        padding: 48px 18px;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-tags span {
        min-height: 30px;
        font-size: 11px;
    }

    .section {
        padding: 42px 18px;
    }

    .page-section {
        scroll-margin-top: 24px;
    }

    .section-heading h2,
    .approach-main h2,
    .philosophy-panel h2,
    .closing-section h2 {
        font-size: 21px;
    }

    .assessment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .approach-main {
        padding: 32px 24px 36px;
    }

    .deploy-card,
    .philosophy-panel,
    .structure-lab {
        padding: 22px 20px;
    }

    .approach-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .approach-main {
        padding: 28px 24px 30px;
    }

    .assessment-grid > div {
        padding: 20px 18px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .section-nav-wrap {
        position: relative;
        top: auto;
    }

    .section-nav {
        justify-content: flex-start;
    }

    .section-nav-link {
        flex: 1 1 calc(50% - 8px);
    }

    .hero-flow {
        opacity: 0.55;
    }

    .hero-tags {
        gap: 8px;
    }

    .hero-tags span,
    .filter-btn,
    .structure-controls button {
        width: 100%;
        justify-content: center;
    }

    .market-card strong {
        font-size: 27px;
    }

    .structure-lab-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .intro-section {
        padding: 34px 18px;
    }

    .footer-links a {
        display: inline-block;
        margin: 6px 8px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .motion-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .interactive-card,
    .interactive-card:hover {
        transform: none;
    }
}
