:root {
    --gd: #0D3B12;
    --gm: #1B5E20;
    --gi: #2E7D32;
    --gl: #388E3C;
    --gp: #E8F5E9;
    --go: #F1F8E9;
    --gold: #D4A017;
    --glt: #F0B429;
    --gpale: #FFF8E1;
    --gdk: #9A7010;
    --kb: #111;
    --kr: #BB1600;
    --kg: #006600;
    --kw: #FFF;
    --cream: #F7F5F0;
    --parch: #F0EDE4;
    --slate: #3E4A3A;
    --mist: #E2E8DF;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--cream);
    color: var(--kb);
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

/* FLAG TOP */
.flag-top {
    height: 4px;
    background: linear-gradient(90deg, black 0% 31.33%, white 31.33% 34.33%, red 34.33% 65.66%, white 65.66% 68.66%, green 68.66% 100%);
}

/* UTIL BAR */
.util {
    background: var(--gd);
    color: rgba(255, 255, 255, .65);
    font-size: .71rem;
    letter-spacing: .05em;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(212, 160, 23, .2)
}

.util .i {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .4rem
}

.util .l {
    display: flex;
    align-items: center;
    gap: .5rem
}

.mflag {
    display: inline-flex;
    height: 10px;
    width: 18px;
    border-radius: 1px;
    overflow: hidden
}

.mf {
    flex: 1
}

.mfk {
    background: #000
}

.mfr {
    background: #BB1600
}

.mfg {
    background: #006600
}

.util a {
    color: rgba(212, 160, 23, .8);
    text-decoration: none;
    margin-left: 1rem;
    transition: color .15s
}

.util a:hover {
    color: var(--glt)
}

/* HEADER */
header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 4px solid var(--gm);
    box-shadow: 0 3px 20px rgba(27, 94, 32, .14)
}

.hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 0;
    gap: 1rem
}

.logowrap {
    display: flex;
    align-items: center;
    gap: .9rem;
    text-decoration: none;
    color: inherit
}

.emblems {
    display: flex;
    align-items: center;
    gap: .55rem
}

.parl-svg {
    width: 56px;
    height: 62px;
    flex-shrink: 0
}

.divl {
    width: 1px;
    height: 38px;
    background: rgba(27, 94, 32, .18);
    margin: 0 .15rem
}

.na-svg {
    width: 50px;
    height: 56px;
    flex-shrink: 0
}

.lname {
    font-family: 'Merriweather', serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--gm);
    line-height: 1.1;
    letter-spacing: -.01em
}

.lsub {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gdk);
    display: block;
    margin-top: .12rem
}

.lsub2 {
    font-size: .57rem;
    font-weight: 400;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--slate);
    opacity: .7
}

nav {
    display: flex;
    align-items: center;
    gap: .05rem
}

nav a {
    font-size: .78rem;
    font-weight: 600;
    color: var(--slate);
    text-decoration: none;
    padding: .46rem .76rem;
    border-radius: 3px;
    transition: all .18s
}

nav a:hover,
nav a.on {
    background: var(--gp);
    color: var(--gm)
}

nav a.text {
    color: var(--gm)
}

.ncta {
    background: var(--gm) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: .46rem 1.05rem !important;
    margin-left: .3rem !important;
    border-radius: 3px !important
}

.ncta:hover {
    background: var(--gi) !important
}

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.slider {
    position: relative;
    height: 88vh;
    min-height: 540px;
    overflow: hidden;
    background: var(--gd)
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 1.4s ease;
    z-index: 1
}

.slide.active {
    opacity: 1;
    z-index: 2
}

.sbg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 9s ease
}

.slide.active .sbg {
    transform: scale(1.07)
}

/* text-legibility gradient */
.sov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 59, 18, .2) 0%, rgba(13, 59, 18, .08) 25%, rgba(13, 59, 18, .5) 60%, rgba(13, 59, 18, .92) 100%)
}

.scontent {
    position: relative;
    z-index: 5;
    padding: 0 0 3.2rem;
    width: 100%
}

.seyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(212, 160, 23, .13);
    border: 1px solid rgba(212, 160, 23, .4);
    border-radius: 2px;
    padding: .32rem .85rem;
    margin-bottom: 1.1rem
}

.seyebrow span {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--glt)
}

.sdot-live {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--glt);
    animation: livep 1.8s infinite
}

@keyframes livep {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.slide h2 {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.85rem, 4.2vw, 3.2rem);
    font-weight: 900;
    line-height: 1.12;
    color: #fff;
    letter-spacing: -.02em;
    max-width: 700px;
    margin-bottom: .95rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .45)
}

.slide h2 em {
    font-style: normal;
    color: var(--glt)
}

.slide p {
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, .76);
    max-width: 560px;
    margin-bottom: 1.65rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .3)
}

.sbtns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

/* slider controls */
.sdots {
    position: absolute;
    bottom: 2.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: .5rem
}

.sdot {
    width: 26px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .32);
    border: none;
    cursor: pointer;
    transition: all .3s;
    padding: 0
}

.sdot.on {
    background: var(--gold);
    width: 42px
}

.snavs {
    position: absolute;
    bottom: 2.4rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: .6rem
}

.snb {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .38);
    background: rgba(0, 0, 0, .22);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: all .2s;
    backdrop-filter: blur(4px)
}

.snb:hover {
    background: var(--gm);
    border-color: var(--gm)
}

/* BUTTONS */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gold);
    color: var(--gd);
    font-weight: 700;
    font-size: .87rem;
    padding: .78rem 1.65rem;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(212, 160, 23, .4);
    transition: all .2s
}

.btn-gold:hover {
    background: var(--glt);
    transform: translateY(-1px);
    box-shadow: 0 6px 26px rgba(212, 160, 23, .5)
}

.btn-wo {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: .87rem;
    padding: .76rem 1.65rem;
    border-radius: 3px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .48);
    cursor: pointer;
    transition: all .2s
}

.btn-wo:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .8)
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gm);
    color: #fff;
    font-weight: 700;
    font-size: .87rem;
    padding: .78rem 1.65rem;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s
}

.btn-green:hover {
    background: var(--gi);
    transform: translateY(-1px)
}

/* STATS */
.statsbar {
    background: var(--gd)
}

.statsi {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.sc {
    padding: 1.4rem 1.8rem;
    border-right: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    gap: .9rem
}

.sc:last-child {
    border-right: none
}

.sico {
    font-size: 1.5rem
}

.snum {
    font-family: 'Merriweather', serif;
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--glt);
    display: block;
    line-height: 1
}

.slbl {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-top: .18rem;
    display: block
}

/* MARQUEE */
.mq {
    background: var(--gm);
    padding: .58rem 0;
    overflow: hidden;
    border-bottom: 2px solid var(--gdk)
}

.mqi {
    display: flex;
    gap: 2rem;
    animation: mscroll 40s linear infinite;
    white-space: nowrap
}

@keyframes mscroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.mqt {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .84);
    flex-shrink: 0
}

.mqt::after {
    content: '◆';
    font-size: .38rem;
    color: var(--gold);
    margin-left: .4rem
}

/* SECTIONS */
section {
    padding: 5rem 0
}

.sey {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: .82rem
}

.sey::before {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, black 0% 31.33%, white 31.33% 34.33%, red 34.33% 65.66%, white 65.66% 68.66%, green 68.66% 100%);
    flex-shrink: 0
}

.sey span {
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gm)
}

.stitle {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gd);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: .88rem
}

.sbody {
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    line-height: 1.78;
    color: var(--slate);
    max-width: 560px
}

/* PROCESS */
.procsec {
    background: #fff
}

.pgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem
}

.steps {
    display: flex;
    flex-direction: column
}

.step {
    display: flex;
    gap: 1.25rem;
    padding: 1.4rem 1.1rem;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all .2s;
    border-radius: 0 4px 4px 0
}

.step:hover,
.step.on {
    border-left-color: var(--gm);
    background: rgba(27, 94, 32, .03)
}

.stepn {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Merriweather', serif;
    font-size: .93rem;
    font-weight: 700;
    background: var(--parch);
    color: var(--slate);
    border: 2px solid var(--mist);
    flex-shrink: 0;
    transition: all .2s
}

