html {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Spectral', Georgia, serif;
    background-color: #18201A;
    color: #F0F3EF;
}

.sitehead {
    background: linear-gradient(160deg, #111711 0%, #1e2b1a 55%, #0f1a0e 100%);
    border-bottom: 2px solid #6B953E;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
    position: relative;
    z-index: 100;
}

.sitehead-upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 64px;
    max-width: 1440px;
    margin: 0 auto;
    gap: 32px;
}

.sitehead-contact {
    display: flex;
    align-items: center;
    gap: 32px;
}

.sitehead-contact a {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #ADC5A6;
    text-decoration: none;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.sitehead-contact a:hover {
    color: #F0F3EF;
}

.sitehead-contact a:focus {
    outline: 2px solid #6B953E;
    outline-offset: 3px;
    border-radius: 2px;
}

.sitehead-contact .contactlabel {
    font-size: 16px;
    color: #6B953E;
    letter-spacing: 0.02em;
}

.sitehead-lower {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px 0 64px;
    max-width: 1440px;
    margin: 0 auto;
    gap: 32px;
    border-top: 1px solid rgba(107, 149, 62, 0.18);
}

.primenav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primenav li {
    display: flex;
}

.primenav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 16px;
    font-family: 'Spectral', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #F0F3EF;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 3px;
    transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.primenav a:hover {
    color: #6B953E;
    background-color: rgba(107, 149, 62, 0.09);
}

.primenav a:focus {
    outline: 2px solid #F0F3EF;
    outline-offset: 2px;
    border-radius: 3px;
}

.primenav a.active {
    color: #6B953E;
}

.logodock {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 0;
    min-width: 120px;
}

.logodock a {
    display: flex;
    align-items: center;
    border-radius: 3px;
    padding: 4px 8px;
    background-color: rgba(240, 243, 239, 0.07);
    box-shadow: 0 3px 4px -2px rgba(107, 149, 62, 0.06), 0 0 0 1px rgba(173, 197, 166, 0.18);
    transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.logodock a:hover {
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09), 0 0 0 1px rgba(107, 149, 62, 0.35);
}

.logodock a:focus {
    outline: 2px solid #F0F3EF;
    outline-offset: 3px;
    border-radius: 3px;
}

.logodock img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.monogram {
    font-family: 'Spectral', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #6B953E 0%, #ADC5A6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 4px 8px;
}

.sitefooter {
    background: linear-gradient(175deg, #111711 0%, #0d160c 100%);
    border-top: 2px solid rgba(107, 149, 62, 0.3);
    box-shadow: 0 -3px 4px -2px rgba(107, 149, 62, 0.06);
}

.footermain {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 64px 32px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px;
}

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

.footercol-heading {
    font-family: 'Spectral', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: #6B953E;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.footernav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footernav a {
    font-family: 'Spectral', Georgia, serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #ADC5A6;
    text-decoration: none;
    border-radius: 2px;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.footernav a:hover {
    color: #F0F3EF;
}

.footernav a:focus {
    outline: 2px solid #6B953E;
    outline-offset: 3px;
    border-radius: 2px;
}

.footeraddr {
    font-family: 'Spectral', Georgia, serif;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #ADC5A6;
    font-style: normal;
}

.footeraddr a {
    color: #ADC5A6;
    text-decoration: none;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.footeraddr a:hover {
    color: #F0F3EF;
}

.footeraddr a:focus {
    outline: 2px solid #6B953E;
    outline-offset: 2px;
    border-radius: 2px;
}

.footerbase {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(173, 197, 166, 0.12);
}

.footerbase-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerbase-logo a {
    display: flex;
    align-items: center;
    border-radius: 3px;
    padding: 4px 8px;
    background-color: rgba(240, 243, 239, 0.05);
    box-shadow: 0 3px 4px -2px rgba(107, 149, 62, 0.06), 0 0 0 1px rgba(173, 197, 166, 0.15);
    transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.footerbase-logo a:hover {
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09), 0 0 0 1px rgba(107, 149, 62, 0.3);
}

.footerbase-logo a:focus {
    outline: 2px solid #F0F3EF;
    outline-offset: 3px;
    border-radius: 3px;
}

.footerbase-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.copyright {
    font-family: 'Spectral', Georgia, serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(173, 197, 166, 0.6);
    text-align: center;
}

@media (max-width: 1024px) {
    .sitehead-upper {
        padding: 16px 32px;
    }

    .sitehead-lower {
        padding: 0 32px;
    }

    .footermain {
        padding: 64px 32px 32px 32px;
        gap: 32px;
    }

    .footerbase {
        padding: 32px 32px;
    }
}

@media (max-width: 768px) {
    .sitehead-upper {
        padding: 16px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sitehead-lower {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .logodock {
        justify-content: flex-start;
    }

    .primenav {
        gap: 4px;
    }

    .primenav a {
        padding: 8px 12px;
        font-size: 16px;
    }

    .footermain {
        grid-template-columns: 1fr;
        padding: 32px 16px;
        gap: 32px;
    }

    .footerbase {
        padding: 32px 16px;
    }

    .sitehead-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 320px) {
    .sitehead-upper {
        padding: 16px 8px;
    }

    .sitehead-lower {
        padding: 0 8px;
    }

    .primenav a {
        padding: 8px 8px;
        font-size: 16px;
    }

    .footermain {
        padding: 32px 8px;
    }

    .footerbase {
        padding: 32px 8px;
    }
}

.rules-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 96px;
    background: #18201a;
    color: #F0F3EF;
}

.rules-content p {
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0.015em;
    margin-bottom: 32px;
    color: #d6dfd4;
}

.rules-content ul,
.rules-content ol {
    padding-left: 32px;
    margin-bottom: 32px;
}

.rules-content ul {
    list-style-type: disc;
}

.rules-content ol {
    list-style-type: decimal;
}

.rules-content li {
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0.015em;
    color: #d6dfd4;
    margin-bottom: 8px;
}

.rules-content li:last-child {
    margin-bottom: 0;
}

.rules-content ul ul,
.rules-content ol ol,
.rules-content ul ol,
.rules-content ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.rules-content em,
.rules-content i {
    font-style: italic;
    color: #ADC5A6;
}

.rules-content a {
    color: #6B953E;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.rules-content a:hover {
    color: #ADC5A6;
    text-decoration-color: #ADC5A6;
}

.rules-content a:visited {
    color: #8aaa5c;
}

.rules-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
    border-radius: 3px;
    overflow: hidden;
}

.rules-content thead {
    background: #2a3a20;
}

.rules-content thead tr {
    border-bottom: 2px solid #6B953E;
}

.rules-content tbody tr {
    border-bottom: 1px solid #2e3d28;
    transition: background 0.45s ease-in-out;
}

.rules-content tbody tr:last-child {
    border-bottom: none;
}

.rules-content tbody tr:hover {
    background: #212e1a;
}

.rules-content th {
    padding: 16px;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #ADC5A6;
    font-weight: 700;
}

.rules-content td {
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #d6dfd4;
    vertical-align: top;
}

.rules-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #6B953E 30%, #ADC5A6 60%, transparent);
    margin: 64px 0;
    opacity: 0.5;
}

.rules-content div {
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .rules-content {
        padding: 64px 64px;
    }
}

@media (max-width: 768px) {
    .rules-content {
        padding: 32px 32px;
    }

    .rules-content p {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .rules-content li {
        font-size: 16px;
    }

    .rules-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .rules-content th,
    .rules-content td {
        padding: 8px 16px;
        font-size: 16px;
    }

    .rules-content hr {
        margin: 32px 0;
    }
}

@media (max-width: 320px) {
    .rules-content {
        padding: 16px 16px;
    }

    .rules-content ul,
    .rules-content ol {
        padding-left: 16px;
    }

    .rules-content th,
    .rules-content td {
        padding: 8px;
    }
}

.ld {
    background: #131714;
    color: #e8ede6;
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip;
}

.ld .divline {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 64px;
}

.ld .divline span {
    display: block;
    height: 1px;
    background: #6B953E;
    opacity: 0.35;
}

.ld .divline span:nth-child(2) {
    height: 3px;
    opacity: 0.6;
}

.ld ::selection {
    background: #6B953E;
    color: #f0f3ef;
}

/* ─── SECTION 1: TITLE BLOCK ─── */
.ld .titlewrap {
    position: relative;
    padding: 96px 64px 64px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: end;
}

.ld .titlebg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 30% 20%, rgba(107, 149, 62, 0.18) 0%, rgba(173, 197, 166, 0.06) 45%, transparent 70%);
    pointer-events: none;
    overflow: hidden;
}

.ld .titlebg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.18;
}

.ld .titleleft {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ld .supertag {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.14em;
    color: #ADC5A6;
    text-transform: uppercase;
    padding: 4px 16px;
    border: 1px solid rgba(173, 197, 166, 0.3);
    border-radius: 2px;
    width: fit-content;
}

.ld .h1main {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0;
    background: linear-gradient(160deg, #f0f3ef 0%, #6B953E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ld .h1main .kwmark {
    text-decoration: underline;
    text-decoration-color: #6B953E;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.ld .titledesc {
    font-size: 18px;
    line-height: 1.75;
    color: #ADC5A6;
    max-width: 520px;
    letter-spacing: 0.01em;
    margin: 0;
}

.ld .titleactions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.ld .btnprim {
    background: #6B953E;
    color: #f0f3ef;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.18s ease-in-out, box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
    text-decoration: none;
    display: inline-block;
}

.ld .btnprim:hover {
    background: #7aab48;
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
}

.ld .btnprim:active {
    transform: scale(0.97);
}

.ld .btnprim:focus-visible {
    outline: 2px solid #ADC5A6;
    outline-offset: 3px;
}

.ld .btnghost {
    background: transparent;
    color: #ADC5A6;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: 1px solid rgba(173, 197, 166, 0.4);
    border-radius: 3px;
    cursor: pointer;
    transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    display: inline-block;
}

.ld .btnghost:hover {
    border-color: #6B953E;
    color: #f0f3ef;
}

.ld .btnghost:active {
    transform: scale(0.97);
}

.ld .btnghost:focus-visible {
    outline: 2px solid #ADC5A6;
    outline-offset: 3px;
}

.ld .titleright {
    position: relative;
    z-index: 1;
}

.ld .titleimgframe {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
    border-right: 3px solid rgba(107, 149, 62, 0.55);
    border-top: 1px solid rgba(173, 197, 166, 0.2);
}

.ld .titleimgframe img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.ld .titleimgbadge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(19, 23, 20, 0.88);
    border: 1px solid rgba(107, 149, 62, 0.4);
    border-radius: 3px;
    padding: 8px 16px;
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.02em;
}

/* ─── SECTION 2: INVESTMENT SIGNAL ─── */
.ld .investwrap {
    padding: 64px;
    background: #161b14;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.ld .investlabel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 32px;
}

.ld .seclabel {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6B953E;
    margin: 0;
}

.ld .h2sec {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0;
    background: linear-gradient(135deg, #f0f3ef 0%, #ADC5A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ld .investgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ld .investcard {
    background: #1a2018;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(107, 149, 62, 0.15);
    box-shadow: 0 3px 4px -2px rgba(107, 149, 62, 0.06);
    transition: border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ld .investcard:hover {
    border-color: rgba(107, 149, 62, 0.4);
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
}

.ld .investcard .cardtop {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ld .icobox {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: rgba(107, 149, 62, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ld .icobox svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #6B953E;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ld .cardtitle {
    font-size: 18px;
    line-height: 1.2;
    color: #f0f3ef;
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .cardbody {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .investnote {
    grid-column: 1 / -1;
    background: rgba(107, 149, 62, 0.08);
    border-left: 3px solid #6B953E;
    border-bottom: 1px solid rgba(107, 149, 62, 0.2);
    border-radius: 0px 3px 3px 0px;
    padding: 16px 32px;
    font-size: 16px;
    color: #ADC5A6;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

/* ─── SECTION 3: INSTRUCTORS ─── */
.ld .teamwrap {
    padding: 96px 64px;
    background: #131714;
    position: relative;
}

.ld .teamwrap .sideaccent {
    position: absolute;
    right: 0;
    top: 64px;
    bottom: 64px;
    width: 3px;
    background: linear-gradient(180deg, transparent, #6B953E 40%, #ADC5A6 70%, transparent);
    pointer-events: none;
}

.ld .teamhead {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.ld .teamheadleft {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 520px;
}

.ld .teamheaddesc {
    font-size: 18px;
    line-height: 1.75;
    color: #ADC5A6;
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .teamgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ld .teamcard {
    background: #1a2018;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
    border: 1px solid rgba(173, 197, 166, 0.1);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ld .teamcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
}

.ld .teamcard img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.ld .teamcardbody {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ld .teamname {
    font-size: 18px;
    line-height: 1.2;
    color: #f0f3ef;
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .teamrole {
    font-size: 16px;
    color: #6B953E;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.ld .teamdesc {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    margin: 8px 0 0;
    letter-spacing: 0.01em;
}

/* ─── SECTION 4: WHAT IS AVAILABLE ─── */
.ld .offerswrap {
    padding: 64px;
    background: #161b14;
}

.ld .offershead {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
    max-width: 600px;
}

.ld .offerslist {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ld .offerrow {
    display: grid;
    grid-template-columns: 60px 1fr 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px;
    border-radius: 3px;
    border: 1px solid transparent;
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}

.ld .offerrow:hover {
    background: rgba(107, 149, 62, 0.07);
    border-color: rgba(107, 149, 62, 0.2);
}

.ld .offerrow:hover .offernum {
    color: #6B953E;
}

.ld .offernum {
    font-size: 44px;
    line-height: 1.2;
    color: rgba(173, 197, 166, 0.25);
    letter-spacing: 0.02em;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    font-variant-numeric: tabular-nums;
}

.ld .offertopic {
    font-size: 18px;
    line-height: 1.2;
    color: #f0f3ef;
    letter-spacing: 0.01em;
    margin: 0;
}

.ld .offerdesc {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .offertag {
    display: inline-block;
    font-size: 16px;
    color: #6B953E;
    border: 1px solid rgba(107, 149, 62, 0.3);
    border-radius: 2px;
    padding: 4px 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: fit-content;
}

.ld .offersdivider {
    height: 1px;
    background: rgba(173, 197, 166, 0.1);
    margin: 0 32px;
}

/* ─── SECTION 5: SUPPORT ─── */
.ld .supportwrap {
    padding: 96px 64px;
    background: linear-gradient(180deg, #131714 0%, #1a2018 100%);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: center;
}

.ld .supportleft {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ld .supporthead {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ld .h3sec {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0;
    background: linear-gradient(120deg, #f0f3ef 0%, #6B953E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ld .supportitems {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ld .supportitem {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 3px;
    background: rgba(107, 149, 62, 0.05);
    border: 1px solid rgba(107, 149, 62, 0.12);
    transition: background 0.6s ease-in-out, border-color 0.6s ease-in-out;
}

.ld .supportitem:hover {
    background: rgba(107, 149, 62, 0.1);
    border-color: rgba(107, 149, 62, 0.3);
}

.ld .supportitem .icobox {
    flex-shrink: 0;
}

.ld .supportitemtext {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ld .supportitemtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #f0f3ef;
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .supportitemdesc {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .supportright {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ld .supportimgframe {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
    border-right: 3px solid rgba(107, 149, 62, 0.5);
}

.ld .supportimgframe img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.ld .supportstat {
    background: #1a2018;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(107, 149, 62, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ld .statnum {
    font-size: 44px;
    line-height: 1.2;
    color: #6B953E;
    letter-spacing: 0.01em;
    margin: 0;
}

.ld .statdesc {
    font-size: 16px;
    line-height: 1.5;
    color: #ADC5A6;
    margin: 0;
    letter-spacing: 0.01em;
}

/* ─── SECTION 6: HESITATION ─── */
.ld .doubtwrap {
    padding: 64px;
    background: #1a2018;
    position: relative;
}

.ld .doubtsplit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
}

.ld .doubtbefore {
    background: #131714;
    padding: 64px;
    border-right: 2px solid rgba(107, 149, 62, 0.3);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ld .doubtafter {
    background: #1e2a1a;
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ld .doubttag {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(173, 197, 166, 0.5);
    margin: 0;
}

.ld .doubttag.active {
    color: #6B953E;
}

.ld .h4doubt {
    font-size: 24px;
    line-height: 1.5;
    color: #f0f3ef;
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .doubtbody {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .doubtpoints {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ld .doubtpoints li {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
}

.ld .doubtpoints li .dot {
    width: 6px;
    height: 6px;
    border-radius: 0px;
    background: #6B953E;
    flex-shrink: 0;
    margin-top: 9px;
}

/* ─── SECTION 7: LONG-TERM VALUE ─── */
.ld .valuewrap {
    padding: 96px 64px;
    background: #131714;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.ld .valuetop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ld .valueleft {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ld .valuehead {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ld .valuedesc {
    font-size: 18px;
    line-height: 1.75;
    color: #ADC5A6;
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .valuedesc2 {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(173, 197, 166, 0.7);
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .valueimgframe {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
    border-top: 1px solid rgba(173, 197, 166, 0.15);
    border-right: 3px solid rgba(107, 149, 62, 0.5);
}

.ld .valueimgframe img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.ld .valuebottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.ld .valuepillar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    border-radius: 12px;
    background: #1a2018;
    border: 1px solid rgba(107, 149, 62, 0.12);
    box-shadow: 0 3px 4px -2px rgba(107, 149, 62, 0.06);
    transition: border-color 0.65s cubic-bezier(0.22, 1, 0.36, 1), background 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.ld .valuepillar:hover {
    border-color: rgba(107, 149, 62, 0.35);
    background: #1e2a1a;
}

.ld .pillarnum {
    font-size: 44px;
    line-height: 1.2;
    color: rgba(107, 149, 62, 0.4);
    letter-spacing: 0.01em;
    margin: 0;
    font-variant-numeric: tabular-nums;
    transition: color 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.ld .valuepillar:hover .pillarnum {
    color: #6B953E;
}

.ld .pillartitle {
    font-size: 18px;
    line-height: 1.5;
    color: #f0f3ef;
    margin: 0;
    letter-spacing: 0.01em;
}

.ld .pillardesc {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    margin: 0;
    letter-spacing: 0.01em;
}

/* ─── ICON CYCLE ANIMATION ─── */
@keyframes iconpulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.ld .investcard:nth-child(1) .icobox svg {
    animation: iconpulse 2.4s ease-in-out infinite;
    animation-delay: 0s;
}

.ld .investcard:nth-child(2) .icobox svg {
    animation: iconpulse 2.4s ease-in-out infinite;
    animation-delay: 0.6s;
}

.ld .investcard:nth-child(3) .icobox svg {
    animation: iconpulse 2.4s ease-in-out infinite;
    animation-delay: 1.2s;
}

.ld .investcard:nth-child(4) .icobox svg {
    animation: iconpulse 2.4s ease-in-out infinite;
    animation-delay: 1.8s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .ld .titlewrap {
        grid-template-columns: 1fr;
        padding: 64px 32px 32px;
        gap: 32px;
    }

    .ld .h1main {
        font-size: 44px;
    }

    .ld .investwrap {
        grid-template-columns: 1fr;
        padding: 64px 32px;
        gap: 32px;
    }

    .ld .investlabel {
        position: static;
    }

    .ld .teamwrap {
        padding: 64px 32px;
    }

    .ld .teamgrid {
        grid-template-columns: 1fr 1fr;
    }

    .ld .offerswrap {
        padding: 64px 32px;
    }

    .ld .offerrow {
        grid-template-columns: 40px 1fr 1fr;
        gap: 16px;
    }

    .ld .offertag {
        display: none;
    }

    .ld .supportwrap {
        grid-template-columns: 1fr;
        padding: 64px 32px;
    }

    .ld .doubtwrap {
        padding: 64px 32px;
    }

    .ld .valuewrap {
        padding: 64px 32px;
    }

    .ld .valuetop {
        grid-template-columns: 1fr;
    }

    .ld .valuebottom {
        grid-template-columns: 1fr 1fr;
    }

    .ld .divline {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .ld .h1main {
        font-size: 44px;
    }

    .ld .h2sec,
    .ld .h3sec {
        font-size: 44px;
    }

    .ld .investgrid {
        grid-template-columns: 1fr;
    }

    .ld .teamgrid {
        grid-template-columns: 1fr;
    }

    .ld .doubtsplit {
        grid-template-columns: 1fr;
    }

    .ld .doubtbefore {
        border-right: none;
        border-bottom: 2px solid rgba(107, 149, 62, 0.3);
    }

    .ld .doubtsplit {
        border-radius: 3px;
    }

    .ld .offerrow {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ld .offernum {
        font-size: 24px;
    }

    .ld .valuebottom {
        grid-template-columns: 1fr;
    }

    .ld .teamhead {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .ld .titleactions {
        flex-direction: column;
        align-items: flex-start;
    }

    .ld .doubtwrap {
        padding: 32px 16px;
    }

    .ld .doubtbefore,
    .ld .doubtafter {
        padding: 32px;
    }

    .ld .investwrap {
        padding: 32px 16px;
    }

    .ld .teamwrap {
        padding: 32px 16px;
    }

    .ld .offerswrap {
        padding: 32px 16px;
    }

    .ld .supportwrap {
        padding: 32px 16px;
    }

    .ld .valuewrap {
        padding: 32px 16px;
    }

    .ld .divline {
        padding: 0 16px;
    }
}

@media (max-width: 320px) {
    .ld .h1main {
        font-size: 44px;
    }

    .ld .titlewrap {
        padding: 32px 16px 16px;
    }

    .ld .supertag {
        font-size: 16px;
    }
}

.portf {
    background: #18201a;
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip;
    position: relative;
}

.portf ::selection {
    background: #6B953E;
    color: #F0F3EF;
}

@keyframes gridpulse {

    0%,
    100% {
        opacity: 0.04;
    }

    50% {
        opacity: 0.11;
    }
}

.portf .pgrid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(#ADC5A6 1px, transparent 1px),
        linear-gradient(90deg, #ADC5A6 1px, transparent 1px);
    background-size: 64px 64px;
    animation: gridpulse 6s ease-in-out infinite;
    z-index: 0;
}

.portf .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    position: relative;
    z-index: 1;
}

.portf .split-left {
    background: #1e2a20;
    padding: 96px 64px 64px 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.portf .split-left::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 80px;
    height: 80px;
    border-top: 2px solid #6B953E;
    border-left: 2px solid #6B953E;
    opacity: 0.4;
    pointer-events: none;
}

.portf .split-left::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    width: 80px;
    height: 80px;
    border-top: 1px solid #ADC5A6;
    border-left: 1px solid #ADC5A6;
    opacity: 0.2;
    pointer-events: none;
}

.portf .thinlines {
    position: absolute;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.portf .thinlines span {
    display: block;
    height: 1px;
    background: #ADC5A6;
    opacity: 0.18;
}

.portf .thinlines span:nth-child(1) {
    width: 48px;
}

.portf .thinlines span:nth-child(2) {
    width: 32px;
}

.portf .thinlines span:nth-child(3) {
    width: 64px;
}

.portf .thinlines span:nth-child(4) {
    width: 24px;
}

.portf .split-right {
    background: #232e25;
    padding: 96px 64px 64px 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.portf .imgwrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.portf .imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(18%) contrast(1.05) brightness(0.55);
}

.portf .imgwrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.35;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.portf .split-right-text {
    position: relative;
    z-index: 1;
}

.portf .tag {
    display: inline-block;
    font-size: 16px;
    color: #6B953E;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.portf .htitle {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0 0 32px 0;
    background: linear-gradient(135deg, #F0F3EF 30%, #6B953E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portf .subtext {
    font-size: 18px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    max-width: 380px;
}

.portf .subtext strong {
    color: #F0F3EF !important;
    font-weight: 600;
}

.portf .numstat {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-top: 32px;
}

.portf .statitem {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.portf .statnum {
    font-size: 44px;
    line-height: 1.2;
    color: #F0F3EF;
    letter-spacing: 0.01em;
    font-weight: 700;
}

.portf .statnum sup {
    font-size: 18px;
    color: #6B953E;
    vertical-align: super;
    font-weight: 600;
}

.portf .statlabel {
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.02em;
}

.portf .worksec {
    padding: 96px 64px;
    position: relative;
    z-index: 1;
    background: #18201a;
}

.portf .worksec-head {
    margin-bottom: 64px;
}

.portf .worksec-head h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0 0 16px 0;
    background: linear-gradient(110deg, #ADC5A6 0%, #F0F3EF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portf .worksec-head p {
    font-size: 18px;
    line-height: 1.75;
    color: #ADC5A6;
    max-width: 520px;
    letter-spacing: 0.01em;
}

.portf .projgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.portf .projcard {
    background: #1e2a20;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
    transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.portf .projcard::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 0 rgba(107, 149, 62, 0);
    transition: box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.portf .projcard:hover::before {
    box-shadow: inset 0 0 32px 0 rgba(107, 149, 62, 0.13);
}

.portf .projcard:hover {
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
    transform: translateY(-4px);
}

.portf .projcard.featured {
    grid-column: span 2;
    background: #232e25;
}

.portf .cardtop {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.portf .cardcat {
    font-size: 16px;
    color: #6B953E;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.portf .cardnum {
    font-size: 44px;
    line-height: 1.2;
    color: #F0F3EF;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.portf .cardnum sup {
    font-size: 16px;
    color: #6B953E;
    vertical-align: super;
}

.portf .cardh {
    font-size: 24px;
    line-height: 1.5;
    color: #F0F3EF;
    letter-spacing: 0.01em;
    margin: 0;
}

.portf .cardp {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    margin: 0;
}

.portf .cardlink {
    display: inline-block;
    font-size: 16px;
    color: #6B953E;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    letter-spacing: 0.01em;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.portf .cardlink:hover {
    color: #F0F3EF;
    text-decoration-color: #ADC5A6;
}

.portf .cardtags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.portf .ctag {
    font-size: 16px;
    color: #ADC5A6;
    background: #18201a;
    border: 1px solid #2d3d2f;
    border-radius: 3px;
    padding: 4px 8px;
    letter-spacing: 0.01em;
}

.portf .compsec {
    padding: 96px 64px;
    background: #1e2a20;
    position: relative;
    z-index: 1;
}

.portf .compsec-noise {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.portf .compsec-inner {
    position: relative;
    z-index: 1;
}

.portf .comphead {
    margin-bottom: 64px;
    max-width: 640px;
}

.portf .comphead h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0 0 16px 0;
    background: linear-gradient(120deg, #F0F3EF 0%, #6B953E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portf .comphead-intro {
    font-size: 18px;
    line-height: 1.75;
    color: #F0F3EF;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.portf .comphead-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.portf .comphead-body p {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    margin: 0;
}

.portf .batable {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
}

.portf .baside {
    background: #18201a;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 3px 4px -2px rgba(173, 197, 166, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.portf .baside.after {
    background: #232e25;
    border: 1px solid #2d3d2f;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
}

.portf .balabel {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #6B953E;
}

.portf .baside.after .balabel {
    color: #ADC5A6;
}

.portf .bah {
    font-size: 24px;
    line-height: 1.5;
    color: #F0F3EF;
    margin: 0;
    letter-spacing: 0.01em;
}

.portf .balist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portf .balist li {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    padding-left: 16px;
    position: relative;
}

.portf .balist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 1px;
    background: #6B953E;
}

.portf .baside.after .balist li {
    color: #F0F3EF;
}

.portf .baside.after .balist li::before {
    background: #ADC5A6;
    width: 6px;
    height: 2px;
}

.portf .banum {
    font-size: 44px;
    line-height: 1.2;
    color: #6B953E;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.portf .banum sup {
    font-size: 18px;
    color: #ADC5A6;
    vertical-align: super;
}

.portf .thinlines-corner {
    position: absolute;
    top: 32px;
    right: 64px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    z-index: 0;
}

.portf .thinlines-corner span {
    display: block;
    height: 1px;
    background: #ADC5A6;
    opacity: 0.14;
}

.portf .thinlines-corner span:nth-child(1) {
    width: 56px;
}

.portf .thinlines-corner span:nth-child(2) {
    width: 40px;
}

.portf .thinlines-corner span:nth-child(3) {
    width: 72px;
}

.portf .thinlines-corner span:nth-child(4) {
    width: 28px;
}

.portf .thinlines-corner span:nth-child(5) {
    width: 48px;
}

@media (max-width: 1024px) {
    .portf .split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .portf .split-left,
    .portf .split-right {
        padding: 64px 32px;
        justify-content: flex-start;
    }

    .portf .htitle {
        font-size: 44px;
    }

    .portf .projgrid {
        grid-template-columns: 1fr 1fr;
    }

    .portf .projcard.featured {
        grid-column: span 2;
    }

    .portf .worksec,
    .portf .compsec {
        padding: 64px 32px;
    }

    .portf .batable {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .portf .split-left,
    .portf .split-right {
        padding: 64px 16px 32px 16px;
    }

    .portf .htitle {
        font-size: 44px;
    }

    .portf .projgrid {
        grid-template-columns: 1fr;
    }

    .portf .projcard.featured {
        grid-column: span 1;
    }

    .portf .worksec,
    .portf .compsec {
        padding: 64px 16px;
    }

    .portf .numstat {
        flex-direction: column;
        gap: 16px;
    }

    .portf .comphead-body {
        grid-template-columns: 1fr;
    }

    .portf .thinlines-corner {
        right: 16px;
    }
}

@media (max-width: 320px) {
    .portf .htitle {
        font-size: 44px;
    }

    .portf .split-left,
    .portf .split-right {
        padding: 32px 16px;
    }

    .portf .worksec,
    .portf .compsec {
        padding: 32px 16px;
    }
}

.ctpage {
    background: #111412;
    color: #F0F3EF;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.ctpage .grad-text {
    background: linear-gradient(135deg, #6B953E, #ADC5A6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ctpage .wave-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.ctpage .wave-divider svg {
    display: block;
    width: 100%;
}

/* ── BLOCK 1: HERO BAND ── */
.ctpage .band {
    position: relative;
    padding: 64px 96px;
    background: linear-gradient(160deg, #1a2414 0%, #111412 50%, #131a10 100%);
    overflow: hidden;
}

.ctpage .band::before {
    content: '';
    position: absolute;
    top: -64px;
    right: -64px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(107, 149, 62, 0.07);
    pointer-events: none;
}

.ctpage .band::after {
    content: '';
    position: absolute;
    bottom: -96px;
    right: 160px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(173, 197, 166, 0.05);
    pointer-events: none;
}

.ctpage .band-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.ctpage .band-circles span {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(107, 149, 62, 0.12);
}

.ctpage .band-circles span:nth-child(1) {
    width: 180px;
    height: 180px;
    top: -32px;
    left: 40%;
    opacity: 0.6;
}

.ctpage .band-circles span:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 16px;
    left: 43%;
    opacity: 0.4;
}

.ctpage .band-circles span:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 32px;
    left: 46%;
    opacity: 0.25;
}

.ctpage .band-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    max-width: 1440px;
    position: relative;
    z-index: 1;
}

.ctpage .band-left {
    flex: 1 1 0;
}

.ctpage .band-prefix {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.ctpage .band-prefix-shape {
    width: 10px;
    height: 10px;
    background: #6B953E;
    border-radius: 2px;
    transform: rotate(45deg);
    animation: colorshift 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes colorshift {
    0% {
        background: #ADC5A6;
    }

    100% {
        background: #6B953E;
    }
}

.ctpage .band-prefix-label {
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.ctpage .band-h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #F0F3EF 30%, #ADC5A6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ctpage .band-sub {
    font-size: 18px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    max-width: 480px;
    margin: 0;
}

.ctpage .band-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 260px;
}

.ctpage .contact-chip {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(107, 149, 62, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(107, 149, 62, 0.18);
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
    transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ctpage .contact-chip:hover {
    background: rgba(107, 149, 62, 0.14);
    border-color: rgba(107, 149, 62, 0.32);
}

.ctpage .chip-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctpage .chip-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #6B953E;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ctpage .chip-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctpage .chip-label {
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.ctpage .chip-val {
    font-size: 16px;
    color: #F0F3EF;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.45s ease-in-out;
}

.ctpage .chip-val:hover {
    color: #6B953E;
}

.ctpage .chip-val-addr {
    font-size: 16px;
    color: #F0F3EF;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

/* ── BLOCK 2: FORM ── */
.ctpage .formblock {
    padding: 96px 96px;
    background: #111412;
    position: relative;
}

.ctpage .formblock-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    max-width: 1440px;
}

.ctpage .form-left {
    flex: 1 1 0;
}

.ctpage .form-intro-label {
    font-size: 16px;
    color: #6B953E;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 8px;
    display: block;
}

.ctpage .form-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #F0F3EF 20%, #6B953E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ctpage .form-desc {
    font-size: 18px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    margin: 0 0 32px 0;
    max-width: 420px;
}

.ctpage .interest-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.ctpage .interest-label-head {
    font-size: 16px;
    color: #F0F3EF;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 8px;
}

.ctpage .interest-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 3px;
    border: 1px solid rgba(173, 197, 166, 0.12);
    cursor: pointer;
    transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    animation: waveload 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ctpage .interest-item:nth-child(1) {
    animation-delay: 0.05s;
}

.ctpage .interest-item:nth-child(2) {
    animation-delay: 0.12s;
}

.ctpage .interest-item:nth-child(3) {
    animation-delay: 0.19s;
}

.ctpage .interest-item:nth-child(4) {
    animation-delay: 0.26s;
}

.ctpage .interest-item:nth-child(5) {
    animation-delay: 0.33s;
}

@keyframes waveload {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ctpage .interest-item:hover {
    border-color: rgba(107, 149, 62, 0.4);
    background: rgba(107, 149, 62, 0.06);
}

.ctpage .interest-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #6B953E;
    cursor: pointer;
    flex-shrink: 0;
}

.ctpage .interest-item-text {
    font-size: 16px;
    color: #F0F3EF;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.ctpage .interest-item-sub {
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin-left: auto;
}

.ctpage .form-right {
    flex: 0 0 38%;
    max-width: 480px;
}

.ctpage .form-card {
    background: rgba(107, 149, 62, 0.06);
    border: 1px solid rgba(107, 149, 62, 0.16);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
}

.ctpage .form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.ctpage .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctpage .field-lbl {
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.02em;
    line-height: 1.5;
    font-weight: 700;
}

.ctpage .field-inp {
    background: rgba(240, 243, 239, 0.04);
    border: 1px solid rgba(173, 197, 166, 0.18);
    border-radius: 3px;
    padding: 12px 16px;
    font-size: 16px;
    color: #F0F3EF;
    letter-spacing: 0.01em;
    line-height: 1.5;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: inset 0 2px 6px rgba(107, 149, 62, 0.04);
}

.ctpage .field-inp::placeholder {
    font-style: italic;
    opacity: 0.55;
    color: #ADC5A6;
}

.ctpage .field-inp:focus {
    border-color: rgba(107, 149, 62, 0.55);
    box-shadow: inset 0 2px 6px rgba(107, 149, 62, 0.07), 0 3px 4px -2px rgba(107, 149, 62, 0.06);
}

.ctpage .form-divider {
    height: 1px;
    background: rgba(173, 197, 166, 0.12);
    margin-bottom: 24px;
}

.ctpage .checkboxes-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.ctpage .cb-head {
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.02em;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 4px;
}

.ctpage .cb-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.ctpage .cb-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #6B953E;
    cursor: pointer;
    flex-shrink: 0;
}

.ctpage .cb-row-label {
    font-size: 16px;
    color: #F0F3EF;
    letter-spacing: 0.01em;
    line-height: 1.5;
    cursor: pointer;
}

.ctpage .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    padding: 12px 16px;
    border-radius: 3px;
    background: rgba(107, 149, 62, 0.05);
    border: 1px solid rgba(107, 149, 62, 0.12);
}

.ctpage .privacy-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #6B953E;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 3px;
}

.ctpage .privacy-text {
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.ctpage .privacy-link {
    color: #6B953E;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.45s ease-in-out;
}

.ctpage .privacy-link:hover {
    color: #ADC5A6;
}

.ctpage .submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: #6B953E;
    color: #111412;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
    transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.18s ease-in-out;
}

.ctpage .submit-btn:hover {
    background: #ADC5A6;
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
}

.ctpage .submit-btn:active {
    transform: scale(0.97);
}

.ctpage .submit-btn:focus-visible {
    outline: 2px solid #6B953E;
    outline-offset: 3px;
}

/* ── BLOCK 3: MESH DETAIL ── */
.ctpage .detailblock {
    padding: 96px 96px 64px;
    position: relative;
    background: linear-gradient(160deg, #131a10 0%, #1a2414 40%, #111d0e 70%, #111412 100%);
    overflow: hidden;
}

.ctpage .detailblock-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.ctpage .detailblock-circles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(107, 149, 62, 0.04);
}

.ctpage .detailblock-circles span:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -80px;
}

.ctpage .detailblock-circles span:nth-child(2) {
    width: 280px;
    height: 280px;
    top: -40px;
    right: 40px;
    background: rgba(173, 197, 166, 0.03);
}

.ctpage .detailblock-circles span:nth-child(3) {
    width: 180px;
    height: 180px;
    top: 20px;
    right: 120px;
    background: rgba(107, 149, 62, 0.03);
}

.ctpage .detail-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.ctpage .detail-main {
    flex: 1 1 0;
}

.ctpage .detail-h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #ADC5A6 0%, #F0F3EF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ctpage .detail-intro {
    font-size: 18px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    margin: 0 0 32px 0;
    max-width: 520px;
}

.ctpage .detail-cols {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.ctpage .detail-col {
    flex: 1 1 0;
}

.ctpage .detail-col-p {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    margin: 0;
}

.ctpage .detail-sidebar {
    flex: 0 0 33.33%;
    max-width: 380px;
}

.ctpage .feature-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctpage .feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 3px;
    border: 1px solid rgba(173, 197, 166, 0.1);
    transition: border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    animation: waveload 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ctpage .feature-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.ctpage .feature-item:nth-child(1) {
    animation-delay: 0.08s;
}

.ctpage .feature-item:nth-child(2) {
    animation-delay: 0.16s;
}

.ctpage .feature-item:nth-child(3) {
    animation-delay: 0.24s;
}

.ctpage .feature-item:nth-child(4) {
    animation-delay: 0.32s;
}

.ctpage .feature-item:hover {
    border-color: rgba(107, 149, 62, 0.3);
    background: rgba(107, 149, 62, 0.05);
}

.ctpage .feat-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctpage .feat-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #6B953E;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ctpage .feat-body {
    flex: 1 1 0;
}

.ctpage .feat-title {
    font-size: 16px;
    color: #F0F3EF;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin: 0 0 4px 0;
}

.ctpage .feat-desc {
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin: 0;
}

.ctpage .img-panel {
    margin-top: 64px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
    width: 100%;
    height: 320px;
}

.ctpage .img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(0.8);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center center;
}

.ctpage .img-panel:hover img {
    transform: translateX(-3%);
    filter: saturate(0.8) brightness(0.9);
}

.ctpage .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 20, 18, 0.6) 0%, rgba(107, 149, 62, 0.08) 100%);
    border-radius: 12px;
    pointer-events: none;
}

.ctpage .img-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 16px;
    color: #F0F3EF;
    letter-spacing: 0.02em;
    line-height: 1.5;
    pointer-events: none;
}

.ctpage .img-caption-sup {
    font-size: 16px;
    color: #6B953E;
    vertical-align: super;
    font-size: 12px;
    letter-spacing: 0.02em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .ctpage .band {
        padding: 64px 32px;
    }

    .ctpage .band-layout {
        flex-direction: column;
        gap: 32px;
    }

    .ctpage .band-h1 {
        font-size: 44px;
    }

    .ctpage .formblock {
        padding: 64px 32px;
    }

    .ctpage .formblock-layout {
        flex-direction: column;
        gap: 32px;
    }

    .ctpage .form-right {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }

    .ctpage .detailblock {
        padding: 64px 32px;
    }

    .ctpage .detail-layout {
        flex-direction: column;
        gap: 32px;
    }

    .ctpage .detail-sidebar {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }

    .ctpage .detail-cols {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .ctpage .band {
        padding: 32px 16px;
    }

    .ctpage .band-h1 {
        font-size: 44px;
    }

    .ctpage .formblock {
        padding: 32px 16px;
    }

    .ctpage .form-card {
        padding: 16px;
    }

    .ctpage .detailblock {
        padding: 32px 16px;
    }

    .ctpage .detail-h2 {
        font-size: 24px;
    }

    .ctpage .form-heading {
        font-size: 24px;
    }

    .ctpage .img-panel {
        height: 220px;
    }

    .ctpage .feature-item:nth-child(odd) {
        flex-direction: row;
    }
}

@media (max-width: 320px) {
    .ctpage .band-h1 {
        font-size: 24px;
    }

    .ctpage .band {
        padding: 32px 8px;
    }

    .ctpage .formblock {
        padding: 32px 8px;
    }

    .ctpage .detailblock {
        padding: 32px 8px;
    }
}

.abpage {
    background: #181c17;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.abpage .bend {
    position: relative;
}

.abpage .bend::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(107, 149, 62, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: spotpulse 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes spotpulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.18);
        opacity: 1;
    }
}

.abpage .bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    padding: 64px 64px 0 64px;
    position: relative;
    z-index: 1;
}

.abpage .bento .imgcell {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
}

.abpage .bento .imgcell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: luminosity;
    filter: contrast(1.08) brightness(0.85);
    transition: filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.abpage .bento .imgcell:hover img {
    filter: contrast(1.0) brightness(1.0);
    mix-blend-mode: normal;
}

.abpage .bento .imgcell .imgover {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(107, 149, 62, 0.18) 0%, rgba(24, 28, 23, 0.55) 100%);
    pointer-events: none;
}

.abpage .bento .imgcell .bracket {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.abpage .bento .imgcell .bracket.tl {
    top: 16px;
    left: 16px;
    border-top: 2px solid #6B953E;
    border-left: 2px solid #6B953E;
    border-radius: 3px 0 0 0;
}

.abpage .bento .imgcell .bracket.br {
    bottom: 16px;
    right: 16px;
    border-bottom: 2px solid #6B953E;
    border-right: 2px solid #6B953E;
    border-radius: 0 0 3px 0;
}

.abpage .bento .tagcell {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    padding: 32px 32px 16px 32px;
    background: #1f2519;
    border-radius: 12px;
    border-right: 3px solid #6B953E;
    box-shadow: 0 3px 4px -2px rgba(107, 149, 62, 0.06);
    position: relative;
}

.abpage .bento .tagcell .supertag {
    font-size: 16px;
    color: #6B953E;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 8px;
    display: block;
}

.abpage .bento .tagcell .supertag sup {
    font-size: 16px;
    vertical-align: super;
    color: #ADC5A6;
}

.abpage .bento .tagcell .mainhead {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    background: linear-gradient(120deg, #6B953E 0%, #ADC5A6 60%, #F0F3EF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.abpage .bento .descell {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    padding: 16px 32px 32px 32px;
    background: #232b1a;
    border-radius: 12px;
    box-shadow: 0 3px 4px -2px rgba(107, 149, 62, 0.06);
}

.abpage .bento .descell .desctext {
    font-size: 18px;
    color: #c8d8c2;
    line-height: 1.75;
    letter-spacing: 0.01em;
    margin: 0;
}

.abpage .curveline {
    display: block;
    width: 100%;
    height: 48px;
    position: relative;
    z-index: 1;
    padding: 0 64px;
    box-sizing: border-box;
}

.abpage .curveline svg {
    width: 100%;
    height: 100%;
}

.abpage .threecols {
    padding: 0 64px 96px 64px;
    position: relative;
    z-index: 1;
}

.abpage .threecols .sharedtop {
    background: #6B953E;
    border-radius: 12px 12px 0 0;
    padding: 16px 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.abpage .threecols .sharedtop .stlabel {
    font-size: 16px;
    color: #181c17;
    letter-spacing: 0.02em;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
}

.abpage .threecols .sharedtop .stline {
    flex: 1;
    height: 2px;
    background: rgba(24, 28, 23, 0.25);
    border-radius: 2px;
}

.abpage .threecols .colrow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.abpage .threecols .colitem {
    padding: 32px;
    background: #1a2013;
    border-top: none;
    transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.abpage .threecols .colitem:first-child {
    border-radius: 0 0 0 12px;
}

.abpage .threecols .colitem:last-child {
    border-radius: 0 0 12px 0;
    border-right: 3px solid #6B953E;
}

.abpage .threecols .colitem:hover {
    background: #1f2a16;
}

.abpage .threecols .colitem .colnum {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    background: linear-gradient(160deg, #6B953E 0%, #ADC5A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.abpage .threecols .colitem .colhead {
    font-size: 18px;
    color: #F0F3EF;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0 0 8px 0;
}

.abpage .threecols .colitem .coltext {
    font-size: 16px;
    color: #9ab08e;
    line-height: 1.75;
    letter-spacing: 0.01em;
    margin: 0;
}

.abpage .splitband {
    background: #F0F3EF;
    position: relative;
}

.abpage .splitband::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #F0F3EF;
    z-index: 0;
}

.abpage .splitband .bandinner {
    position: relative;
    z-index: 1;
    padding: 64px 64px;
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 64px;
    align-items: start;
}

.abpage .splitband .bandleft .bandhead {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    background: linear-gradient(130deg, #2d4a18 0%, #6B953E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 32px 0;
}

.abpage .splitband .bandleft .bandpara {
    font-size: 18px;
    color: #2a3520;
    line-height: 1.75;
    letter-spacing: 0.01em;
    margin: 0 0 16px 0;
}

.abpage .splitband .bandleft .bandpara:last-child {
    margin-bottom: 0;
}

.abpage .splitband .bandleft .twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.abpage .splitband .bandleft .twocol .tcpara {
    font-size: 16px;
    color: #3a4d2c;
    line-height: 1.75;
    letter-spacing: 0.01em;
    margin: 0;
}

.abpage .splitband .bandright {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abpage .splitband .bandright .complist {
    background: #181c17;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
}

.abpage .splitband .bandright .complist .cltitle {
    font-size: 18px;
    color: #ADC5A6;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0 0 16px 0;
}

.abpage .splitband .bandright .complist .clrow {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 8px 16px;
    align-items: center;
}

.abpage .splitband .bandright .complist .clrow .clhdr {
    font-size: 16px;
    color: #6B953E;
    letter-spacing: 0.02em;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 2px solid #2a3520;
}

.abpage .splitband .bandright .complist .clrow .clhdr.center {
    text-align: center;
}

.abpage .splitband .bandright .complist .clrow .clfeature {
    font-size: 16px;
    color: #c8d8c2;
    line-height: 1.5;
    letter-spacing: 0.01em;
    padding: 4px 0;
    border-bottom: 1px solid #1f2a16;
}

.abpage .splitband .bandright .complist .clrow .clcheck {
    text-align: center;
    padding: 4px 0;
    border-bottom: 1px solid #1f2a16;
}

.abpage .splitband .bandright .complist .clrow .tick {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #6B953E;
    position: relative;
}

.abpage .splitband .bandright .complist .clrow .tick::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 7px;
    width: 4px;
    height: 2px;
    border-left: 2px solid #181c17;
    border-bottom: 2px solid #181c17;
    transform: rotate(-45deg) translate(0, -2px);
}

.abpage .splitband .bandright .complist .clrow .cross {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3a2020;
    position: relative;
}

.abpage .splitband .bandright .complist .clrow .cross::before,
.abpage .splitband .bandright .complist .clrow .cross::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 2px;
    background: #c07070;
    border-radius: 2px;
}

.abpage .splitband .bandright .complist .clrow .cross::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.abpage .splitband .bandright .complist .clrow .cross::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.abpage .splitband .bandright .imgcard {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
}

.abpage .splitband .bandright .imgcard img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.abpage .splitband .bandright .imgcard:hover img {
    transform: scale(1.04);
}

.abpage .splitband .bandright .imgcard .capcov {
    position: absolute;
    inset: 0;
    background: rgba(24, 28, 23, 0.75);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.abpage .splitband .bandright .imgcard:hover .capcov {
    opacity: 1;
}

.abpage .splitband .bandright .imgcard .capcov .captext {
    font-size: 16px;
    color: #F0F3EF;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0;
}

.abpage .teamstrip {
    padding: 96px 64px;
    position: relative;
    background: #181c17;
}

.abpage .teamstrip .tshead {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    background: linear-gradient(110deg, #6B953E 0%, #F0F3EF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
}

.abpage .teamstrip .tssub {
    font-size: 18px;
    color: #ADC5A6;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0 0 64px 0;
    max-width: 520px;
}

.abpage .teamstrip .tsgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.abpage .teamstrip .tsgrid .tmcard {
    background: #1a2013;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
    transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    border-right: 3px solid transparent;
}

.abpage .teamstrip .tsgrid .tmcard:hover {
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
    transform: translateY(-4px) perspective(600px) rotateX(1.5deg);
    border-right-color: #6B953E;
}

.abpage .teamstrip .tsgrid .tmcard .imgwrap {
    position: relative;
    overflow: hidden;
}

.abpage .teamstrip .tsgrid .tmcard .imgwrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.abpage .teamstrip .tsgrid .tmcard:hover .imgwrap img {
    transform: scale(1.05);
}

.abpage .teamstrip .tsgrid .tmcard .imgwrap .capcov {
    position: absolute;
    inset: 0;
    background: rgba(24, 28, 23, 0.78);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.abpage .teamstrip .tsgrid .tmcard:hover .imgwrap .capcov {
    opacity: 1;
}

.abpage .teamstrip .tsgrid .tmcard .imgwrap .capcov .captext {
    font-size: 16px;
    color: #F0F3EF;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0;
}

.abpage .teamstrip .tsgrid .tmcard .tminfo {
    padding: 16px 16px 24px 16px;
}

.abpage .teamstrip .tsgrid .tmcard .tminfo .tmname {
    font-size: 18px;
    color: #F0F3EF;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0 0 4px 0;
}

.abpage .teamstrip .tsgrid .tmcard .tminfo .tmrole {
    font-size: 16px;
    color: #6B953E;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin: 0 0 8px 0;
}

.abpage .teamstrip .tsgrid .tmcard .tminfo .tmbio {
    font-size: 16px;
    color: #9ab08e;
    line-height: 1.75;
    letter-spacing: 0.01em;
    margin: 0;
}

.abpage .teamstrip .contactrow {
    margin-top: 64px;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    padding: 32px;
    background: #1f2519;
    border-radius: 12px;
    border-right: 3px solid #6B953E;
    box-shadow: 0 3px 4px -2px rgba(107, 149, 62, 0.06);
}

.abpage .teamstrip .contactrow .critem {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.abpage .teamstrip .contactrow .critem .crlabel {
    font-size: 16px;
    color: #6B953E;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-transform: uppercase;
}

.abpage .teamstrip .contactrow .critem .crval {
    font-size: 18px;
    color: #F0F3EF;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-decoration: none;
    border-bottom: 3px solid #6B953E;
    transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-bottom-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.abpage .teamstrip .contactrow .critem .crval:hover {
    color: #ADC5A6;
    border-bottom-color: #ADC5A6;
}

.abpage .teamstrip .contactrow .crdiv {
    width: 2px;
    height: 48px;
    background: #2a3520;
    border-radius: 2px;
    flex-shrink: 0;
}

.abpage .teamstrip .contactrow .crbtn {
    margin-left: auto;
    display: inline-block;
    padding: 16px 32px;
    background: #6B953E;
    color: #181c17;
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 700;
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
}

.abpage .teamstrip .contactrow .crbtn:hover {
    background: #ADC5A6;
}

.abpage .teamstrip .contactrow .crbtn:active {
    transform: scale(0.97);
}

@media (max-width: 1024px) {
    .abpage .bento {
        padding: 32px 32px 0 32px;
        gap: 16px;
    }

    .abpage .curveline {
        padding: 0 32px;
    }

    .abpage .threecols {
        padding: 0 32px 64px 32px;
    }

    .abpage .splitband .bandinner {
        padding: 64px 32px;
        gap: 32px;
    }

    .abpage .teamstrip {
        padding: 64px 32px;
    }

    .abpage .teamstrip .tsgrid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .abpage .bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 32px 16px 0 16px;
    }

    .abpage .bento .imgcell {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
        height: 260px;
    }

    .abpage .bento .tagcell {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
    }

    .abpage .bento .tagcell .mainhead {
        font-size: 44px;
    }

    .abpage .bento .descell {
        grid-row: 3 / 4;
        grid-column: 1 / 2;
    }

    .abpage .curveline {
        padding: 0 16px;
    }

    .abpage .threecols {
        padding: 0 16px 64px 16px;
    }

    .abpage .threecols .colrow {
        grid-template-columns: 1fr;
    }

    .abpage .threecols .colitem:first-child {
        border-radius: 0;
    }

    .abpage .threecols .colitem:last-child {
        border-radius: 0 0 12px 12px;
    }

    .abpage .splitband .bandinner {
        grid-template-columns: 1fr;
        padding: 32px 16px;
        gap: 32px;
    }

    .abpage .splitband .bandleft .twocol {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .abpage .teamstrip {
        padding: 64px 16px;
    }

    .abpage .teamstrip .tsgrid {
        grid-template-columns: 1fr;
    }

    .abpage .teamstrip .contactrow {
        flex-direction: column;
        align-items: flex-start;
    }

    .abpage .teamstrip .contactrow .crbtn {
        margin-left: 0;
    }

    .abpage .teamstrip .contactrow .crdiv {
        width: 100%;
        height: 2px;
    }
}

@media (max-width: 320px) {
    .abpage .bento .tagcell .mainhead {
        font-size: 44px;
    }

    .abpage .teamstrip .tshead {
        font-size: 24px;
    }
}

.techpg {
    background: #111410;
    color: #F0F3EF;
    overflow-x: clip;
    max-width: 1440px;
    margin: 0 auto;
}

.techpg .divider-asym {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 64px;
}

.techpg .divider-asym .line-long {
    height: 1px;
    flex: 3;
    background: linear-gradient(90deg, #6B953E 0%, #ADC5A6 60%, transparent 100%);
}

.techpg .divider-asym .line-short {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, #ADC5A6 0%, transparent 100%);
}

.techpg .divider-asym .center-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6B953E;
    flex-shrink: 0;
}

.techpg .sup-accent {
    font-size: 16px;
    color: #6B953E;
    vertical-align: super;
    line-height: 1;
    letter-spacing: 0.02em;
}

.techpg .grad-text {
    background: linear-gradient(160deg, #F0F3EF 0%, #6B953E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.techpg .grad-text-sub {
    background: linear-gradient(160deg, #ADC5A6 0%, #6B953E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── SECTION 1: TITLE BLOCK ── */
.techpg .titleblock {
    position: relative;
    padding: 96px 64px 0;
    display: grid;
    grid-template-columns: 1fr;
}

.techpg .titleblock .diag-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 260px;
    height: 260px;
    overflow: hidden;
    pointer-events: none;
}

.techpg .titleblock .diag-lines svg {
    width: 100%;
    height: 100%;
    opacity: 0.07;
}

.techpg .titleblock .upper-area {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 64px;
    align-items: end;
    padding-bottom: 64px;
}

.techpg .titleblock .label-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.techpg .titleblock .label-tag {
    font-size: 16px;
    letter-spacing: 0.02em;
    color: #6B953E;
    border: 1px solid #6B953E;
    border-radius: 2px;
    padding: 4px 16px;
    text-transform: uppercase;
}

.techpg .titleblock .label-num {
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.01em;
}

.techpg .titleblock .main-heading {
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0 0 32px;
}

.techpg .titleblock .sub-para {
    font-size: 18px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    margin: 0;
    max-width: 480px;
}

.techpg .titleblock .right-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: flex-end;
}

.techpg .titleblock .stat-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.techpg .titleblock .stat-item {
    border-left: 3px solid #6B953E;
    border-bottom: 1px solid rgba(107, 149, 62, 0.2);
    padding: 16px 16px 16px 32px;
    border-radius: 0 0 0 2px;
}

.techpg .titleblock .stat-num {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #F0F3EF;
}

.techpg .titleblock .stat-label {
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    margin-top: 4px;
}

.techpg .titleblock .img-lower {
    position: relative;
    width: 100%;
}

.techpg .titleblock .img-wrap {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.techpg .titleblock .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    display: block;
}

.techpg .titleblock .img-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #111410 0%, transparent 55%);
    pointer-events: none;
}

.techpg .titleblock .img-fade-side {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #111410 0%, transparent 30%, transparent 70%, #111410 100%);
    pointer-events: none;
}

.techpg .wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px;
}

.techpg .wave-divider svg {
    display: block;
    width: 100%;
}

/* Cards flip animation */
@keyframes cardFlip {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
    }

    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

.techpg .titleblock .stat-item {
    animation: cardFlip 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.techpg .titleblock .stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.techpg .titleblock .stat-item:nth-child(2) {
    animation-delay: 0.28s;
}

.techpg .titleblock .stat-item:nth-child(3) {
    animation-delay: 0.46s;
}

/* ── SECTION 2: TECH STACK ── */
.techpg .techstack {
    padding: 96px 64px;
    position: relative;
    background: linear-gradient(180deg, #111410 0%, #161a11 60%, #1a2014 100%);
}

.techpg .techstack .chevron-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.techpg .techstack .chevron-bg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.025;
}

.techpg .techstack .grid-outer {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 64px;
    align-items: start;
}

.techpg .techstack .left-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.techpg .techstack .section-label {
    font-size: 16px;
    letter-spacing: 0.02em;
    color: #6B953E;
    text-transform: uppercase;
}

.techpg .techstack .block-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0;
}

.techpg .techstack .intro-full {
    font-size: 18px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    margin: 0;
}

.techpg .techstack .two-col-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 16px;
}

.techpg .techstack .body-para {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    margin: 0;
}

.techpg .techstack .tool-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
    list-style: none;
    padding: 0;
}

.techpg .techstack .tool-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #F0F3EF;
    letter-spacing: 0.01em;
    padding: 16px;
    border-radius: 3px;
    background: rgba(107, 149, 62, 0.06);
    border: 1px solid rgba(107, 149, 62, 0.12);
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.techpg .techstack .tool-list li:hover {
    background: rgba(107, 149, 62, 0.13);
    border-color: rgba(107, 149, 62, 0.28);
}

.techpg .techstack .tool-list .tool-icon {
    width: 32px;
    height: 32px;
    border-radius: 2px;
    background: #6B953E;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.techpg .techstack .tool-list .tool-icon svg {
    width: 18px;
    height: 18px;
    fill: #F0F3EF;
}

.techpg .techstack .tool-name {
    flex: 1;
}

.techpg .techstack .tool-cat {
    font-size: 16px;
    color: #6B953E;
    letter-spacing: 0.01em;
}

/* Spider chart */
.techpg .techstack .right-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.techpg .techstack .chart-wrap {
    background: rgba(107, 149, 62, 0.05);
    border: 1px solid rgba(107, 149, 62, 0.15);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
}

.techpg .techstack .chart-label {
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.techpg .techstack .spider-svg {
    width: 100%;
    height: auto;
    display: block;
}

.techpg .techstack .chart-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.techpg .techstack .legend-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #ADC5A6;
    letter-spacing: 0.01em;
}

.techpg .techstack .legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6B953E;
    flex-shrink: 0;
}

.techpg .techstack .legend-dot.secondary {
    background: #ADC5A6;
}

.techpg .techstack .cta-cluster {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(107, 149, 62, 0.12) 0%, rgba(17, 20, 16, 0) 100%);
    border: 1px solid rgba(107, 149, 62, 0.2);
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
}

.techpg .techstack .cta-cluster .cta-head {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0;
}

.techpg .techstack .cta-cluster .cta-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #ADC5A6;
    letter-spacing: 0.01em;
    margin: 0;
}

.techpg .techstack .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #6B953E;
    color: #F0F3EF;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 3px 4px -2px rgba(107, 149, 62, 0.06);
}

.techpg .techstack .btn-primary:hover {
    background: #7faf4a;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
}

.techpg .techstack .btn-primary:active {
    transform: scale(0.97);
}

.techpg .techstack .btn-primary:focus-visible {
    outline: 2px solid #ADC5A6;
    outline-offset: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .techpg .titleblock {
        padding: 64px 32px 0;
    }

    .techpg .titleblock .upper-area {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .techpg .titleblock .main-heading {
        font-size: 62px;
    }

    .techpg .techstack {
        padding: 64px 32px;
    }

    .techpg .techstack .grid-outer {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .techpg .techstack .two-col-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .techpg .titleblock {
        padding: 64px 16px 0;
    }

    .techpg .titleblock .main-heading {
        font-size: 44px;
    }

    .techpg .titleblock .img-wrap {
        height: 280px;
    }

    .techpg .techstack {
        padding: 64px 16px;
    }

    .techpg .techstack .block-heading {
        font-size: 24px;
    }

    .techpg .techstack .two-col-body {
        grid-template-columns: 1fr;
    }

    .techpg .divider-asym {
        margin-bottom: 32px;
    }
}

@media (max-width: 320px) {
    .techpg .titleblock .main-heading {
        font-size: 24px;
    }

    .techpg .titleblock {
        padding: 32px 16px 0;
    }

    .techpg .techstack {
        padding: 32px 16px;
    }

    .techpg .techstack .chart-wrap {
        padding: 16px;
    }

    .techpg .techstack .cta-cluster {
        padding: 16px;
    }
}

.successPage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #141714;
    padding: 64px 16px;
}

.successPage .successWrap {
    max-width: 560px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.successPage .iconRing {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(160deg, #6B953E 0%, #2a3a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
    flex-shrink: 0;
}

.successPage .iconRing svg {
    width: 40px;
    height: 40px;
    display: block;
}

.successPage .successBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.successPage .successLabel {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6B953E;
    font-weight: 600;
}

.successPage .successHeading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0;
    background: linear-gradient(160deg, #F0F3EF 30%, #ADC5A6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.successPage .successText {
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #ADC5A6;
    max-width: 420px;
    margin: 0;
}

.successPage .successDivider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #6B953E, #ADC5A6);
    border-radius: 2px;
}

.successPage .successMeta {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #7a8f72;
    margin: 0;
}

.successPage .successMeta strong {
    color: #ADC5A6;
    font-weight: 600;
}

.successPage .actionGroup {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.successPage .btnPrimary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(160deg, #6B953E 0%, #4a6b28 100%);
    color: #F0F3EF;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
    transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.successPage .btnPrimary:hover {
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
}

.successPage .btnPrimary:active {
    transform: scale(0.97);
}

.successPage .btnPrimary:focus-visible {
    outline: 2px solid #ADC5A6;
    outline-offset: 3px;
}

.successPage .btnSecondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #ADC5A6;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid #3a4f2e;
    cursor: pointer;
    transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.successPage .btnSecondary:hover {
    border-color: #6B953E;
    color: #F0F3EF;
}

.successPage .btnSecondary:active {
    transform: scale(0.97);
}

.successPage .btnSecondary:focus-visible {
    outline: 2px solid #ADC5A6;
    outline-offset: 3px;
}

.successPage .successNote {
    font-size: 16px;
    line-height: 1.5;
    color: #4d6347;
    letter-spacing: 0.01em;
    margin: 0;
}

.successPage .successNote a {
    color: #ADC5A6;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.5s ease-in-out;
}

.successPage .successNote a:hover {
    color: #F0F3EF;
}

@media (max-width: 768px) {
    .successPage {
        padding: 64px 16px;
    }

    .successPage .successHeading {
        font-size: 44px;
    }

    .successPage .actionGroup {
        flex-direction: column;
        align-items: stretch;
    }

    .successPage .btnPrimary,
    .successPage .btnSecondary {
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .successPage .successHeading {
        font-size: 24px;
    }

    .successPage .iconRing {
        width: 64px;
        height: 64px;
    }

    .successPage .iconRing svg {
        width: 28px;
        height: 28px;
    }
}

.notFound {
    min-height: 100vh;
    background: #111410;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    overflow: hidden;
}

.notFound .codeBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1440px;
    width: 100%;
}

.notFound .codeDisplay {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
}

.notFound .codeDisplay::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6B953E, #ADC5A6, transparent);
}

.notFound .numeral {
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 700;
    background: linear-gradient(160deg, #ADC5A6, #6B953E 60%, #3a5220);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.notFound .numeralMid {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    font-weight: 700;
    background: linear-gradient(160deg, #F0F3EF, #ADC5A6 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 4px;
}

.notFound .statusTag {
    display: inline-block;
    padding: 4px 16px;
    border: 2px solid #6B953E;
    border-radius: 3px;
    color: #6B953E;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: 16px;
}

.notFound .messageBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 560px;
    text-align: center;
    margin-top: 16px;
}

.notFound .pageTitle {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #F0F3EF;
    font-weight: 600;
    margin: 0;
}

.notFound .pageDesc {
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #ADC5A6;
    margin: 0;
}

.notFound .pathNote {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #6B953E;
    background: #1a2212;
    border-radius: 3px;
    padding: 8px 16px;
    font-variant-numeric: tabular-nums;
    border-left: 3px solid #6B953E;
    border-top: 1px solid #2e4a1a;
    border-right: 1px solid #2e4a1a;
    border-bottom: 1px solid #2e4a1a;
}

.notFound .actionRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.notFound .btnPrimary {
    display: inline-block;
    padding: 16px 32px;
    background: #6B953E;
    color: #111410;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 7px 22px -2px rgba(107, 149, 62, 0.09);
    transition: background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease-in-out, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.notFound .btnPrimary:hover {
    background: #7daa4a;
    box-shadow: 0 10px 60px -2px rgba(107, 149, 62, 0.13);
}

.notFound .btnPrimary:active {
    transform: scale(0.97);
}

.notFound .btnPrimary:focus-visible {
    outline: 2px solid #ADC5A6;
    outline-offset: 4px;
}

.notFound .btnSecondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #ADC5A6;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    border: 2px solid #ADC5A6;
    cursor: pointer;
    transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.55s ease-in-out, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.notFound .btnSecondary:hover {
    border-color: #F0F3EF;
    color: #F0F3EF;
}

.notFound .btnSecondary:active {
    transform: scale(0.97);
}

.notFound .btnSecondary:focus-visible {
    outline: 2px solid #6B953E;
    outline-offset: 4px;
}

.notFound .dividerLine {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2e4a1a, transparent);
    margin: 32px 0;
}

.notFound .linkList {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.notFound .linkList li {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.notFound .linkList li a {
    color: #ADC5A6;
    text-decoration: underline;
    text-decoration-color: #6B953E;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: color 0.5s ease-in-out, text-decoration-color 0.5s ease-in-out;
}

.notFound .linkList li a:hover {
    color: #F0F3EF;
    text-decoration-color: #ADC5A6;
}

.notFound .linkList li a:focus-visible {
    outline: 2px solid #6B953E;
    outline-offset: 2px;
    border-radius: 2px;
}

.notFound .decoShape {
    position: absolute;
    top: -64px;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 12px;
    border: 1px solid #2e4a1a;
    pointer-events: none;
    transform: rotate(18deg);
    opacity: 0.35;
    overflow: hidden;
}

.notFound .decoShapeInner {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #6B953E 0%, #111410 100%);
    opacity: 0.18;
}

.notFound .decoShapeB {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border: 1px solid #2e4a1a;
    pointer-events: none;
    transform: rotate(-12deg);
    opacity: 0.25;
    overflow: hidden;
}

.notFound .decoShapeBInner {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #ADC5A6 0%, #111410 100%);
    opacity: 0.2;
}

@media (max-width: 768px) {
    .notFound {
        padding: 64px 16px;
    }

    .notFound .numeral {
        font-size: 62px;
    }

    .notFound .numeralMid {
        font-size: 44px;
    }

    .notFound .pageTitle {
        font-size: 24px;
    }

    .notFound .pageDesc {
        font-size: 16px;
    }

    .notFound .actionRow {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .notFound .btnPrimary,
    .notFound .btnSecondary {
        width: 100%;
        text-align: center;
    }

    .notFound .linkList {
        gap: 16px;
    }

    .notFound .decoShape {
        display: none;
    }

    .notFound .decoShapeB {
        display: none;
    }
}

@media (max-width: 320px) {
    .notFound .numeral {
        font-size: 44px;
    }

    .notFound .numeralMid {
        font-size: 24px;
    }

    .notFound .pageTitle {
        font-size: 18px;
    }
}