:root {
    --navy-deep: #0b1a2b;
    --navy: #10243a;
    --navy-2: #16314f;
    --primary: 215 55% 17%;
    --ivory: #f6f1e7;
    --bg: #fbf8f2;
    --text: #0f1d2e;
    --muted: #5b6677;
    --border: #e7e2d6;
    --gold: #c9a24a;
    --radius: .5rem;
    --gold-2: #b58d36;
    --gold-foreground: #1a1208;
    --shadow-elegant: 0 30px 60px -30px rgba(11, 26, 43, .35);
    --shadow-gold: 0 10px 25px -10px rgba(201, 162, 74, .55);
    --gradient-hero: linear-gradient(135deg, hsl(215 60% 12% / .85) 0%, hsl(215 55% 17% / .65) 50%, hsl(215 50% 22% / .4) 100%);
    --gradient-navy: linear-gradient(160deg, #0b1a2b 0%, #16314f 100%);
    --gradient-gold: linear-gradient(135deg, hsl(38 65% 58%), hsl(32 55% 45%));
    --gradient-subtle: linear-gradient(180deg, hsl(36 33% 97%), hsl(36 25% 94%));
    --muted-foreground: 215 15% 40%;
    --background: 36 33% 97%;
  --foreground: 215 50% 12%;
  --muted-foreground: 215 15% 40%;
  --accent: 38 55% 52%;
  --border: 215 20% 88%;
  --input: 215 20% 88%;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: "Inter", system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01","cv11";
}

img {
    max-width: 100%;
    display: block
}

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

h1,
h2,
h3,
h4 {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 500;
    letter-spacing: -.01em;
    margin: 0;
    line-height: 1
}

p {
    margin: 0
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.4rem;
    border-radius: 3px;
    /* border: 1px solid transparent; */
    font-weight: 500;
    font-size: .95rem;
    cursor: pointer;
    transition: all .2s ease;
    font-family: inherit;
}

.btn-lg {
    padding: 1rem 1.6rem;
    font-size: 1rem
}

.btn-sm {
    padding: .55rem 1rem;
    font-size: .85rem
}

.btn-gold {
    background: var(--gold);
    color: var(--gold-foreground);
    box-shadow: var(--shadow-gold)
}

.btn-gold:hover {
    background: var(--gold-2)
}

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .3)
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .08)
}

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

.btn-navy:hover {
    background: var(--navy-2)
}

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

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

.arrow {
    width: 16px;
    height: 16px
}

/* ---------- Eyebrow ---------- */
.eyebrow {
   /* border: 1px solid #fff; */
   color: hsl(var(--accent));
}

.eyebrow .dash {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold)
}



.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--gold)
}

/* ---------- Header ---------- */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px
}

.brand {
    display: flex;
    align-items: center;
    color: #fff
}

.brand .mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--gradient-gold);
    color: hsl(var(--primary));
    font-family: "Fraunces", serif;
  
    box-shadow: var(--shadow-gold);
}
.nav {
    display: none;
    gap: 2rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, .85)
}

.nav a:hover {
    color: var(--gold)
}

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

.investor-login {
    display: none;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .85);
    font: inherit;
    cursor: pointer;
    font-size: .9rem
}



@media(min-width:1024px) {
    .nav {
        display: flex
    }
}

@media(min-width:640px) {
    .investor-login {
        display: inline-block
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    isolate: isolate;
    overflow: hidden;
    background: var(--navy-deep);
    color: #fff;
    /* display:flex; */
    align-items: center;
}

.hero .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.8;
}

.hero .inner {
    position: relative;
    padding-top: 40px;
    top: 60px;
}


.hero p.lead {
    max-width: 36rem;
    margin-top: 1.5rem;
     color: hsl(var(--background) / .85);
     font-size: 1.25rem;
    line-height: 1.75rem;
}

.hero .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.4rem
}

.stats {
    /* margin-top: 5rem; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(201, 162, 74, .2);
    border: 1px solid rgba(201, 162, 74, .2);
    border-radius: 3px;
    overflow: hidden;
    max-width: 880px;
    backdrop-filter: blur(4px);
}



.stats dt,.stat-heading {
    /* font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: hsl(var(--background) / .7);
    margin: 0 */
    font-weight: 400 !important;
    color: hsl(var(--background) / .7);
      letter-spacing: .05em;
          text-align: center;
    padding-top: 10px;
   
}

