:root {
    --navy: #253d69;
    /* primary deep blue (hero-btn bg) */
    --navy-2: #284492;
    /* link blue */
    --navy-3: #1c2f52;
    --sage: #718736;
    /* olive / sage green */
    --sage-dark: #5a6e2b;
    --gold: #f1c847;
    /* lotus gold accent */
    --gold-soft: #f6dd8f;
    --cream: #f9f5eb;
    /* section background */
    --cream-2: #f8f5ec;
    --ink: #2e3133;
    --muted: #5b6168;
    --line: #e6e3d8;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(37, 61, 105, .06);
    --shadow-md: 0 14px 40px rgba(37, 61, 105, .10);
    --radius: 6px;
    --maxw: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Lora', serif;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 600
}

a {
    color: var(--navy-2);
    text-decoration: none
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px
}

.wrap-sse {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px
}

.eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 12.5px;
    color: var(--sage-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--gold);
    display: inline-block
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: #fff
}

.btn-primary:hover {
    background: var(--navy-3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-3)
}

.btn-gold:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy)
}

.btn-outline:hover {
    background: var(--navy);
    color: #fff
}

.btn-ghost {
    background: #fff;
    color: var(--navy);
    border-color: var(--line)
}

.btn-ghost:hover {
    border-color: var(--navy);
    transform: translateY(-2px)
}

/* ---------- TOP UTILITY BAR ---------- */
.utility {
    background: var(--navy-3);
    color: #dfe6f2;
    font-size: 13px
}

.utility .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
    gap: 18px
}

.utility a {
    color: #dfe6f2
}

.utility .u-left {
    display: flex;
    gap: 20px;
    align-items: center
}

.utility .u-right {
    display: flex;
    gap: 14px;
    align-items: center
}

.utility .pill {
    background: rgba(241, 200, 71, .15);
    color: var(--gold);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .03em
}

@media(max-width:860px) {
    .utility .u-left span:not(.pill) {
        display: none
    }
}

/* ---------- HEADER / NAV ---------- */
header.site {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-mark {
    /* CSS placeholder lotus mark — replace with /assets logo.webp */
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, var(--gold) 0 38%, var(--gold-soft) 40% 60%, #fff 62%);
    position: relative;
    flex: 0 0 auto;
    box-shadow: 0 0 0 1.5px var(--gold) inset;
}

.logo-mark::after {
    content: "";
    position: absolute;
    inset: 13px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--gold), var(--gold-soft), var(--gold));
    opacity: .9
}

.brand-txt b {
    font-family: 'Lora', serif;
    color: var(--navy);
    font-size: 19px;
    font-weight: 700;
    display: block;
    line-height: 1.05
}

.brand-txt span {
    font-size: 10.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 600
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px
}

.menu a {
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 500;
    position: relative;
    padding: 6px 0
}

.menu a:hover,
.menu a.active {
    color: var(--navy)
}

.menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--gold)
}

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    display: block
}

@media(max-width:1040px) {
    .menu {
        display: none
    }

    .hamburger {
        display: flex
    }

    .nav-cta .btn-outline {
        display: none
    }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(28, 47, 82, .94) 0%, rgba(37, 61, 105, .88) 48%, rgba(90, 110, 43, .82) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 39h40M39 0v40' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
}

.hero::before {
    /* connected-nodes motif echoing brand graphics */
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background: radial-gradient(circle at 85% 20%, var(--gold) 0 2px, transparent 3px),
        radial-gradient(circle at 70% 70%, #fff 0 2px, transparent 3px),
        radial-gradient(circle at 92% 55%, #fff 0 1.5px, transparent 3px);
}

.hero .wrap {
    position: relative;
    z-index: 2;
    padding: 78px 24px 86px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .9fr;
    gap: 54px;
    align-items: center
}

.hero .eyebrow {
    color: var(--gold)
}

.hero .eyebrow::before {
    background: var(--gold)
}

.hero h1 {
    color: #fff;
    font-size: clamp(33px, 4.6vw, 54px);
    font-weight: 700;
    letter-spacing: -.01em
}

.hero h1 .hl {
    color: var(--gold)
}

.hero p.lead {
    color: #e8edf6;
    font-size: clamp(16px, 1.5vw, 18.5px);
    margin: 22px 0 30px;
    max-width: 600px
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.reg-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: #eaf0fa;
    backdrop-filter: blur(3px);
}

.reg-badge b {
    color: #fff
}

/* snapshot card in hero */
.snap-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 26px;
    color: var(--ink)
}

.snap-card h3 {
    font-size: 18px;
    margin-bottom: 4px
}

.snap-card .sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px
}

.snap-list {
    display: grid;
    gap: 0
}

.snap-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
    gap: 14px
}

.snap-row:last-child {
    border-bottom: none
}

.snap-row .k {
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 500
}

.snap-row .v {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 16px;
    text-align: right
}