.step.on .stepn,
.step:hover .stepn {
    background: var(--gm);
    border-color: var(--gm);
    color: #fff
}

.step h4 {
    font-family: 'Merriweather', serif;
    font-size: .97rem;
    font-weight: 700;
    color: var(--gd);
    margin-bottom: .32rem
}

.step p {
    font-size: .82rem;
    line-height: 1.64;
    color: var(--slate)
}

.vpanel {
    background: linear-gradient(150deg, var(--gd) 0%, var(--gm) 60%, #2D5A1B 100%);
    border-radius: 6px;
    padding: 1.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(27, 94, 32, .28)
}

.vpanel::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(212, 160, 23, .07);
    top: -45px;
    right: -45px
}

.chdr {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 1.1rem
}

.aiav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .8rem;
    color: var(--gd);
    flex-shrink: 0
}

.ct {
    font-size: .83rem;
    font-weight: 700;
    color: #fff
}

.cs {
    font-size: .66rem;
    color: rgba(255, 255, 255, .42);
    margin-top: .08rem
}

.bub {
    border-radius: 5px;
    padding: .78rem .9rem;
    margin-bottom: .55rem;
    font-size: .79rem;
    line-height: 1.6;
    max-width: 93%
}

.bub.ai {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .82)
}

.bub.user {
    background: rgba(212, 160, 23, .2);
    color: #FFF8E1;
    margin-left: auto;
    text-align: right
}

.bub strong {
    color: var(--glt)
}

.chin {
    display: flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 5px;
    padding: .58rem .85rem;
    margin-top: .85rem
}

.chin span {
    flex: 1;
    font-size: .76rem;
    color: rgba(255, 255, 255, .28)
}

.sndbtn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    font-size: .75rem;
    color: var(--gd);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.sndbtn:hover {
    background: var(--glt)
}

/* BILLS */
.billssec {
    background: var(--cream)
}

.billshdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem
}

.frow {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap
}

.fp {
    padding: .34rem .86rem;
    border-radius: 20px;
    font-size: .73rem;
    font-weight: 600;
    border: 1.5px solid rgba(27, 94, 32, .18);
    background: #fff;
    color: var(--slate);
    cursor: pointer;
    transition: all .18s
}

.fp:hover,
.fp.on {
    background: var(--gm);
    color: #fff;
    border-color: var(--gm)
}

.bgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem
}

.bc {
    background: #fff;
    border: 1px solid rgba(27, 94, 32, .1);
    border-radius: 5px;
    padding: 1.45rem;
    transition: all .22s;
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.bc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gm), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .32s
}

.bc:hover::before {
    transform: scaleX(1)
}

.bc:hover {
    box-shadow: 0 8px 30px rgba(27, 94, 32, .13);
    transform: translateY(-3px)
}

.bctop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: .82rem
}

.bcat {
    font-size: .61rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gm);
    background: var(--gp);
    padding: .2rem .52rem;
    border-radius: 2px
}

.urg {
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .2rem .52rem;
    border-radius: 2px
}

.uhot {
    background: rgba(187, 22, 0, .1);
    color: #BB1600
}

.umid {
    background: rgba(212, 160, 23, .12);
    color: var(--gdk)
}

.uok {
    background: rgba(0, 102, 0, .09);
    color: #006600
}

.bc h3 {
    font-family: 'Merriweather', serif;
    font-size: .98rem;
    font-weight: 700;
    color: var(--gd);
    line-height: 1.37;
    margin-bottom: .48rem
}

.bc p {
    font-size: .79rem;
    line-height: 1.6;
    color: var(--slate);
    margin-bottom: .85rem
}

.bcf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: .82rem;
    border-top: 1px solid var(--mist);
    font-size: .69rem;
    color: #8A9A85
}

.vr {
    display: flex;
    align-items: center;
    gap: .42rem
}

.vbar {
    width: 48px;
    height: 4px;
    background: var(--mist);
    border-radius: 2px;
    overflow: hidden
}

.vfill {
    height: 100%;
    border-radius: 2px;
    background: var(--kg)
}