.stats dd {
    margin: .5rem 0 0;
    font-family: "Fraunces", serif;
    font-size: 1.8rem
}

@media(min-width:640px) {
    .stats {
        grid-template-columns: repeat(4, 1fr)
    }
}

/* ---------- Section base ---------- */
section {
    padding: 96px 0
}

@media(min-width:1024px) {
    section {
        padding: 128px 0
    }
    section.hero{
        padding: 0;
    }
}

.section-head h2 {
    margin-top: 1.2rem;
    font-size: clamp(2rem, 3.6vw, 3rem)
}

.section-head p {
    margin-top: 1.4rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7
}

/* ---------- Opportunity ---------- */
.opportunity .grid {
    display: grid;
    gap: 3.5rem
}

@media(min-width:1024px) {
    .opportunity .grid {
        grid-template-columns: 5fr 7fr;
        gap: 4rem
    }
}

.opp-item {
    border-top: 1px solid var(--border);
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: baseline
}

.opp-item .num {
    font-family: "Fraunces", serif;
    color: var(--gold)
}

.opp-item h3 {
    font-size: 1.5rem
}

.opp-item p {
    margin-top: .7rem;
    color: var(--muted);
    line-height: 1.7
}

/* ---------- Why invest ---------- */
.why {
    background-color: hsl(var(--primary));
    color: #fff
}

.why .head {
    max-width: 780px
}

.why h2 {
    color: #fff
}

.why-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(177, 176, 175, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.why-grid .cell {
    background-color: hsl(var(--primary));
    padding: 2rem;
    
}

.why-grid .icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border-radius: 3px;
}

.why-grid h3 {
    margin-top: 1.4rem;
    font-size: 1.2rem
}

.why-grid p {
    margin-top: .6rem;
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
    line-height: 1.65
}

@media(min-width:640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .why-grid .cell {
        padding: 2.5rem
    }
}

.why-cta {
    margin-top: 4rem;
    border-top: 1px solid rgba(201, 162, 74, .15);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center
}

.why-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85)
}

@media(min-width:640px) {
    .why-cta {
        flex-direction: row;
        justify-content: space-between;
        text-align: left
    }
}

/* ---------- Fund terms ---------- */
.terms-grid {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.terms-grid .cell {
    background: #fff;
    padding: 1.5rem
}

.terms-grid dt {
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted)
}

.terms-grid dd {
    margin: .5rem 0 0;
    font-family: "Fraunces", serif;
    font-size: 1.2rem
}

@media(min-width:640px) {
    .terms-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.disclaimer-mutted {
    margin-top: 1.6rem;
    font-size: .75rem;
  line-height: 1rem;
   color: hsl(var(--muted-foreground));
}

/* ---------- Leadership ---------- */
.leadership {
    background: #efe9db
}

.leadership .grid {
    display: grid;
    gap: 3.5rem;
    align-items: center
}

@media(min-width:1024px) {
    .leadership .grid {
        grid-template-columns: 5fr 7fr;
        gap: 4rem
    }
}

.portrait-wrap {
    position: relative
}

.portrait-wrap img {
    aspect-ratio: 4/5;
    width: 100%;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: var(--shadow-elegant)
}

.portrait-wrap .accent {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 96px;
    height: 96px;
    border: 2px solid var(--gold);
    display: none;
}

@media(min-width:640px) {
    .portrait-wrap .accent {
        display: block
    }
}

.leadership .actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.leadership p {
    margin-top: 1.4rem;
    color: var(--muted);
    line-height: 1.7
}

/* ---------- FAQ ---------- */
.faq .grid {
    display: grid;
    gap: 3.5rem
}

@media(min-width:1024px) {
    .faq .grid {
        grid-template-columns: 5fr 7fr;
        gap: 4rem
    }
}

.faq details {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0
}

.faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: "Fraunces", serif;
    font-size: 1.15rem;
}

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

.faq summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform .2s
}

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

.faq details p {
    margin-top: 1rem;
    color: var(--muted);
    line-height: 1.7
}

/* ---------- Get started / Form ---------- */
.cta {
    background-color: hsl(var(--primary));
    /* color: #fff */
}