.snap-row .v small {
    display: block;
    font-family: 'Open Sans';
    font-size: 11px;
    color: var(--sage-dark);
    font-weight: 600
}

.tag-80g {
    display: inline-block;
    background: var(--sage);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .04em
}

@media(max-width:880px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

/* ---------- STAT STRIP ---------- */
.stats {
    background: var(--cream);
    border-bottom: 1px solid var(--line)
}

.stats .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0
}

.stat {
    padding: 34px 26px;
    text-align: center;
    border-right: 1px solid var(--line)
}

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

.stat .n {
    font-family: 'Lora', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1
}

.stat .n .u {
    color: var(--gold);
    font-size: 22px
}

.stat .l {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    font-weight: 500
}

@media(max-width:780px) {
    .stats .wrap {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat {
        border-bottom: 1px solid var(--line)
    }

    .stat:nth-child(2) {
        border-right: none
    }
}

/* ---------- SECTION SHELL ---------- */
section.blk {
    padding: 80px 0
}

section.blk.alt {
    background: var(--cream)
}

.sec-head {
    max-width: 760px;
    margin-bottom: 46px
}

.sec-head h2 {
    font-size: clamp(26px, 3vw, 38px)
}

.sec-head p {
    color: var(--muted);
    font-size: 17px;
    margin-top: 14px
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

/* about / project */
.proj-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: start
}

.proj-grid p {
    margin-bottom: 16px;
    color: #3a3f45
}

.proj-card {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    padding: 28px;
    box-shadow: var(--shadow-sm)
}

.proj-card h3 {
    font-size: 18px;
    margin-bottom: 16px
}

.obj-list {
    list-style: none;
    display: grid;
    gap: 14px
}

.obj-list li {
    display: flex;
    gap: 12px;
    font-size: 14.5px;
    color: #3a3f45
}

.obj-list li::before {
    content: "✦";
    color: var(--sage);
    font-size: 14px;
    margin-top: 2px
}

.meta-row {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.meta-chip {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12.5px;
    color: var(--navy);
    font-weight: 600
}

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

/* ZCZP explainer */
.zczp {
    background: linear-gradient(135deg, var(--navy-3), var(--navy));
    color: #eaf0fa;
    border-radius: 16px;
    padding: 48px;
    position: relative;
    overflow: hidden
}

.zczp::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 200, 71, .18), transparent 70%)
}

.zczp h2 {
    color: #fff;
    position: relative
}

.zczp .lead {
    font-size: 18px;
    margin: 16px 0 28px;
    max-width: 720px;
    position: relative
}

.zczp-feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative
}

.zczp-feat {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    padding: 22px
}

.zczp-feat .ic {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--gold);
    color: var(--navy-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Lora';
    margin-bottom: 14px
}

.zczp-feat h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 6px
}

.zczp-feat p {
    font-size: 13.5px;
    color: #cdd7e8
}

@media(max-width:780px) {
    .zczp {
        padding: 32px
    }

    .zczp-feats {
        grid-template-columns: 1fr
    }
}

/* use of proceeds */
.uop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.uop {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 26px;
    transition: transform .2s, box-shadow .2s
}

.uop:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.uop .ic {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    border: 1px solid var(--line)
}

.uop h4 {
    font-size: 16.5px;
    margin-bottom: 8px
}

.uop p {
    font-size: 13.8px;
    color: var(--muted)
}

.finance-bar {
    margin-top: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between
}

.finance-bar .fi {
    text-align: center
}

.finance-bar .fi .n {
    font-family: 'Lora';
    font-size: 24px;
    color: var(--navy);
    font-weight: 700
}

.finance-bar .fi .l {
    font-size: 12.5px;
    color: var(--muted)
}

.finance-bar .arrow {
    color: var(--gold);
    font-size: 22px
}

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

/* impact */
.imp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 34px
}

.imp {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border-top: 3px solid var(--sage);
    box-shadow: var(--shadow-sm)
}

.imp .n {
    font-family: 'Lora';
    font-size: 40px;
    font-weight: 700;
    color: var(--sage-dark);
    line-height: 1
}

.imp .n .r {
    color: var(--navy)
}

.imp .l {
    font-size: 14px;
    color: var(--muted);
    margin-top: 10px
}

.imp-note {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    text-decoration: underline !important;
}

.imp-note:hover {
    color: blue;
    cursor: pointer;
    text-decoration: underline !important;
}

.cred-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px
}

.cred {
    background: var(--cream);
    border-radius: 10px;
    padding: 20px;
    text-align: center
}

.cred .n {
    font-family: 'Lora';
    font-size: 22px;
    color: var(--navy);
    font-weight: 700
}

.cred .l {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 4px
}

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

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