/* FEATURES */
.fsec {
    background: var(--gd);
    position: relative;
    overflow: hidden
}

.fsec::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(212, 160, 23, .055) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none
}

.fsec .sey span {
    color: var(--glt)
}

.fsec .sey::before {
    background: linear-gradient(90deg, black 0% 31.33%, white 31.33% 34.33%, red 34.33% 65.66%, white 65.66% 68.66%, green 68.66% 100%);
}

.fsec .stitle {
    color: #fff
}

.fsec .sbody {
    color: rgba(255, 255, 255, .53)
}

.fgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1
}

.fcard {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(212, 160, 23, .14);
    border-radius: 5px;
    padding: 1.75rem;
    transition: all .22s
}

.fcard:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(212, 160, 23, .38);
    transform: translateY(-2px)
}

.fico {
    width: 44px;
    height: 44px;
    border-radius: 5px;
    background: rgba(212, 160, 23, .11);
    border: 1px solid rgba(212, 160, 23, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem
}

.fcard h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.03rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .48rem
}

.fcard p {
    font-size: .81rem;
    line-height: 1.64;
    color: rgba(255, 255, 255, .5)
}

/* GOLD BAND */
.gband {
    background: var(--gold);
    padding: 2.8rem 0
}

.gbgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center
}

.gbnum {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gd);
    display: block;
    line-height: 1
}

.gblbl {
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(13, 59, 18, .58);
    margin-top: .28rem;
    display: block
}

/* ACTIVITY */
.actsec {
    background: #fff
}

.agrid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    margin-top: 2.6rem;
    align-items: start
}

.aitem {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--mist);
    cursor: pointer;
    transition: all .18s
}

.aitem:hover {
    background: var(--parch);
    margin: 0 -.65rem;
    padding: 1rem .65rem
}

.aico {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .92rem;
    flex-shrink: 0
}

.icoai {
    background: rgba(212, 160, 23, .1)
}

.icov {
    background: rgba(27, 94, 32, .08)
}

.icod {
    background: rgba(27, 94, 32, .11)
}

.atxt strong {
    font-size: .85rem;
    color: var(--gd);
    font-weight: 700
}

.atxt p {
    font-size: .77rem;
    color: var(--slate);
    margin-top: .1rem
}

.atime {
    font-size: .66rem;
    color: #A0AA98;
    margin-left: auto;
    white-space: nowrap;
    padding-top: .18rem
}

.scard {
    background: var(--parch);
    border: 1px solid rgba(27, 94, 32, .1);
    border-radius: 5px;
    padding: 1.25rem;
    margin-bottom: 1rem
}

.scard h4 {
    font-family: 'Merriweather', serif;
    font-size: .93rem;
    font-weight: 700;
    color: var(--gd);
    margin-bottom: .95rem
}

.pr {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .52rem;
    font-size: .77rem
}

.pl {
    flex: 1;
    color: var(--slate)
}

.pb {
    flex: 2;
    height: 5px;
    background: var(--mist);
    border-radius: 3px;
    overflow: hidden
}

.pf {
    height: 100%;
    border-radius: 3px
}

.pp {
    font-size: .69rem;
    font-weight: 700;
    color: var(--gd);
    min-width: 26px;
    text-align: right
}

.uitem {
    display: flex;
    gap: .72rem;
    align-items: flex-start;
    margin-bottom: .78rem
}

.ud {
    text-align: center;
    background: var(--gm);
    color: #fff;
    border-radius: 3px;
    padding: .28rem .48rem;
    min-width: 36px;
    flex-shrink: 0
}

.ud .d {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    line-height: 1
}

.ud .m {
    font-size: .52rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    opacity: .7
}

.utxt strong {
    font-size: .79rem;
    color: var(--gd)
}

.utxt p {
    font-size: .7rem;
    color: var(--slate)
}

/* TESTIMONIALS */
.testisec {
    background: var(--parch)
}

.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    margin-top: 3rem
}

.tc {
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(27, 94, 32, .08);
    padding: 1.75rem;
    position: relative
}