.cta .grid {
    display: grid;
    gap: 3.5rem
}

@media(min-width:1024px) {
    .cta .grid {
        grid-template-columns: 5fr 7fr;
        gap: 4rem
    }
}

.cta h2 {
    /* color: #fff */
}

.cta p.lead {
    margin-top: 1.4rem;
    /* color: rgba(255, 255, 255, .75); */
    line-height: 1.7
}

.contact-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1rem;
    font-size: .92rem
}

.contact-row svg {
    color: var(--gold);
    width: 16px;
    height: 16px
}

.contact-list {
    margin-top: 2.5rem
}

.form {
    border: 1px solid rgba(201, 162, 74, .2);
    background: rgb(255, 255, 255);
    padding: 2rem;
    border-radius: 3px;
    backdrop-filter: blur(6px);
}

@media(min-width:1024px) {
    .form {
        padding: 2.5rem
    }
}

.form .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem
}

@media(min-width:640px) {
    .form .row.two {
        grid-template-columns: 1fr 1fr
    }
}

.field {
    margin-bottom: 1.25rem
}

.field label {
    display: block;
    font-size: .7rem;
    letter-spacing: .18em;
    color: hsl(var(--muted-foreground));
    margin-bottom: .5rem;
    text-transform: uppercase
}

.field input,
.field textarea,.select-field select {
    width: 100%;
    padding: .75rem .9rem;
    background: rgba(255, 255, 255);
    color: #020000;
    border-radius: calc(var(--radius) - 2px);
    font: inherit;
    font-size: .95rem;
}

.field input::placeholder,
.field textarea::placeholder {
    color: hsl(var(--muted-foreground));
}

.field input:focus,
.field textarea:focus,.select-field select:focus {
    outline: none;
    border-color: var(--text)
}

.form .submit {
    margin-top: 1.5rem
}

.form .fineprint {
    margin-top: 1.25rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .6)
}

/* ---------- Footer ---------- */
footer {
    background-color: hsl(var(--primary));
    color: rgba(255, 255, 255, .78);
    border-top: 1px solid rgba(201, 162, 74, .15)
}

footer .grid {
    display: grid;
    gap: 3rem;
    padding: 64px 0
}

@media(min-width:1024px) {
    footer .grid {
        grid-template-columns: 7fr 5fr
    }
}

footer .desc {
    margin-top: 1.25rem;
    max-width: 480px;
    font-size: .9rem;
    line-height: 1.7
}

footer .legal {
    margin-top: 2rem;
    max-width: 560px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7
}

footer h4 {
    font-family: "Fraunces", serif;
    color: #fff;
    font-size: 1rem;
    margin: 0 0 1rem
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    font-size: .9rem
}

footer ul a:hover {
    color: var(--gold)
}

.footer-bottom {
    border-top: 1px solid rgba(201, 162, 74, .15);
    font-size: .75rem;
    color: rgba(255, 255, 255, .55)
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 24px;
    justify-content: space-between
}

