/* ==========================================================
   SHOK - Design System
   Ported structure & tokens from jet.bank reference
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700;800&display=swap');

/* ----------  Font Awesome free fallback  ---------- */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* Aliases so `fal`/`far` classes still work with free FA */
.fal, .far { font-family: "Font Awesome 6 Free"; font-weight: 400; }
.fa, .fas  { font-family: "Font Awesome 6 Free"; font-weight: 900; }

/* ----------  Tokens  ---------- */
:root {
  --bg: #efefef;
  --text: #0a0a0a;
  --text-muted: #aaa;
  --text-dim: #8d8f94;
  --text-dark: #0c0c0c;
  --surface: #fff;
  --surface-dark: #0a0a0a;
  --accent: #f15a29;            /* orange - primary brand color */
  --accent-2: #d62027;           /* red - secondary brand color */
  --accent-soft: #ff7a4d;
  --brand-gradient: linear-gradient(-35.3776deg, #d62027 0%, #f15a29 100%);
  --brand-gradient-vertical: linear-gradient(180deg, #f15a29 0%, #d62027 100%);
  --overlay-bg: rgba(0,0,0,.6);
  --glass-bg: rgba(0,0,0,.4);
  --glass-bg-alt: rgba(0,0,0,.3);
  --error: #fe5a5a;
  --step-inactive: #585d59;
  --border-subtle: #eee;
  --shadow-card: 0 2px 10px rgba(0,0,0,.1);
  --shadow-inset-light: inset 1px 1px 2px hsla(0,0%,100%,.4),
                       inset -1px -1px 2px hsla(0,0%,100%,.6);
}

/* ----------  Base  ---------- */
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body { min-height: 100vh; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; }
h1 { font-size: 40px; font-weight: 700; line-height: 1.05; }
h2 { font-size: 24px; font-weight: 700; }
h3 { font-size: 24px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
p  { margin: 0 0 1em; line-height: 1.4; }

/* ----------  Container  ---------- */
.container { margin: 0 6px; }
@media (min-width: 830px) {
  .container { margin: 0 calc(-58.05583px + 7.71757vw); }
}
@media (min-width: 2048px) {
  .container { width: 1848px; margin: 0 auto; }
}

/* ----------  Nav  ---------- */
.chrome-nav {
  background-color: transparent;
  left: 0; top: 0;
  position: fixed;
  transition: background-color .3s ease;
  width: 100vw; z-index: 1000;
}
.chrome-nav.is-open,
.chrome-nav.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.chrome-nav .nav-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 40px 20px 20px;
  transition: padding .3s ease;
}
.chrome-nav.scrolled .nav-container { padding: 16px 20px; }
.chrome-nav .logo {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .3s ease;
  text-decoration: none;
}
.chrome-nav.is-open .logo,
.chrome-nav.scrolled .logo { color: var(--text-dark); }
.chrome-nav .logo .pin { height: 34px; width: auto; flex-shrink: 0; }
.chrome-nav .logo .wordmark {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800; font-size: 24px;
  letter-spacing: -0.04em; line-height: 1;
}

.nav-container-right {
  display: flex; align-items: center; gap: 20px;
  color: #fff; transition: color .3s ease;
}
.chrome-nav.is-open .nav-container-right,
.chrome-nav.scrolled .nav-container-right { color: var(--text-dark); }
.nav-container-right a { font-size: 14px; font-weight: 500; }
.nav-container-right a strong { font-weight: 700; }

.hamburger {
  background: none; border: none;
  width: 48px; height: 36px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  height: 2px; width: 24px;
  background: #fff;
  transition: all .3s ease;
}
.chrome-nav.is-open .hamburger span,
.chrome-nav.scrolled .hamburger span { background: var(--text-dark); }
.chrome-nav.is-open .hamburger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.chrome-nav.is-open .hamburger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.menu-dropdown {
  background: #fff;
  max-height: 0; opacity: 0; visibility: hidden;
  transition: all .5s ease;
  overflow: hidden;
}
.menu-dropdown.is-open {
  max-height: 100vh; opacity: 1; visibility: visible;
}
.nav-links {
  list-style: none; margin: 0;
  padding: 40px 20px 20px;
  display: flex; flex-direction: column; gap: 20px;
}
.nav-links a {
  font-size: 30px; font-weight: 600;
  letter-spacing: -.04em; line-height: .9;
  color: var(--text-dark);
  transition: color .2s ease;
}
.nav-links a:hover { color: #595959; }
@media (min-width: 830px) {
  .nav-links a { font-size: 40px; }
}
.menu-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 20px; display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text-dim); gap: 16px;
  flex-wrap: wrap;
}
.menu-footer a { color: var(--text-dim); }
.menu-footer a:hover { color: var(--accent); }

/* ----------  Hero  ---------- */
.hero-back {
  position: absolute;
  width: 100%;
  height: 90vh;
  background-position: center;
  background-size: cover;
  z-index: -1;
  top: 0; left: 0;
}
@media (min-width: 830px) {
  .hero-back { height: 80vh; min-height: 60vw; }
}
@media (min-width: 2048px) {
  .hero-back { height: 60vh; min-height: 50vw; }
}
.hero { padding: 20px 0 40px; }
.hero-header { color: #fff; padding: 20px; font-weight: 700; }
.hero-header h1 { font-size: 40px; letter-spacing: -0.03em; }
@media (min-width: 830px) {
  .hero-header h1 { font-size: 64px; }
}
@media (min-width: 2048px) {
  .hero-header h1 { font-size: 70px; }
}

/* Hero landing variant (index.html) */
.hero-back-landing {
  background-position: 35% center;
  background-size: cover;
  color: #fff;
  min-height: 100vh;
  padding-bottom: 40px;
  position: relative;
}
.hero-back-landing .container { padding-top: 120px; }
.hero-header-landing {
  color: #fff;
  margin-left: 24px;
  margin-top: 60px;
  max-width: 280px;
}
.hero-header-landing h1 { font-size: 40px; font-weight: 700; margin-bottom: 12px; }
.hero-header-landing p { font-size: 15px; line-height: 1.45; max-width: 320px; }
@media (min-width: 830px) {
  .hero-header-landing { margin-left: 0; margin-top: 100px; max-width: 520px; }
  .hero-header-landing h1 { font-size: 64px; }
  .hero-header-landing p { font-size: 18px; max-width: 440px; }
}

/* ----------  Rows / Layout  ---------- */
.row {
  display: flex; flex-direction: column;
  margin: 16px 16px 0; gap: 16px;
}
.row.bare { margin: 16px 16px 0; }
.row.asidable { margin: 32px 16px 0; }
.row.asidable aside { color: var(--text); }
.row.asidable aside h3 { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.row.asidable aside h4 { font-size: 18px; font-weight: 600; display: flex; gap: 8px; align-items: center; }
.row.asidable aside h4 i { color: var(--accent); }
.row.asidable aside p { font-size: 14px; color: var(--text-dim); margin-bottom: 4px; }
.row.asidable main h2 { font-size: 24px; margin-bottom: 14px; }
.row.asidable main p { font-size: 18px; line-height: 1.45; max-width: 68ch; }
.row.asidable main p.small { font-size: 13px; color: var(--text-dim); margin-top: 20px; }
.row.asidable main p.center-mobile { text-align: center; }

@media (min-width: 830px) {
  .row { flex-direction: row; gap: 16px; margin: 40px 40px 0; }
  .row.bare { margin: 40px 40px 0; }
  .row.asidable { margin: 60px 40px 0; flex-direction: row; gap: 16px; align-items: flex-start; }
  .row.asidable aside { width: 24%; }
  .row.asidable main { width: 64%; }
  .row.asidable aside h3 { font-size: 32px; }
  .row.asidable main h2 { font-size: 32px; }
  .row.asidable main p { font-size: 22px; }
  .row.asidable main p.center-mobile { text-align: left; }
}
.row.half-md > * { width: 100%; }
@media (min-width: 830px) {
  .row.half-md { flex-wrap: wrap; }
  .row.half-md > * { width: calc(50% - 8px); }
}
.row .bottom-divider { border-bottom: 1px solid #ddd; padding-bottom: 32px; }

/* ----------  Buttons  ---------- */
.btn-submit {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  box-shadow: var(--shadow-inset-light);
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 400;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: background-color .3s ease, transform .15s ease;
  text-align: left;
  min-width: 200px;
  text-decoration: none;
}
.btn-submit:hover { background-color: #1a1a1a; }
.btn-submit:active { background-color: var(--accent); color: #000; }
.btn-submit i { color: var(--accent); font-style: normal; font-size: 14px; }
.btn-submit:active i { color: #000; }

.btn-submit.btn-white { background: #fff; color: #000; }
.btn-submit.btn-white:hover { background: #f5f5f5; }
.btn-submit.btn-white i { color: var(--accent); }

.btn-submit.btn-outline {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.4);
  color: #000;
}
.btn-submit.btn-white.btn-outline {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
  background: transparent; color: #fff;
}

.btn-submit.btn-small { padding: 8px 16px; font-size: 14px; min-width: 0; }

a.btn-submit { display: inline-flex; }

/* ----------  Card  ---------- */
.card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.card-head h2 { font-size: 18px; font-weight: 600; }
.card-head h2.icon { display: flex; gap: 10px; align-items: center; }
.card-head h2.icon i.fa, .card-head h2.icon i { color: var(--accent); margin-right: 6px; }
.card-head .post-header {
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.card-body { margin: 1em 0 .4em; position: relative; font-size: 16px; line-height: 1.5; }
.card-body.underscored:after {
  content: ""; display: block;
  width: 4em; height: 2px;
  background: var(--text-muted);
  margin-top: 1em;
}
.card.image {
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  height: 70vw;
  max-height: 730px;
  box-shadow: var(--shadow-card);
}
.card.image.space-top { margin-top: 20px; }

@media (min-width: 830px) {
  .card {
    border-radius: 40px;
    flex-direction: row;
    gap: 2em;
    padding: 40px;
    font-size: 22px;
  }
  .card-head { width: 40%; flex-direction: column; }
  .card-head h2 { font-size: 26px; }
  .card-body { margin: 0; width: 60%; }
  .card.image { height: 40vw; flex-direction: column; }
  .card-body p { font-size: 24px; line-height: 1.4; }
}
@media (min-width: 2048px) {
  .card { font-size: 24px; }
}

/* .card-half – paired cards */
.card-half {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.card-half .card-head { justify-content: space-between; }
.card-half .card-head h2.icon { font-size: 18px; font-weight: 600; }
.card-half .card-head .post-header { font-size: 20px; color: var(--text-muted); font-weight: 700; }
.card-half .card-body { margin: 1em 0 .4em; }
.card-half .card-body.underscored:after {
  content: ""; display: block;
  width: 4em; height: 2px; background: var(--text-muted);
  margin-top: 1em;
}
@media (min-width: 1440px) {
  .card-half { width: calc(50% - 8px); border-radius: 40px; padding: 40px; }
  .card-half .card-head h2.icon { font-size: 26px; }
}

/* ----------  Scrollable (horizontal) list  ---------- */
.scrollable-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  /* CRITICAL: allow vertical page scroll to pass through on touch devices.
     Without this, scrolling up/down on a horizontal list gets trapped. */
  touch-action: pan-y pan-x;
  overscroll-behavior-x: contain;
}
.scrollable-list.centered { justify-content: flex-start; }
.scrollable-list::-webkit-scrollbar { display: none; }
.scrollable-list.is-dragging {
  cursor: grabbing; scroll-snap-type: none; user-select: none;
}
.scrollable-list.is-dragging a,
.scrollable-list.is-dragging img { pointer-events: none; }
.scrollable-list > * { scroll-snap-align: start; flex: 0 0 auto; }

/* Benefit cards (dark glass, small) */
.benefit-item {
  backdrop-filter: blur(20px);
  background-color: var(--glass-bg);
  border-radius: 30px;
  box-shadow: var(--shadow-inset-light);
  color: #fff;
  padding: 30px 28px 50px;
  max-width: 380px;
  width: 85vw;
  text-align: center;
  position: relative;
}
.benefit-item h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.benefit-item p { font-size: 14px; color: #e8e8e8; margin-bottom: 0; }
.benefit-item p strong { color: var(--accent); font-weight: 700; }
.benefit-item .icon {
  position: absolute; bottom: 0; left: 50%;
  transform: translate(-50%, 50%);
  background: #fff; border: 2px solid var(--accent);
  border-radius: 50%;
  width: 2.5em; height: 2.5em;
  display: flex; align-items: center; justify-content: center;
}
.benefit-item .icon i { color: var(--accent); font-size: 18px; }

/* Benefit cards large (with bg image) */
.benefit-item-large {
  position: relative;
  aspect-ratio: 48/64;
  background-size: cover;
  background-position: center;
  background-color: #222;
  border-radius: 24px;
  flex: 0 0 320px;
  width: 80vw;
  max-width: 360px;
  color: #fff;
  overflow: hidden;
  transition: transform .3s ease-out;
}
.benefit-item-large.zoomed { transform: scale(1.06); }
.benefit-item-large > i {
  position: absolute; top: 24px; left: 24px;
  font-size: 32px; color: #fff;
}
.benefit-item-large h2 {
  position: absolute; bottom: 100px; left: 24px; right: 24px;
  font-size: 26px; font-weight: 700; line-height: 1.05;
  letter-spacing: -.02em;
}
.benefit-item-large p {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: #fff; color: #000;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 14px; margin: 0;
  line-height: 1.35;
}
@media (min-width: 830px) {
  .benefit-item-large {
    flex: 0 0 420px; border-radius: 33px;
    max-width: 480px;
  }
  .benefit-item-large h2 { font-size: 32px; bottom: 160px; }
  .benefit-item-large p { font-size: 17px; }
}

/* ----------  Reward / Tier section  ---------- */
.landing-rewards {
  background-size: cover;
  background-position: center;
  margin-top: 2em;
  padding: 30px 0 60px;
  color: #fff;
  position: relative;
}
.landing-rewards .row { margin: 0 8px; }
.landing-rewards .reward-step-details {
  aspect-ratio: 31/34;
  backdrop-filter: blur(20px);
  background: var(--glass-bg-alt);
  border-radius: 22px;
  color: #fff;
  padding: 40px;
  max-width: 300px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  margin: 16px auto;
}
.reward-step-details.visible { display: flex; }
.reward-step-details p { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin: 0; }
.reward-step-details h2 { font-size: 30px; font-weight: 700; margin: 8px 0; }
.reward-step-details .progress-bar {
  display: flex; flex-direction: column; align-items: center;
  margin: 25px 0; gap: 8px;
}
.reward-step-details .progress-bar progress {
  width: 80%; height: 8px; border-radius: 4px;
  -webkit-appearance: none; appearance: none; border: none;
}
.reward-step-details .progress-bar progress::-webkit-progress-bar {
  background: var(--text-dim); border-radius: 4px;
}
.reward-step-details .progress-bar progress::-webkit-progress-value {
  background: var(--accent); border-radius: 4px;
}
.reward-step-details .progress-bar progress::-moz-progress-bar { background: var(--accent); }
.reward-step-details .progress-bar p { font-size: 11px; opacity: .8; }

@media (min-width: 830px) {
  .reward-step-details { aspect-ratio: 47/48; max-width: 473px; }
  .reward-step-details h2 { font-size: 48px; }
  .reward-step-details p { font-size: 14px; }
  .reward-step-details .progress-bar p { font-size: 13px; }
}

.reward-step-item {
  background: var(--glass-bg-alt);
  backdrop-filter: blur(20px);
  border-radius: 40px;
  color: #fff;
  padding: 32px 24px;
  width: 260px;
  flex: 0 0 260px;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.reward-step-item h2 { font-size: 22px; font-weight: 700; }
.reward-step-item p {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--step-inactive);
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 11px; margin: 0;
  text-transform: uppercase; letter-spacing: .1em;
}
.reward-step-item.completed p { background: var(--step-inactive); }
.reward-step-item.current {
  background: #fff; backdrop-filter: none;
}
.reward-step-item.current h2 { color: #000; }
.reward-step-item.current p { background: var(--accent); color: #000; }
.reward-step-item.upcoming p { background: #3d3d3d; }

/* ----------  Registration form (home hero)  ---------- */
#registration-form {
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 30px 24px;
  margin: 40px auto 0;
  max-width: 420px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-inset-light);
  position: relative;  /* in normal flow - scrolls with page */
  z-index: 2;
}
@media (min-width: 830px) {
  /* On desktop, place form to the right of the hero text using grid - still in flow */
  .hero-back-landing .container {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 40px;
    align-items: start;
    padding: 140px 40px 60px;
    margin: 0;
    max-width: none;
  }
  #registration-form {
    margin: 0;
    width: 420px;
    max-width: 420px;
    justify-self: end;
  }
  .hero-header-landing {
    margin: 20px 0 0 0;
    max-width: 540px;
  }
  /* Carousel spans full width under both columns */
  .hero-back-landing .container > .scrollable-list {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
}
#registration-form input[type=text],
#registration-form input[type=email],
#registration-form input[type=tel] {
  border: none; border-radius: 24px;
  padding: 16px 20px; font-size: 14px;
  margin: 0 0 16px; width: 100%;
  font-family: inherit;
  background: #fff;
}
#registration-form input:focus {
  outline: 2px solid var(--accent);
}
#registration-form .error-message {
  color: var(--error);
  font-size: 11px;
  display: none;
  margin: -12px 0 12px 14px;
}
#registration-form .error-message.show { display: block; }
#registration-form .email-suggestion {
  color: #fff;
  font-size: 12px;
  margin: -12px 0 12px 14px;
}
#registration-form .email-suggestion a {
  color: var(--accent); cursor: pointer; font-weight: 600;
}
.checkbox-container {
  display: flex; gap: 10px;
  align-items: flex-start;
  margin: 4px 0 16px;
  color: #fff;
}
.checkbox-container input[type=checkbox] {
  position: absolute;
  opacity: 0; pointer-events: none;
}
.checkbox-container label {
  display: flex; gap: 10px;
  cursor: pointer;
  font-size: 13px; line-height: 1.35;
  align-items: flex-start;
}
.checkbox-container label i.checked { display: none; color: var(--accent); font-size: 20px; }
.checkbox-container label i.unchecked { display: inline-block; color: #fff; font-size: 20px; }
.checkbox-container input:checked + label i.unchecked { display: none; }
.checkbox-container input:checked + label i.checked { display: inline-block; }
.checkbox-container a { color: var(--accent); text-decoration: underline; }

#submit-registration { width: 100%; margin-top: 8px; }

@media (min-width: 830px) {
  #registration-form input[type=text],
  #registration-form input[type=email],
  #registration-form input[type=tel] { font-size: 16px; }
}

/* ----------  Accordion  ---------- */
.accordion-group {
  background: var(--accent);
  border-radius: 24px;
  padding: 16px 20px;
  color: #000;
  margin-top: 20px;
}
.accordion-group.accordion-faq { background: #fff; }
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.accordion-item:last-child { border-bottom: none; }
.accordion-head {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 20px 0;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.accordion-head .pre-header {
  font-size: 14px; font-weight: 600;
  letter-spacing: .05em;
  width: 36px; flex-shrink: 0;
}
.accordion-head .title { flex: 1; }
.accordion-head .status {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 4px; opacity: .7;
}
.accordion-head h2 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.accordion-head .post-header { font-size: 24px; color: #000; }
.accordion-head .post-header i.expanded { display: none; }
.accordion-head .post-header i.contracted { display: inline-block; }
.accordion-item.expanded .accordion-head .post-header i.contracted { display: none; }
.accordion-item.expanded .accordion-head .post-header i.expanded { display: inline-block; }

.accordion-body {
  color: #000; max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out;
  padding-left: 0;
}
.accordion-item.expanded .accordion-body {
  max-height: 2000px;
  transition: max-height .5s ease-in;
  padding-bottom: 20px;
}
.accordion-body p { margin: 0 0 .4em; font-size: 15px; line-height: 1.5; }
.accordion-body ul { margin: 8px 0; padding-left: 24px; }
.accordion-body li { font-size: 15px; line-height: 1.5; }

.accordion-group.accordion-faq .accordion-head h2 { font-weight: 600; font-size: 20px; }

@media (min-width: 830px) {
  .accordion-group { border-radius: 40px; padding: 24px 40px; }
  .accordion-head h2 { font-size: 32px; }
  .accordion-body p, .accordion-body li { font-size: 17px; }
  .accordion-head .pre-header { font-size: 16px; width: 56px; }
}
@media (min-width: 2048px) {
  .accordion-head h2 { font-size: 40px; }
}

.space-top { margin-top: 2em; }
.space-bottom { margin-bottom: 2em; }

/* ----------  Contact block  ---------- */
.light-block {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}
.contact-block {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
}
.contact-block p {
  font-size: 20px; font-weight: 600; margin: 0 0 .6em;
  display: flex; gap: 8px; align-items: center;
}
.contact-block a:hover { color: var(--accent); }
.contact-block .social { margin-top: 24px; border-top: 1px solid #eee; padding-top: 20px; }
.contact-block .social p { font-size: 17px; display: flex; justify-content: space-between; }
.contact-block .social p a { flex: 1; }
.contact-block .social i { color: var(--accent); }
@media (min-width: 830px) {
  .light-block { font-size: 30px; padding: 40px; border-radius: 40px; }
  .contact-block { padding: 40px; border-radius: 40px; }
}

/* ----------  Overlay  ---------- */
.overlay {
  backdrop-filter: blur(5px);
  background: var(--overlay-bg);
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center; align-items: center;
  z-index: 1500;
}
.overlay-content {
  background: #fff;
  border-radius: 40px;
  padding: 32px;
  margin: 40px 28px 0;
  max-width: 500px;
  width: 90vw;
  box-shadow: var(--shadow-inset-light);
  position: relative;
  text-align: center;
}
.overlay-content h1 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.overlay-content p { font-size: 14px; line-height: 1.45; }
.overlay-content a.back {
  display: inline-block;
  margin-bottom: 16px;
  color: #000;
  font-size: 14px;
}
.overlay-content .verification-code-inputs {
  margin: 20px 0;
}
.overlay-content input[type=text] {
  border: 1px solid #000;
  border-radius: 24px;
  padding: 16px 20px;
  font-size: 18px;
  text-align: center;
  width: 100%;
  letter-spacing: .4em;
  font-family: inherit;
  font-weight: 600;
}
.overlay-content img { max-width: 180px; margin: 20px auto; }
@media (min-width: 830px) {
  .overlay-content h1 { font-size: 36px; }
  .overlay-content p { font-size: 18px; }
}

/* ----------  Cookies  ---------- */
#cookies-overlay {
  backdrop-filter: blur(5px);
  background: rgba(0,0,0,.3);
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  display: none;
  justify-content: center; align-items: flex-end;
  z-index: 1000;
}
#cookies-overlay.is-open { display: flex; }
#cookies-panel {
  margin: 16px;
  max-width: 1000px; width: calc(100% - 32px);
  border-radius: 24px;
  background: #fff;
  padding: 24px;
}
#cookies-panel .card-body { margin: 0; display: flex; flex-direction: column; gap: 20px; }
.cookie-paragraph { display: flex; gap: 16px; align-items: center; }
.cookie-paragraph i { font-size: 40px; color: var(--accent); flex-shrink: 0; }
.cookie-paragraph p { margin: 0; font-size: 14px; line-height: 1.45; }
.button-panel {
  display: flex; gap: 12px; flex-wrap: wrap;
}
@media (min-width: 830px) {
  #cookies-panel { padding: 40px; border-radius: 40px; }
  #cookies-panel .card-body { flex-direction: row; gap: 2em; align-items: center; }
  .cookie-paragraph i { font-size: 46px; }
  .cookie-paragraph p { font-size: 16px; }
  .button-panel { flex-direction: column; }
}

/* ----------  Text reveal effect  ---------- */
[data-effect="text-reveal"] span {
  color: var(--text-muted);
  transition: color .2s ease;
}
[data-effect="text-reveal"] span.revealed {
  color: var(--text);
}

/* ----------  Footer  ---------- */
footer {
  background: var(--surface-dark);
  color: var(--text-dim);
  border-radius: 1.2em;
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  margin: 2em 6px;
  padding: 2em;
  position: relative;
}
footer .container { display: flex; flex-direction: column; gap: 24px; margin: 0; }
footer a.logo {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
footer a.logo .pin { height: 28px; width: auto; flex-shrink: 0; }
footer a.logo .wordmark {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800; font-size: 20px;
  letter-spacing: -0.04em; line-height: 1;
  color: #fff;
}
footer nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
footer nav ul a:hover { color: #fff; }
.footer-contact {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.footer-contact a:hover { color: var(--accent); }

@media (min-width: 830px) {
  footer { margin: 2em 20px; padding: 3em 2em; font-size: 15px; }
  footer .container { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
}
@media (min-width: 1440px) {
  footer nav ul { flex-direction: row; gap: 24px; }
}

/* ----------  Helpers  ---------- */
.space-top { margin-top: 2em; }
.space-bottom { margin-bottom: 2em; }
.text-right { text-align: right; }
.center-mobile { text-align: center; }
@media (min-width: 830px) { .center-mobile { text-align: left; } }

/* utility text */
.small { font-size: 13px; color: var(--text-dim); }

/* Long-form article (Referral, Terms pages) */
.article-card .card-body h1 { font-size: 22px; font-weight: 700; margin: 1em 0 .6em; line-height: 1.2; }
.article-card .card-body h3 { font-size: 17px; font-weight: 600; margin: 1.4em 0 .4em; }
.article-card .card-body p { font-size: 15px; line-height: 1.55; }
.article-card .card-body ul { padding-left: 22px; margin: .4em 0 1em; }
.article-card .card-body li { font-size: 15px; line-height: 1.5; margin-bottom: .3em; }
@media (min-width: 830px) {
  .article-card .card-body h1 { font-size: 28px; }
  .article-card .card-body h3 { font-size: 20px; }
  .article-card .card-body p, .article-card .card-body li { font-size: 17px; }
}

.scroll-to-register { cursor: pointer; }

/* Popup */
#popup-container {
  position: fixed; top: 24px; right: 24px; z-index: 2000;
  display: flex; flex-direction: column; gap: 8px;
}
.popup-message {
  background: #fff; border-radius: 20px;
  padding: 14px 18px; box-shadow: 0 4px 20px rgba(0,0,0,.15);
  animation: popupFadeIn .3s ease-out;
  max-width: 360px;
}
.popup-message.error { border-left: 4px solid #b00a0a; }
.popup-message.success { border-left: 4px solid var(--accent); }
@keyframes popupFadeIn {
  0%   { opacity: 0; transform: scale(.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* Hero background (landing subpages) - SHOK brand gradient placeholders */
.hero-bg-about     { background-image: linear-gradient(135deg, #f15a29 0%, #d62027 55%, #2a0608 100%); }
.hero-bg-waitlist  { background-image: linear-gradient(135deg, #1a0203 0%, #d62027 55%, #f15a29 100%); }
.hero-bg-referral  { background-image: linear-gradient(135deg, #f15a29 0%, #d62027 55%, #1a0203 100%); }
.hero-bg-contact   { background-image: linear-gradient(135deg, #3a0509 0%, #f15a29 45%, #0a0a0a 100%); }
.hero-bg-faq       { background-image: linear-gradient(135deg, #f15a29 0%, #3a0509 60%, #080808 100%); }
.hero-bg-terms     { background-image: linear-gradient(135deg, #222 0%, #d62027 55%, #000 100%); }
.hero-bg-home      {
  background-image:
    radial-gradient(circle at 80% 20%, rgba(241,90,41,.55) 0%, transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(214,32,39,.45) 0%, transparent 45%),
    linear-gradient(135deg, #1a0203 0%, #d62027 55%, #080808 100%);
}

/* Card image placeholders */
.card-img-1 { background-image: linear-gradient(120deg, #f15a29 0%, #d62027 100%); }
.card-img-2 { background-image: linear-gradient(120deg, #d62027 0%, #f15a29 100%); }
.card-img-3 { background-image: linear-gradient(120deg, #2a0608 0%, #f15a29 100%); }

/* Benefit large bg placeholders */
.bg-benefit-1 { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), linear-gradient(135deg, #f15a29, #7a1115); }
.bg-benefit-2 { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), linear-gradient(135deg, #d62027, #f15a29); }
.bg-benefit-3 { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), linear-gradient(135deg, #1a0203, #f15a29); }
.bg-benefit-4 { background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)), linear-gradient(135deg, #3a0509, #f15a29); }

/* SHOK logo (pin icon + wordmark) - inline SVG */
.logo {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}
.logo .pin {
  width: 28px;
  height: 38px;
  flex-shrink: 0;
  display: block;
}
.logo .wordmark {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1;
}
footer .logo .pin { width: 24px; height: 32px; }

/* Mobile nav when open - switch text to dark */
.chrome-nav.is-open .nav-container-right a { color: var(--text-dark); }
.chrome-nav.is-open .hamburger span { background: var(--text-dark); }

/* ==========================================================
   LIVE-IT-UP PASS - animations, glows, hover states
   ========================================================== */

/* ---- Hero: guaranteed vibrant animated gradient ---- */
.hero-back-landing {
  background: #080204 !important;
  background-image:
    radial-gradient(ellipse 900px 600px at 75% 20%, rgba(241,90,41,.85), transparent 60%),
    radial-gradient(ellipse 800px 600px at 15% 85%, rgba(214,32,39,.75), transparent 60%),
    radial-gradient(ellipse 500px 400px at 50% 50%, rgba(255,120,60,.35), transparent 70%),
    linear-gradient(135deg, #200406 0%, #7a1215 45%, #0a0a0a 100%) !important;
  background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100% !important;
  background-repeat: no-repeat !important;
  animation: meshShift 18s ease-in-out infinite;
  overflow: hidden;
  position: relative;
}
@keyframes meshShift {
  0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0 0; }
  50%      { background-position: 100% 50%, 0% 50%, 30% 70%, 0 0; }
}

/* Floating glowing orbs behind content */
.hero-back-landing::before,
.hero-back-landing::after {
  content: ''; position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero-back-landing::before {
  width: 560px; height: 560px;
  background: #f15a29;
  top: -120px; right: -140px;
  opacity: .55;
  animation: orbA 14s ease-in-out infinite;
}
.hero-back-landing::after {
  width: 440px; height: 440px;
  background: #d62027;
  bottom: -100px; left: -120px;
  opacity: .5;
  animation: orbB 16s ease-in-out infinite;
}
@keyframes orbA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-60px, 80px) scale(1.15); }
}
@keyframes orbB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(80px, -60px) scale(1.2); }
}
.hero-back-landing > .container { position: relative; z-index: 1; }

/* ---- HUGE gradient-fill headline ---- */
.hero-header-landing h1 {
  font-size: clamp(52px, 9vw, 112px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.045em !important;
  line-height: 0.92 !important;
  margin-bottom: 24px !important;
  background: linear-gradient(180deg, #fff 45%, #ffd1b9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 8px 40px rgba(255,170,130,0.25);
  animation: fadeUp 1s ease-out backwards;
}
.hero-header-landing p {
  color: rgba(255,255,255,.85) !important;
  font-size: clamp(16px, 1.8vw, 19px) !important;
  line-height: 1.55 !important;
  max-width: 500px;
  animation: fadeUp 1.2s .15s ease-out backwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Glass form with glow ---- */
#registration-form {
  background: rgba(20, 6, 8, 0.55) !important;
  backdrop-filter: blur(30px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(160%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 30px 80px rgba(214, 32, 39, 0.35),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.1) !important;
  animation: fadeUp 1.3s .3s ease-out backwards;
}
#registration-form input[type=text],
#registration-form input[type=email],
#registration-form input[type=tel] {
  background: rgba(255,255,255,0.95) !important;
  transition: box-shadow .25s ease, transform .2s ease !important;
}
#registration-form input:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(241,90,41,0.45) !important;
  transform: translateY(-1px);
}

/* ---- Primary button: gradient fill + glow + pulse ---- */
.btn-submit:not(.btn-white):not(.btn-outline) {
  background: linear-gradient(135deg, #f15a29 0%, #d62027 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow:
    0 10px 30px rgba(241, 90, 41, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.25) !important;
  font-weight: 600 !important;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease !important;
  position: relative;
  overflow: hidden;
}
.btn-submit:not(.btn-white):not(.btn-outline):hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 45px rgba(241, 90, 41, 0.6) !important;
  filter: brightness(1.08);
}
.btn-submit:not(.btn-white):not(.btn-outline):active {
  transform: translateY(0) !important;
  background: linear-gradient(135deg, #d62027 0%, #f15a29 100%) !important;
  color: #fff !important;
}
.btn-submit:not(.btn-white):not(.btn-outline) i {
  color: #fff !important;
  opacity: .9;
}
/* Subtle continuous pulse on the main waitlist button */
#submit-registration {
  animation: btnPulse 2.6s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(241,90,41,.45), 0 0 0 0 rgba(241,90,41,.5); }
  50%      { box-shadow: 0 10px 30px rgba(241,90,41,.55), 0 0 0 12px rgba(241,90,41,0); }
}

/* ---- Benefit chips inside hero: warmer glass ---- */
.hero-back-landing .benefit-item {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.1) !important;
  transition: transform .3s ease, border-color .3s ease;
}
.hero-back-landing .benefit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(241,90,41,0.5);
}
.hero-back-landing .benefit-item h2 { color: #fff; }
.hero-back-landing .benefit-item p  { color: rgba(255,255,255,.8); }
.hero-back-landing .benefit-item .icon {
  background: linear-gradient(135deg, #fff 0%, #ffd1b9 100%) !important;
  border-color: #f15a29 !important;
  box-shadow: 0 6px 20px rgba(241,90,41,.45);
}
.hero-back-landing .benefit-item .icon i { color: #d62027 !important; }

/* ---- Cards below the hero: warmer and lively ---- */
.card, .card-half {
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.card:hover, .card-half:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(214,32,39,0.12), 0 4px 12px rgba(0,0,0,0.08);
}
.card-head h2.icon i { color: var(--accent) !important; }

/* Card images - more vivid placeholders */
.card.image {
  position: relative; overflow: hidden;
  box-shadow: 0 30px 60px rgba(214,32,39,0.22);
}
.card.image::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,200,150,.3), transparent 60%);
  pointer-events: none;
}

/* Benefit large cards - richer gradient + hover motion */
.benefit-item-large {
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s;
}
.benefit-item-large:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 70px rgba(214,32,39,0.3);
}
.benefit-item-large > i {
  background: linear-gradient(135deg, #f15a29, #d62027);
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(214,32,39,0.4);
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px !important;
  top: 20px !important; left: 20px !important;
}

/* ---- Landing rewards section (tiers) ---- */
.landing-rewards {
  background: #080204 !important;
  background-image:
    radial-gradient(ellipse 700px 500px at 80% 30%, rgba(241,90,41,.6), transparent 60%),
    radial-gradient(ellipse 600px 400px at 20% 70%, rgba(214,32,39,.55), transparent 60%),
    linear-gradient(135deg, #1a0203 0%, #3a0509 55%, #0a0a0a 100%) !important;
  background-size: cover !important;
  border-radius: 2em;
  margin: 3em 16px !important;
  padding: 60px 0 80px !important;
  overflow: hidden;
  position: relative;
}
.landing-rewards .reward-step-details {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.landing-rewards .reward-step-details h2 {
  background: linear-gradient(180deg, #fff, #ffd1b9);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reward-step-item {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05) !important;
  transition: transform .3s ease, border-color .3s ease;
}
.reward-step-item:hover {
  transform: translateY(-4px);
  border-color: rgba(241,90,41,0.5);
}
.reward-step-item.current {
  background: linear-gradient(135deg, #fff, #ffe4d6) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 20px 50px rgba(241,90,41,0.4) !important;
}
.reward-step-item.current p { background: linear-gradient(135deg, #f15a29, #d62027) !important; color: #fff !important; }

/* ---- Nav: warmer hover on menu items ---- */
.nav-links a { transition: color .2s ease, transform .2s ease; display: inline-block; }
.nav-links a:hover {
  color: var(--accent) !important;
  transform: translateX(8px);
}

/* ---- Section intro animations ---- */
.row, .card, .card-half, .benefit-item-large, .reward-step-item {
  animation: fadeUp .8s ease-out backwards;
}
.row { animation-delay: 0s; }

/* ---- Accordion: brand accent ---- */
.accordion-group { background: linear-gradient(135deg, #f15a29 0%, #d62027 100%) !important; color: #fff; }
.accordion-group.accordion-faq { background: #fff !important; color: #000; }
.accordion-group:not(.accordion-faq) .accordion-head { color: #fff !important; }
.accordion-group:not(.accordion-faq) .accordion-head .post-header { color: #fff !important; }
.accordion-group:not(.accordion-faq) .accordion-body { color: rgba(255,255,255,.95) !important; }
.accordion-group:not(.accordion-faq) .accordion-item { border-color: rgba(255,255,255,0.2); }

/* ---- Footer: give it a brand glow ---- */
footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0203 100%) !important;
  border: 1px solid rgba(241,90,41,.15);
  box-shadow: 0 -8px 40px rgba(214,32,39,.1);
}
footer a:hover { color: var(--accent) !important; }

/* ---- Headline highlight for all subpage heroes ---- */
.hero-header h1 {
  background: linear-gradient(180deg, #fff 40%, #ffd1b9 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.04em !important;
  line-height: 0.95 !important;
  text-shadow: 0 8px 40px rgba(255,170,130,0.25);
}

/* ---- Scroll indicator at hero bottom ---- */
.hero-back-landing::before { z-index: 0; }

/* ---- Cookie banner polish ---- */
#cookies-panel {
  border: 1px solid rgba(241,90,41,.2);
  box-shadow: 0 20px 60px rgba(214,32,39,.15);
}
.cookie-paragraph i {
  background: linear-gradient(135deg, #f15a29, #d62027);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Small polish ---- */
.checkbox-container label a { color: var(--accent) !important; }
.email-suggestion a { color: var(--accent) !important; }
.error-message { color: #ff8a8a !important; }

/* ---- "Seats filling fast" live counter badge (optional) ---- */
.live-counter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 13px; font-weight: 500;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}
.live-counter::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  animation: livePulse 1.5s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.live-counter strong { color: #f15a29; font-weight: 700; }

/* ---- Reduce motion for users who prefer it ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================
   SMOOTHNESS PASS - staggered scroll reveals, parallax, photos
   ========================================================== */

html { scroll-behavior: smooth; }
body { scroll-snap-type: none; }  /* keep free scroll, we just want smoother motion */

/* Scroll-margin so smooth anchors don't get hidden behind fixed nav */
.row, section, footer { scroll-margin-top: 96px; }

/* Card images now lazily reveal real photos with brand-tinted overlay */
.card.image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #2a0608;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.25,.8,.25,1), box-shadow .6s ease;
}
.card.image::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(241,90,41,.18) 0%, transparent 40%),
    linear-gradient(225deg, rgba(214,32,39,.22) 0%, transparent 40%);
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}
.card.image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}
.card.image:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 80px rgba(214,32,39,0.3);
}

/* Photo-backed card variants (override CSS-only gradient placeholders) */
.card-img-friends      { background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1400&q=80&auto=format&fit=crop'); }
.card-img-community    { background-image: url('https://images.unsplash.com/photo-1543807535-eceef0bc6599?w=1400&q=80&auto=format&fit=crop'); }
.card-img-celebration  { background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1400&q=80&auto=format&fit=crop'); }
.card-img-handshake    { background-image: url('https://images.unsplash.com/photo-1531947210326-4b04bbb8b92d?w=1400&q=80&auto=format&fit=crop'); }
.card-img-party        { background-image: url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?w=1400&q=80&auto=format&fit=crop'); }

/* Benefit-large cards also get photo layers */
.benefit-item-large.photo {
  background-size: cover !important;
  background-position: center !important;
}
.benefit-item-large.photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
  border-radius: inherit;
}
.benefit-item-large.photo > i,
.benefit-item-large.photo > h2,
.benefit-item-large.photo > p { position: relative; z-index: 2; }

/* Staggered child reveal - more elegant than "everything fades up at once" */
.row > *,
.scrollable-list > *,
.accordion-group > * {
  transition-delay: calc(var(--stagger, 0) * 80ms);
}

/* ========== NEW: Community photo-grid section ========== */
.community-section {
  padding: 80px 16px 40px;
  text-align: center;
  position: relative;
}
.community-section h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #0a0a0a 40%, #d62027 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.community-section > p {
  font-size: 18px; color: #555;
  max-width: 600px; margin: 0 auto 40px;
  line-height: 1.5;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 830px) {
  .community-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
}
.community-grid .avatar {
  aspect-ratio: 1;
  border-radius: 32%;
  overflow: hidden;
  background: linear-gradient(135deg, #f15a29, #d62027);
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  box-shadow: 0 10px 30px rgba(214,32,39,0.12);
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
  will-change: transform;
}
.community-grid .avatar:nth-child(odd)  { animation: floatA 6s ease-in-out infinite; }
.community-grid .avatar:nth-child(even) { animation: floatB 7s ease-in-out infinite; }
.community-grid .avatar:hover {
  transform: scale(1.08) rotate(-4deg);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(214,32,39,0.3);
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ========== Testimonial cards ========== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0;
}
@media (min-width: 830px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.testimonial {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(241,90,41,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 14px; left: 20px;
  font-size: 60px;
  color: #f15a29;
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(214,32,39,0.12);
}
.testimonial p {
  font-size: 15px; line-height: 1.55;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.testimonial-foot {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(214,32,39,0.2);
}
.testimonial-meta strong {
  display: block; font-size: 14px; font-weight: 700;
}
.testimonial-meta span {
  display: block; font-size: 12px; color: #888;
}

/* ========== Big stat strip ========== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: linear-gradient(135deg, #0a0a0a 0%, #3a0509 100%);
  border-radius: 32px;
  padding: 40px 24px;
  margin: 40px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(241,90,41,0.4), transparent 60%);
  pointer-events: none;
}
.stat-item {
  position: relative; z-index: 1;
  color: #fff;
}
.stat-item .num {
  display: block;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff, #ffc8a8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item .label {
  display: block;
  font-size: 13px; margin-top: 6px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 600px) {
  .stat-strip { grid-template-columns: 1fr; gap: 24px; padding: 30px 20px; }
}

/* Section divider with gradient flourish */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241,90,41,0.3), transparent);
  margin: 40px 16px;
  border: none;
}

/* Smooth-scroll parallax hook - set via JS */
.parallax-hero {
  will-change: background-position;
}
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.testimonial-foot {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(214,32,39,0.2);
}
.testimonial-meta strong {
  display: block; font-size: 14px; font-weight: 700;
}
.testimonial-meta span {
  display: block; font-size: 12px; color: #888;
}

/* ========== Big stat strip ========== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: linear-gradient(135deg, #0a0a0a 0%, #3a0509 100%);
  border-radius: 32px;
  padding: 40px 24px;
  margin: 40px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(241,90,41,0.4), transparent 60%);
  pointer-events: none;
}
.stat-item {
  position: relative; z-index: 1;
  color: #fff;
}
.stat-item .num {
  display: block;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff, #ffc8a8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item .label {
  display: block;
  font-size: 13px; margin-top: 6px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 600px) {
  .stat-strip { grid-template-columns: 1fr; gap: 24px; padding: 30px 20px; }
}

/* Section divider with gradient flourish */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241,90,41,0.3), transparent);
  margin: 40px 16px;
  border: none;
}

/* Parallax hero scroll hook */
.parallax-hero { will-change: transform, background-position; }
.parallax-hero .hero-header-landing { will-change: opacity, transform; }

/* ==========================================================
   BUG FIXES - hamburger, honesty, scroll-sanity
   ========================================================== */

/* Menu needs to render ABOVE everything including the hero orbs */
.chrome-nav { z-index: 2000; }
.menu-dropdown {
  position: relative;
  z-index: 2001;
}
.chrome-nav.is-open .menu-dropdown { box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

/* Hamburger tap target - make it obvious and always-clickable */
.hamburger {
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2002;
  padding: 4px;
}
.hamburger:hover span { background: var(--accent); }

/* When the hero is covering the nav, make sure hamburger bars are visible */
.chrome-nav:not(.is-open):not(.scrolled) .hamburger span { background: #fff; }

/* Language toggle - only show if we actually have another locale wired up.
   Until then, mark it disabled rather than lying. */
.nav-container-right a.lang-toggle[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Static "early member" badge - no fake counter */
.early-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}
.early-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(241,90,41,0.5);
  animation: livePulse 2s ease-out infinite;
}

/* When motion is paused OR content clips, make sure nothing stays invisible */
.hero-back-landing,
.hero-back-landing .container,
.hero-header-landing,
#registration-form,
.hero-back-landing .scrollable-list { opacity: 1 !important; }

/* Ensure hero content stays in-flow - no transforms from parallax */
.hero-back-landing { transform: none !important; }
.hero-header-landing { transform: none !important; opacity: 1 !important; }

/* ==========================================================
   REAL LOGO SIZING + LAYOUT BUG FIXES
   ========================================================== */

/* The real SHOK logo file is pin + wordmark in one SVG (595 x 410).
   Scale by height so width auto-computes. */
.logo-img {
  display: block;
  height: 96px;
  width: auto;
  flex-shrink: 0;
}
.chrome-nav .logo { gap: 0; }
.chrome-nav .logo-img { height: 96px; transition: height .3s ease; }
.chrome-nav.scrolled .logo-img { height: 64px; }
footer .logo-img { height: 72px; }
@media (min-width: 830px) {
  .chrome-nav .logo-img { height: 120px; }
  .chrome-nav.scrolled .logo-img { height: 72px; }
  footer .logo-img { height: 84px; }
}
@media (min-width: 1440px) {
  .chrome-nav .logo-img { height: 140px; }
}

/* KILL the tall-skinny photo-card bug.
   Single .card.image inside .row on desktop had no explicit width, so it
   collapsed to content-width in the flex row. Force it to fill. */
.card.image {
  width: 100%;
  flex: 1 1 100%;
  min-width: 0;
}
@media (min-width: 830px) {
  .card.image {
    width: 100%;
    flex: 1 1 100%;
    height: 36vw;
    max-height: 560px;
    border-radius: 40px;
  }
}
/* Mobile - keep it reasonable, not 70vw tall */
@media (max-width: 829px) {
  .card.image {
    height: 240px;
    border-radius: 24px;
  }
}

/* Community grid safety - force its width/reveal so we never see blanks */
.community-section { width: 100%; box-sizing: border-box; }
.community-grid { width: 100%; }
.community-grid .avatar { opacity: 1 !important; } /* never hidden by reveal */




/* ==========================================================
   LOGO - jet.bank style. Small, static, clean color flip.
   One block. No animations. No overrides of overrides.
   ========================================================== */

/* Size: small and tidy, like a real product nav */
.chrome-nav .logo { display: inline-flex; align-items: center; line-height: 0; text-decoration: none; }
.chrome-nav .logo-img {
  display: block;
  width: auto;
  height: 64px;
  flex-shrink: 0;
  opacity: 1;
  filter: brightness(0) invert(1);  /* default: white, sitting over dark hero */
  transition: filter 0.35s ease, height 0.35s ease;
}
.chrome-nav.scrolled .logo-img,
.chrome-nav.is-open .logo-img {
  filter: none;   /* nav is white/menu open → show real gradient colors */
  height: 54px;
}
@media (min-width: 830px) {
  .chrome-nav .logo-img         { height: 76px; }
  .chrome-nav.scrolled .logo-img,
  .chrome-nav.is-open .logo-img { height: 62px; }
}

/* On subpages (no dark hero), the logo should be colored at rest too */
body:not(.has-dark-hero) .chrome-nav:not(.scrolled):not(.is-open) .logo-img {
  filter: none;
}
/* Only go white when there's actually a dark hero behind the nav */
body.has-dark-hero .chrome-nav:not(.scrolled):not(.is-open) .logo-img {
  filter: brightness(0) invert(1);
}

/* Footer is dark → logo is white */
footer .logo-img {
  display: block;
  width: auto;
  height: 36px;
  filter: brightness(0) invert(1);
}

/* ==========================================================
   NAV SCROLL STATE - jet.bank style: fade to frosted white
   ========================================================== */
.chrome-nav {
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.chrome-nav.scrolled {
  background-color: rgba(255,255,255,0.96) !important;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 2px 14px rgba(0,0,0,0.07) !important;
}
.chrome-nav.scrolled .nav-container { padding: 14px 20px !important; }

/* ==========================================================
   Tall-skinny card fix (preserved)
   ========================================================== */
.row > .card.image, .row .card.image, .card.image {
  flex: 1 1 100% !important;
  width: 100% !important;
  min-width: 0 !important;
  align-self: stretch;
  height: 260px !important;
  max-height: none;
  border-radius: 24px;
}
@media (min-width: 830px)  { .card.image { height: 420px !important; border-radius: 40px; } }
@media (min-width: 1440px) { .card.image { height: 520px !important; } }

/* ==========================================================
   Lang toggle (preserved)
   ========================================================== */
.lang-toggle { cursor: pointer; transition: opacity .2s ease; user-select: none; }
.lang-toggle:hover { opacity: .7; }
.lang-toggle span { opacity: .55; transition: opacity .2s ease; }
.lang-toggle:hover span { opacity: 1; }


/* ==========================================================
   BENEFIT CARDS — fill the full row on desktop (3 equal columns)
   The mobile horizontal-scroll behavior is kept below 830px.
   ========================================================== */
@media (min-width: 830px) {
  .scrollable-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 16px 0;
    width: 100%;
    justify-content: stretch;
  }
  .scrollable-list > .benefit-item {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    min-width: 0;
    scroll-snap-align: none;
  }
}


/* ==========================================================
   SUBPAGE HERO HEADINGS — use brand gradient, not light peach.
   On the landing page the hero sits over a dark animated hero
   so white→peach reads fine. On every other page the background
   is light, so the white→peach gradient was washing out.
   Flip to the brand red→orange gradient on non-landing pages.
   ========================================================== */
body:not(.has-dark-hero) .hero-header h1,
html body:not(.has-dark-hero) .hero-header h1 {
  background: linear-gradient(135deg, #d62027 0%, #f15a29 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: none !important;
}
