:root {
  --bg: #f6fbf6;
  --ink: #0b1e20;
  --muted: #454b54;
  --line: #e1eee4;
  --card: #FFFFFF;
  --accent: #5cd6ff;
  --accent-ink: #fff;
  --accent-2: #0c9b88;
  --radius: 18px;
  --gap: 20px;
  --max: 1100px
}

* {
  box-sizing: border-box
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li,
header,
nav,
main,
footer,
section,
article,
figure,
figcaption {
  margin: 0;
  padding: 0
}

html:focus-within {
  scroll-behavior: smooth
}

body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.65 "Lexend", system-ui,  Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

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

ul {
  list-style: none
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer
}

.bx {
  
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased
}

.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 20px
}

/* pledge */
.pledgeband {
  background: #0C1530;
  color: #E9EFFE
}

.pledgebandinner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px;
  text-align: center
}

.pledgebandtext {
  font: 600 13px/1.4 Urbanist, system-ui
}

.pledgebandtel {
  color: #9CE3D9;
  text-decoration: underline
}

/* header nav centered */
.halonav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line)
}

.halonavbelt {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px
}

.halonavrail {
  display: grid;
  place-items: center
}

.halonavtoggle {
  display: none;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card)
}

.halonavmenu {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center
}

.halonavlink {
  padding: 10px 14px;
  border-radius: 12px;
  font: 700 14px/1 Urbanist, system-ui;
  color: #0b1c20
}

.halonavlink--focus {
  background: var(--ink);
  color: #fff
}

.halonavlink--home {
  border: 1px dashed var(--line)
}

@media (max-width:860px) {
  .halonavtoggle {
    display: inline-flex;
    justify-self: end
  }

  .halonavmenu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 64px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    flex-direction: column;
    gap: 8px;
    display: none;
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(16, 24, 40, .12)
  }

  .halonavmenu.is-open {
    display: flex
  }
}

/* hero */
.introstage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(86vh, 820px);
  text-align: center;
  background-image: url("../arts/promo-bg.webp");
  background-size: cover;
  background-position: center
}

.introstageveil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0b1120a6, #0b112020)
}

.introstagewrap {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 40px 20px
}

.introstagetitle {
  font: 800 clamp(28px, 4.8vw, 54px)/1.1 Urbanist, system-uil;
  color: #5cd6ff;
}

.introstagetext {
  margin-top: 10px;
  color: #ffd503
}

.introstagescroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(124, 92, 255, .35)
}

.introstagescroll:active {
  transform: translateX(-50%) translateY(1px)
}

@media (max-width:400px) {
  .introstagetitle {
    font: 800 clamp(24px, 4.8vw, 54px)/1.1 Urbanist, system-ui;
  }
}

/* perks */
.perktiles {
  padding: 40px 20px
}

.perktilesgrid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr)
}

.perktilescard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  display: grid;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, .06)
}

.perktilesicon {
  font-size: 26px;
  color: var(--accent)
}

.perktileshead {
  font: 800 16px/1.2 Urbanist, system-ui
}

.perktilescopy {
  color: var(--muted)
}

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

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

/* catalog vertical card */
.stackcards {
  padding: 40px 20px;
  background: #F1F3F9;
  border-top: 1px solid var(--line)
}

.stackcardswrap {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  justify-items: center
}

.stackcardstitle {
  font: 800 26px/1.2 Urbanist, system-ui;
  text-align: center
}

.stackcard {
  width: min(720px, 86vw);
  display: grid;
  gap: 14px;
  justify-items: center;
  background: linear-gradient(180deg, #fff, #f9fffd);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(16, 24, 40, .08)
}

.stackcardbrand img {
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 8px;
  background: #fff
}

.stackcardname {
  font: 800 18px/1.2 Urbanist, system-ui;
  text-align: center;
}

.stackcardbonus {
  color: #0E9B86;
  text-align: center;
}

.stackcarddesc {
  color: #395558;
  text-align: center;
  max-width: 56ch
}

.stackcardchips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.stackcardchip {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px dashed #d9f0f0;
  border-radius: 999px;
  padding: 6px 12px;
  color: #2e5051
}

.stackcardcta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(124, 92, 255, .3)
}

.stackcardcta:active {
  transform: translateY(1px)
}

.stackcardrate {
  display: flex;
  gap: 4px;
  color: #FFB703
}

/* contact form on homepage */
.contactplate {
  padding: 50px 20px
}

.contactplatewrap {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center
}

.contactplatetitle {
  font: 800 26px/1.2 Urbanist, system-ui
}

.contactplatesub {
  color: #3b575f
}