/* who can invest */
.inv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.inv {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.inv .top {
    background: var(--navy);
    color: #fff;
    padding: 18px 22px;
    font-family: 'Lora';
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px
}

.inv .top .cat {
    background: var(--gold);
    color: var(--navy-3);
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex: 0 0 auto
}

.inv ul {
    list-style: none;
    padding: 22px;
    display: grid;
    gap: 11px
}

.inv li {
    font-size: 13.8px;
    color: #3a3f45;
    display: flex;
    gap: 9px
}

.inv li::before {
    content: "›";
    color: var(--sage);
    font-weight: 800
}

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

/* how to invest steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    counter-reset: step
}

.step {
    padding: 0 24px;
    position: relative;
    text-align: center
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 26px;
    right: -2px;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent)
}

.step .num {
    counter-increment: step;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-family: 'Lora';
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px
}

.step .num::before {
    content: counter(step)
}

.step h4 {
    font-size: 16px;
    margin-bottom: 8px
}

.step p {
    font-size: 13.5px;
    color: var(--muted)
}

@media(max-width:840px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .step::after {
        display: none
    }
}

/* timeline */
.tl {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.tl .ev {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 24px;
    position: relative
}

.tl .ev .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(241, 200, 71, .25);
    margin-bottom: 14px
}

.tl .ev .d {
    font-family: 'Lora';
    font-size: 20px;
    color: var(--navy);
    font-weight: 700
}

.tl .ev .l {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px
}

@media(max-width:840px) {
    .tl {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* documents */
.docs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.doc {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px 22px;
    transition: border-color .2s, transform .2s
}

.doc:hover {
    border-color: var(--navy);
    transform: translateY(-2px)
}

.doc .fic {
    width: 46px;
    height: 56px;
    flex: 0 0 auto;
    border-radius: 5px;
    background: var(--cream);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-2);
    font-size: 11px;
    font-weight: 800;
    position: relative
}

.doc .fic::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 12px 12px 0;
    border-style: solid;
    border-color: #fff var(--line)
}

.doc .meta b {
    font-family: 'Lora';
    color: var(--navy);
    font-size: 15.5px;
    display: block
}

.doc .meta span {
    font-size: 12.5px;
    color: var(--muted)
}

.doc .dl {
    margin-left: auto;
    color: var(--navy-2);
    font-weight: 600;
    font-size: 13.5px;
    white-space: nowrap
}

.placeholder-link {
    color: #9aa0a6 !important;
    cursor: not-allowed
}

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

/* FAQ */
.faq {
    max-width: 840px;
    margin: 0 auto
}

.qa {
    border-bottom: 1px solid var(--line)
}

.qa summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 44px 20px 4px;
    font-family: 'Lora';
    font-weight: 600;
    color: var(--navy);
    font-size: 17px;
    position: relative
}

.qa summary::-webkit-details-marker {
    display: none
}

.qa summary::after {
    content: "+";
    position: absolute;
    right: 8px;
    top: 18px;
    font-size: 24px;
    color: var(--gold);
    transition: transform .2s;
    font-family: 'Open Sans'
}

.qa[open] summary::after {
    content: "–"
}

.qa .ans {
    padding: 0 4px 22px;
    color: #3a3f45;
    font-size: 14.8px
}

.qa .ans a {
    font-weight: 600
}

/* CTA / register */
.register {
    background: linear-gradient(120deg, var(--navy-3), var(--navy) 60%, var(--sage-dark));
    color: #fff
}

.register .wrap {
    padding: 70px 24px
}

.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center
}

.register h2 {
    color: #fff;
    font-size: clamp(26px, 3vw, 36px)
}

.register p {
    color: #dfe6f2;
    margin: 16px 0 26px;
    font-size: 16.5px
}

.contact-line {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
    color: #eaf0fa;
    font-size: 14.5px
}

.contact-links {
    color: #fff;
    text-decoration: underline #fff !important;
    font-size: 14.5px;
    cursor: pointer;
}

.contact-line .ic {
    color: var(--gold)
}

.form-card {
    background: #fff;
    border-radius: 14px;
    /* padding: 30px; */
    box-shadow: var(--shadow-md)
}

.form-card h3 {
    font-size: 19px;
    margin-bottom: 4px
}

.form-card .fsub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px
}

.fld {
    margin-bottom: 14px
}

.fld label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px
}

.fld input,
.fld select,
.fld textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-family: 'Open Sans';
    font-size: 14px;
    color: var(--ink);
    background: #fdfdfb
}

.fld input:focus,
.fld select:focus,
.fld textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(37, 61, 105, .08)
}

.form-card .btn {
    width: 100%;
    margin-top: 6px
}

.form-note {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center
}

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

/* disclaimer-sse */
.disclaimer-sse {
    background: var(--cream-2);
    border-top: 1px solid var(--line)
}

.disclaimer-sse .wrap-sse {
    padding: 48px 24px
}

.disclaimer-sse h3 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: .02em
}

.disclaimer-sse p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 12px;
    max-width: 1000px
}