@media(min-width:640px) {
    .footer-bottom .container {
        flex-direction: row;
        align-items: center
    }
}
.container-narrow {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.relative {
  position: relative;
}
@media (min-width: 1024px) {
  .container-narrow {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.rounded-md {
  border-radius: calc(var(--radius) - 2px) !important;
}
.justify-between {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.h-20 {
  height: 5rem;
}
.flex {
  display: flex;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.gap-2 {
  gap: .5rem;
}
.tracking-tight {
  letter-spacing: -.025em;
}
.font-serif {
  font-family: serif !important;
}
.font-bold {
  font-weight: 700;
}
.text-primary {
  color: hsl(var(--primary)) !important;
}
.font-semibold {
  font-weight: 600;
}
.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}
.px-3 {
  padding-left: .75rem;
  padding-right: .75rem;
}
.bg-gradient-gold {
  background-image: var(--gradient-gold);
}
.justify-center {
  justify-content: center;
}
.items-center {
  align-items: center;
}
.h-9 {
  height: 2.25rem;
}
.inline-flex {
  display: inline-flex;
}

.gap-3 {
  gap: .75rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.pt-32 {
  padding-top: 8rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.z-10 {
  z-index: 10;
}
.pt-5-5{
    padding-top: 1.6rem;
}
.backdrop-blur {
  --tw-backdrop-blur: blur(8px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.text-background\/90 {
  color: hsl(var(--background) / .9);
}
.tracking-\[0\.18em\] {
  letter-spacing: .18em;
}
.uppercase {
  text-transform: uppercase;
}
.text-xs {
  font-size: .75rem;
  line-height: 1rem;
}
.py-1\.5 {
  padding-top: .375rem;
  padding-bottom: .375rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.bg-background\/10 {
  background-color: hsl(var(--background) / .1);
}
.border-background\/30 {
  border-color: hsl(var(--background) / .3);
}

.rounded-full {
  border-radius: 9999px;
}

.text-balance {
  text-wrap: balance;
}
.text-background {
  color: hsl(var(--background));
}
.leading-\[1\.05\] {
  line-height: 1.05;
}
.font-medium {
  font-weight: 500;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.mt-6 {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: -.025em;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.transition-colors {
  transition-property: color,background-color,border-color,text-decoration-color,fill,stroke;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .15s;
}
.ring-offset-background {
  --tw-ring-offset-color: hsl(var(--background));
}
.shadow-gold {
  --tw-shadow: var(--shadow-gold);
  --tw-shadow-colored: var(--shadow-gold);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.h-11 {
  height: 2.75rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.border-background\/40 {
  border-color: hsl(var(--background) / .4);
}

.whitespace-nowrap {
  white-space: nowrap;
}
.grid-cols-2 {
  grid-template-columns: repeat(2,minmax(0,1fr));
}
@media (min-width: 768px) {
  .md\:grid-cols-4 {
    grid-template-columns: repeat(6,minmax(0,1fr));
  }
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.bg-background\/15 {
  background-color: hsl(var(--background) / .15);
}
.border-background\/15 {
  border-color: hsl(var(--background) / .15);
}
.rounded-xl {
  border-radius: .75rem;
}
.overflow-hidden {
  overflow: hidden;
}
.gap-px {
  gap: 1px;
}

.grid {
  display: grid;
}
.mt-16 {
  margin-top: 4rem;
}
.p-5 {
  padding: 1.25rem;
}
.bg-primary\/40 {
  /* background-color: hsl(var(--primary) / .4); */
}
.text-3xl {
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}
.tracking-\[0\.2em\] {
  letter-spacing: .2em;
}
.uppercase {
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .md\:text-5xl {
    font-size: 3rem !important;
    line-height: 1;
  }
}
.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}
.leading-relaxed {
  line-height: 1.625 !important;
}
.pl-6 {
  padding-left: 1.5rem;
}
.border-accent {
  border-color: hsl(var(--accent));
}
.border-l-2 {
  border-left-width: 2px;
  border-left-style: solid;
}
.gap-6 {
  gap: 1.5rem;
}
.bg-gradient-gold {
  background-image: var(--gradient-gold);
}
.text-2xl {
  font-size: 1.5rem !important;
  line-height: 2rem;
}
.max-w-xl {
  max-width: 36rem;
}

.cell.bg-primary\/40{
     padding: 1.25rem;
}
 #fund-terms {
  background: #f3f4f6;
  padding: 100px 20px;
  text-align: center;
}




#fund-terms .section-head h2 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 12px;
}

 #fund-terms .section-head p {
  font-size: 14px;
  color: #64748b;
  /* max-width: 520px; */
  margin: 0 auto 40px;
}

.terms-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #dbe2ea;
  overflow: hidden;
  text-align: left;
  --tw-shadow: var(--shadow-elegant);
  --tw-shadow-colored: var(--shadow-elegant);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
}

.terms-card .row-flex {
  display: flex;
  padding: 16px 20px;
  border-bottom: 1px solid #e5eaf0;
}
@media (max-width:567px) {
  .terms-card .row-flex {
    display: block !important;
  }
  

}
.terms-card .row:last-child {
  border-bottom: none;
}

.terms-card dt {
  font-weight: 400;
  padding: 3px 30px;
  text-align: left;
}

.terms-card dd {
  font-size: 14px;
  color: #0f172a;
  font-weight: 500;
  margin: 0;
  text-align: left;
}

.disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: #94a3b8;
} 
.tracking-\[0\.2em\] {
  letter-spacing: .2em;
}
.border-input {
  border-color: hsl(var(--input));
  border-width: 1px;
}
.bg-primary {
    background-color: var(--text) !important;
    color: white;
}
.hover\:text-accent-foreground:hover {
  color: hsl(var(--accent-foreground));
}
.hover\:bg-accent:hover {
  background-color: hsl(var(--accent));
}
.border-visible{
    border:1px solid hsl(var(--input));;
}
.bg-background {
  background-color: hsl(var(--background)) !important;
}
.blur-2xl {
  --tw-blur: blur(40px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.opacity-20 {
  opacity: .2;
}
.bg-gradient-gold {
  background-image: var(--gradient-gold);
}
.rounded-2xl {
  border-radius: 1rem;
}
.-inset-4 {
  top: -1rem;
  right: -1rem;
  bottom: -1rem;
  left: -1rem;
}
.absolute {
  position: absolute;
}
.bg-gradient-subtle {
  background-image: var(--gradient-subtle) !important;
}
/* Container spacing */
.custom-accordion {
  max-width: 720px;
  margin: 0 auto;
}

/* Each item */
.custom-accordion .accordion-item {
  background: white;
  border: 1px solid #d9dee5;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

/* Remove default Bootstrap styles */
.custom-accordion .accordion-button {
  background: white;
  box-shadow: none;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
}

/* Remove blue focus */
.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

/* Keep same bg when open */
.custom-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: #0f172a;
}

/* Chevron icon (clean + subtle) */
.custom-accordion .accordion-button::after {
  filter: grayscale(100%);
  opacity: 0.6;
}

/* Body */
.custom-accordion .accordion-body {
  padding: 0 25px 18px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.bg-card {
  background-color: hsl(var(--card)) !important;
}
.rounded-xl {
  border-radius: .75rem !important;
}
.shadow-soft {
  --tw-shadow: var(--shadow-soft) !important;
  --tw-shadow-colored: var(--shadow-soft) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow) !important;
}
.text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}
.hover\:bg-background\/10:hover {
  background-color: hsl(var(--background) / .1);
}
.tracking-wider {
  letter-spacing: .05em;
}
.w-40{
  width: 40%;
}
.w-60{
  width:60%;
}

@media (max-width:567px) {
  .terms-card .row-flex {
    display: block !important;
  }
  .w-40{
    width: 100%;
  }
  .w-60{
    width:100%;
  }
  .terms-card dt {
     padding: 0px !important;
  }
  .investor-login{
    padding: 0px !important;
  }
  .brand .mark{
    width: 15px;
  }
  .header-cta.gap-3{
    gap: 8px !important;
  }
  .brand.gap-2{
     gap: 6px !important;
  }
  .investor-login~a{
    padding: 0px 2px !important;
  }
}
.radio-group label {
    font-size: 1.00rem;
    color: #fff;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    accent-color: var(--light-blue);
    width: 15px;
    height: 15px;
}

.radio-section-label {
    font-size: 1.00rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 7px;
    display: block;
}
.investment-range-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 8px;
}

.investment-range-grid .form-select {
    font-size: 1.0rem;
}
.header-logo{
        width: 250px;
        height: auto;
    }
@media (max-width: 991.98px){
    
    .header-logo{
        width: 140px;
        height: auto;
    }
}
#brand-logos img.img-fluid{
    width: auto !important;
    height: auto;
    max-height: 75px;
}
.as-featured.bg-white{
    opacity: .6;
}
.height-80{
  height: 500px !important;
}
@media (max-width:575px) {
  .height-80{
    height: 600px !important;
  }
}
.hero p.lead.md\:text-2xl {
    max-width: 46rem !important;
    font-size:1.125rem !important ;
    line-height:1.625 !important;
}
.privacy{
  color: #272e38 !important;
}
.privacy p{
  font-size: 1rem;
  line-height: 1.75;
}
.privacy h4{
  color: oklch(28% .05 255) !important;
  border-bottom: 1px solid oklch(88% .015 255) !important;
  margin-top: 3rem;
  margin-bottom: 1rem !important;
  padding-bottom: .5rem !important;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}
.privacy{
  background-color: oklch(97.5% .012 85) !important;
  position: relative;
}
.privacy .eyebrow{
  line-height: 2.4;
}