.contactplateform {
  width: min(820px, 86vw);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  gap: 14px;
  box-shadow: 0 14px 40px rgba(16, 24, 40, .06)
}

.contactplaterow {
  display: grid;
  gap: 6px;
  text-align: left
}

.contactplatelabel {
  font-weight: 700;
  font-family: Urbanist, system-ui
}

.contactplateinput,
.contactplatearea {
  width: 100%;
  border-radius: 14px;
  background: #FBFCFF;
  border: 1px solid #DDE3EF;
  color: #0b1c20;
  padding: 14px
}

.contactplatearea {
  resize: vertical
}

.contactplateinput:focus-visible,
.contactplatearea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px
}

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

.contactplatecheck {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  accent-color: var(--accent)
}

.contactplateagree-label a {
  color: #5aa8e0;
  text-decoration: underline
}

.contactplatectrl {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap
}

.contactplatesend {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 230px;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--accent), #5aa8e0);
  color: var(--accent-ink);
  border: 1px solid transparent;
  font: 800 14px/1 Urbanist;
  box-shadow: 0 10px 28px rgba(90, 224, 224, 0.35)
}

.contactplatesend:active {
  transform: translateY(1px)
}

.contactplatestatus {
  font-size: 14px;
  color: #3b595f
}

/* disclaimer / responsible */
.cautionhub {
  padding: 44px 20px;
  background: #FFFFFF;
  border-top: 1px solid var(--line)
}

.cautionhubwrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center
}

.cautionhubtitle {
  font: 800 24px/1.2 Urbanist, system-ui
}

.cautionhubtext p {
  color: #3b5f5f
}

.cautionhubbullets {
  display: grid;
  gap: 6px;
  color: #2e4751;
  justify-items: center
}

.cautionhublinks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center
}

.cautionhublink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6c9ec2;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px 10px
}

/* footer */
.footnotepad {
  border-top: 1px solid var(--line);
  background: #F6F9FBe8
}

.footnotepadgrid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr .8fr;
  padding: 24px 20px
}

.footnotepadhead {
  font: 800 16px/1.2 Urbanist
}

.footnotepadcopy,
.footnotepadnote {
  color: #3b575f
}

.footnotepadlinks {
  display: grid;
  gap: 8px;
  justify-items: end
}

.footnotepadlink {
  color: #2e4851
}

.footnotepadage {
  display: flex;
  justify-content: center
}

.footnotepadchip {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  color: #2e4851
}

.footnotepadtail {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  border-top: 1px dashed var(--line);
  color: #4a686b
}

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

  .footnotepadlinks {
    justify-items: start
  }
}

/* cookie */
.cookiepad {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none
}

.cookiepadbox {
  width: min(780px, 94vw);
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 20px 50px rgba(16, 24, 40, .12)
}

.cookiepadicon {
  font-size: 22px;
  color: #ffd503
}

.cookiepadtitle {
  font: 800 16px/1.2 Urbanist
}

.cookiepadtext {
  color: #3b455f
}

.cookiepadctrl {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.cookiepadbtn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff
}

.cookiepadbtnaccept {
  background: var(--accent);
  border-color: transparent;
  color: #fff
}

.cookiepad.show {
  display: block
}

/* age modal */
.agemodal {
  position: fixed;
  inset: 0;
  background: #0b1120cc;
  backdrop-filter: blur(4px);
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px
}

.agemodalbox {
  width: min(760px, 86vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.299)
}

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

.agemodalglyph {
  font-size: 24px;
  color: #5aa8e0
}

.agemodaltitle {
  font: 800 20px/1.2 Urbanist
}

.agemodaltext {
  color: #3b585f
}

.agemodalrefs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: center;
  justify-items: center
}

.agemodalrefs a img {
  background: #5aa8e0;
  padding: 5px;
  border-radius: 3px;
}

.agemodalctrl {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.agemodalbtn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff
}

.agemodalbtnallow {
  background: var(--accent);
  border-color: transparent;
  color: #fff
}

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

/* thanks modal */
.thanksshell {
  position: fixed;
  inset: 0;
  background: #0b1120a6;
  backdrop-filter: blur(4px);
  z-index: 70;
  display: none;
  place-items: center;
  padding: 20px
}

.thanksshellbox {
  width: min(560px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  box-shadow: 0 24px 70px rgba(16, 24, 40, .2)
}

.thanksshellicon {
  font-size: 28px;
  color: #00C2A8
}

.thanksshelltitle {
  font: 800 18px/1.2 Urbanist
}

.thanksshelltext {
  color: #3b455f
}

.thanksshellbtn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff
}

.thanksshell.show {
  display: grid
}