.tc::before {
    content: '"';
    font-family: 'Merriweather', serif;
    font-size: 5rem;
    line-height: .7;
    color: var(--gp);
    position: absolute;
    top: .75rem;
    right: 1.1rem;
    pointer-events: none
}

.tctxt {
    font-family: 'Source Serif 4', serif;
    font-size: .87rem;
    line-height: 1.72;
    color: var(--slate);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1
}

.tcauth {
    display: flex;
    align-items: center;
    gap: .75rem
}

.tav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gm), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .83rem;
    color: #fff;
    flex-shrink: 0
}

.tname {
    font-size: .81rem;
    font-weight: 700;
    color: var(--gd)
}

.trole {
    font-size: .68rem;
    color: var(--gdk)
}

/* ARTICLE 118 */
.art118 {
    background: var(--gm);
    padding: 1.7rem 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold)
}

.a118i {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center
}

.a118txt {
    font-family: 'Merriweather', serif;
    font-size: .97rem;
    font-style: italic;
    color: rgba(255, 255, 255, .87);
    max-width: 700px;
    text-align: center
}

.a118txt strong {
    color: var(--glt);
    font-style: normal
}

/* CTA */
.ctasec {
    background: linear-gradient(150deg, var(--gd) 0%, var(--gm) 55%, #1E6823 100%);
    padding: 5.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.ctasec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(212, 160, 23, .08) 0%, transparent 70%)
}

.ctasec .sey {
    justify-content: center
}

.ctasec .sey span {
    color: var(--glt)
}

.ctasec .sey::before {
    background: linear-gradient(90deg, black 0% 31.33%, white 31.33% 34.33%, red 34.33% 65.66%, white 65.66% 68.66%, green 68.66% 100%);
}

.ctasec .stitle {
    color: #fff;
    margin: 0 auto 1rem;
    max-width: 600px;
    text-align: center
}

.ctasec .sbody {
    margin: 0 auto 2.1rem;
    text-align: center;
    color: rgba(255, 255, 255, .6)
}

.ctabtns {
    display: flex;
    gap: .9rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

/* FOOTER */
footer {
    background: #091A0C;
    padding: 4rem 0 2rem
}

.fgrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem
}

.fbdesc {
    font-size: .8rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .36);
    max-width: 250px;
    margin-top: .85rem
}

.fseal {
    display: flex;
    height: 3px;
    width: 68px;
    border-radius: 2px;
    overflow: hidden;
    margin-top: .75rem
}

.fsk {
    flex: 1
}

.fsk-k {
    background: #000
}

.fsk-r {
    background: #BB1600
}

.fsk-g {
    background: #006600
}

.fsk-w {
    background: #fff
}

.hara {
    font-family: 'Merriweather', serif;
    font-size: .86rem;
    font-style: italic;
    color: rgba(212, 160, 23, .42);
    margin-top: .55rem;
    letter-spacing: .05em
}

.fcol h5 {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--gdk);
    margin-bottom: 1rem
}

.fcol a {
    display: block;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    margin-bottom: .5rem;
    transition: color .18s
}

.fcol a:hover {
    color: var(--glt)
}

.fbot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    font-size: .7rem;
    color: rgba(255, 255, 255, .22);
    flex-wrap: wrap;
    gap: 1rem
}

.fbot a {
    color: rgba(255, 255, 255, .28);
    text-decoration: none;
    margin-left: 1.3rem
}

.fbot a:hover {
    color: var(--glt)
}

/* FADE UP */
.fu {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease
}

.fu.in {
    opacity: 1;
    transform: translateY(0)
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .bgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .fgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .statsi {
        grid-template-columns: repeat(2, 1fr)
    }

    .fgrid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .pgrid {
        grid-template-columns: 1fr
    }

    .bgrid {
        grid-template-columns: 1fr
    }

    .fgrid {
        grid-template-columns: 1fr
    }

    .agrid {
        grid-template-columns: 1fr
    }

    .tgrid {
        grid-template-columns: 1fr
    }

    .gbgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    nav {
        display: none
    }

    .fgrid {
        grid-template-columns: 1fr
    }

    .slider {
        height: 72vh
    }
}