:root {
  --ink: #000;
  --char: #ffffff;
  --panel: #ffffff;
  --steel: #efe9df;
  --line: #e6dfd2;
  --ember: #E8631A;
  --ember2: #f5772a;
  --brass: #b07d2f;
  --brass2: #c79a45;
  --bone: #1c1b1a;
  --ash: #6c6a66;
  --ash2: #9b968d;
  --saffron: #ff9933;
  --green: #1f9d4d;
  --maxw: 1240px;
  --r: 14px;
  --shadow: 0 24px 60px -26px rgba(60, 40, 20, .22);
  --display: 'Oswald', sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px
}

body {
  font-family: var(--body);
  color: var(--bone);
  background: var(--ink);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

section {
  position: relative
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

::selection {
  background: var(--ember);
  color: #000
}

/* ---- texture / grain ---- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- eyebrow w/ reticle (brand signature) ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--ember2);
}

.eyebrow .reticle {
  width: 17px;
  height: 17px;
  flex: none
}

.eyebrow.center {
  justify-content: center
}

.reticle {
  display: inline-block
}

.reticle circle,
.reticle line {
  stroke: var(--ember);
  stroke-width: 1.4;
  fill: none
}

.reticle .dot {
  fill: var(--ember);
  stroke: none
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: .01em
}

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px
}

.sec-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin: 16px 0 14px;
  letter-spacing: .02em
}

.sec-head p {
  color: var(--ash);
  font-size: 1.02rem;
  text-transform: none;
  font-family: var(--body);
  font-weight: 400
}

.accentbar {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--brass));
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(232, 99, 26, .55)
}

/* ---- scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s cubic-bezier(.2, .7, .2, 1), transform .75s cubic-bezier(.2, .7, .2, 1)
}

.reveal.fade-l {
  transform: translateX(-34px)
}

.reveal.fade-r {
  transform: translateX(34px)
}

.reveal.zoom {
  transform: translateY(0) scale(.94)
}

.reveal.in {
  opacity: 1 !important;
  transform: none !important
}

.d1 {
  transition-delay: .06s
}

.d2 {
  transition-delay: .12s
}

.d3 {
  transition-delay: .18s
}

.d4 {
  transition-delay: .24s
}

.d5 {
  transition-delay: .3s
}

.d6 {
  transition-delay: .36s
}

/* ---- ember / fire glow ---- */
@keyframes flick {

  0%,
  100% {
    opacity: .45;
    transform: translateX(-50%) scale(1)
  }

  45% {
    opacity: .78;
    transform: translateX(-50%) scale(1.1)
  }

  70% {
    opacity: .55;
    transform: translateX(-50%) scale(1.04)
  }
}

@keyframes flickC {

  0%,
  100% {
    opacity: .4;
    transform: scale(1)
  }

  50% {
    opacity: .72;
    transform: scale(1.1)
  }
}

.fireglow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(70px);
  background: radial-gradient(circle, rgba(232, 99, 26, .55), rgba(232, 99, 26, 0) 70%);
  animation: flickC 6s ease-in-out infinite
}

section>.wrap {
  position: relative;
  z-index: 2
}

.flameline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, var(--ember) 25%, var(--brass) 50%, var(--ember) 75%, transparent);
  filter: drop-shadow(0 0 6px rgba(232, 99, 26, .8));
  opacity: .75
}

@media(prefers-reduced-motion:reduce) {
  .fireglow {
    animation: none
  }
}

/* ===== TOP UTILITY BAR ===== */
.topbar {
  background: linear-gradient(90deg, #c2530f, var(--ember) 55%, #b9490c);
  font-size: .8rem;
  position: relative;
  z-index: 60
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  gap: 18px;
  flex-wrap: wrap;
  color: #fff
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: .95
}

.topbar a:hover {
  opacity: 1
}

.topbar .tb-left {
  display: flex;
  gap: 22px
}

.topbar .tb-right {
  display: flex;
  gap: 16px;
  align-items: center
}

.topbar svg {
  width: 14px;
  height: 14px
}

.tb-social {
  display: flex;
  gap: 12px
}

.tb-social a:hover {
  transform: translateY(-1px)
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(10, 10, 11, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s
}

.nav.scrolled {
  background: rgba(8, 8, 9, .94)
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px
}

.brand img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .7))
}

.brand .bt {
  font-family: var(--display);
  line-height: 1;
  letter-spacing: .04em
}

.brand .bt b {
  display: block;
  font-size: 1.18rem;
  font-weight: 700
}

.brand .bt b .o {
  color: var(--ember)
}

.brand .bt span {
  font-size: .66rem;
  letter-spacing: .42em;
  color: var(--ash);
  font-weight: 500
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px
}

.menu>li {
  position: relative;
  list-style: none
}

.menu>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 15px;
  font-family: var(--display);
  font-weight: 500;
  font-size: .93rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bone);
  transition: color .2s
}

.menu>li>a:hover,
.menu>li.active>a {
  color: var(--ember2)
}

.menu .caret {
  width: 9px;
  height: 9px;
  transition: transform .25s
}

.menu li:hover .caret {
  transform: rotate(180deg)
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 208px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .22s;
  box-shadow: var(--shadow)
}

.menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown a {
  display: block;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--ash);
  transition: .18s
}

.dropdown a:hover {
  background: var(--ember);
  color: #000
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px
}

.cart {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--display);
  font-size: .9rem;
  letter-spacing: .04em
}

.cart svg {
  width: 19px;
  height: 19px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .86rem;
  padding: 13px 24px;
  border-radius: 9px;
  transition: .22s;
  white-space: nowrap
}

.btn svg {
  width: 15px;
  height: 15px;
  transition: transform .25s
}

.btn:hover svg {
  transform: translateX(4px)
}

.btn-primary {
  background: linear-gradient(135deg, var(--ember), var(--ember2));
  color: #0a0a0b;
  font-weight: 600;
  box-shadow: 0 10px 26px -10px rgba(232, 99, 26, .7)
}

.btn-primary:hover {
  box-shadow: 0 14px 32px -8px rgba(232, 99, 26, .85);
  transform: translateY(-2px)
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--bone)
}

.btn-ghost:hover {
  border-color: var(--ember);
  color: var(--ember2)
}

.btn-brass {
  background: linear-gradient(135deg, var(--brass), var(--brass2));
  color: #1a1405;
  font-weight: 600
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--bone);
  transition: .3s
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: #08080a
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2057/765
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .85s ease
}

.slide.active {
  opacity: 1;
  visibility: visible
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.slide.banner .slide-img {
  object-fit: cover;
  object-position: center
}

.slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(8, 8, 10, .93) 0%, rgba(8, 8, 10, .6) 42%, rgba(8, 8, 10, .05) 72%)
}

.slide-content {
  max-width: 560px;
  padding-left: 6%;
  opacity: 0;
  transform: translateY(22px)
}

.slide.active .slide-content {
  opacity: 1;
  transform: none;
  transition: opacity .7s .25s ease, transform .7s .25s ease
}

.slide .eyebrow {
  margin-bottom: 14px
}

.slide-content h2 {
  font-size: clamp(2.2rem, 5.2vw, 4.1rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .01em
}

.slide-content h2 em {
  font-style: normal;
  background: linear-gradient(180deg, var(--brass2), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.slide-content p {
  font-family: var(--display);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #d8d3c9;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  margin: 16px 0 28px;
  line-height: 1.3
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center
}

.s-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6
}

.s-dots button {
  width: 34px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .3);
  transition: .3s;
  padding: 0
}

.s-dots button.active {
  background: linear-gradient(90deg, var(--ember), var(--brass));
  width: 50px
}

.s-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10, 10, 11, .45);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: .25s
}

.s-arrow:hover {
  background: var(--ember);
  border-color: var(--ember);
  transform: translateY(-50%) scale(1.06)
}

.s-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff
}

.s-arrow:hover svg {
  stroke: #000
}

.s-prev {
  left: 18px
}

.s-next {
  right: 18px
}

.s-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--brass));
  z-index: 6;
  width: 0
}

/* ===== FEATURE PANEL (floating, overlaps hero) ===== */
.features {
  position: relative;
  z-index: 12;
  margin-top: -62px;
  padding: 0 0 14px
}

.feat-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(24, 24, 28, .94), rgba(11, 11, 14, .97));
  border: 1px solid #e6dfd2;
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .9);
  backdrop-filter: blur(14px)
}

.feat-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ember) 35%, var(--brass) 65%, transparent)
}

.feat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  transition: background .3s;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px)
}

.feat-panel.in .feat {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease
}

.feat-panel.in .feat:nth-child(2) {
  transition-delay: .07s
}

.feat-panel.in .feat:nth-child(3) {
  transition-delay: .14s
}

.feat-panel.in .feat:nth-child(4) {
  transition-delay: .21s
}

.feat-panel.in .feat:nth-child(5) {
  transition-delay: .28s
}

.feat:last-child {
  border-right: none
}

.feat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--brass));
  transition: width .35s
}

.feat:hover {
  background: rgba(232, 99, 26, .05)
}

.feat:hover::after {
  width: 100%
}

.feat .ic {
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 15px;
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle at 32% 28%, #ffe9d6, #fbdcc2);
  border: 1px solid #f1d3bb;
  transition: .3s
}

.feat:hover .ic {
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: 0 12px 24px -8px rgba(232, 99, 26, .55)
}

.feat .ic svg {
  width: 25px;
  height: 25px;
  stroke: var(--ember2);
  position: relative;
  z-index: 2
}

.feat .ic::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--ember), transparent 65%);
  opacity: 0;
  transition: .3s
}

.feat:hover .ic::before {
  opacity: .4
}

.feat h4 {
  font-size: 1rem;
  letter-spacing: .04em;
  margin-bottom: 3px
}

.feat span {
  font-size: .8rem;
  color: var(--ash);
  text-transform: none;
  font-family: var(--body);
  line-height: 1.35
}

.feat .wm {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 70px;
  height: 70px;
  opacity: .06;
  pointer-events: none
}

.feat .wm circle,
.feat .wm line {
  stroke: var(--ember);
  stroke-width: 2;
  fill: none
}

/* ===== ABOUT — EDITORIAL ===== */
.about {
  padding: 82px 0
}

.ab-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 58px;
  align-items: center
}

.ab-visual {
  position: relative;
  padding: 0 26px 54px 30px
}

.ab-img-main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -34px rgba(0, 0, 0, .92);
  aspect-ratio: 4/4.3
}

.ab-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s
}

.ab-visual:hover .ab-img-main img {
  transform: scale(1.04)
}

.ab-img-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(232, 99, 26, .16))
}

.ab-img-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid #0a0a0b;
  box-shadow: 0 30px 60px -26px rgba(0, 0, 0, .95);
  aspect-ratio: 4/3
}

.ab-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ab-badge {
  position: absolute;
  left: -8px;
  top: 22px;
  z-index: 3;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff3e9, #f6f2ec);
  border: 1px solid #f1d3bb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 40px -16px rgba(232, 99, 26, .7)
}

.ab-badge .ring {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  animation: spin 22s linear infinite
}

.ab-badge .ring circle,
.ab-badge .ring line {
  stroke: rgba(232, 99, 26, .5);
  stroke-width: 1.2;
  fill: none
}

.ab-badge b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  line-height: .85;
  background: linear-gradient(180deg, var(--ember2), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.ab-badge span {
  font-family: var(--display);
  font-size: .55rem;
  letter-spacing: .16em;
  color: var(--ash);
  text-transform: uppercase;
  margin-top: 4px
}

.ab-vlabel {
  position: absolute;
  left: -18px;
  bottom: 118px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--display);
  letter-spacing: .42em;
  font-size: .68rem;
  text-transform: uppercase;
  color: var(--ash2)
}

.ab-copy .eyebrow {
  margin-bottom: 16px
}

.ab-copy h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.04;
  margin-bottom: 18px
}

.ab-copy h2 em {
  font-style: normal;
  background: linear-gradient(180deg, var(--brass2), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.ab-copy>p {
  color: var(--ash);
  text-transform: none;
  margin-bottom: 26px;
  font-size: 1.02rem;
  max-width: 52ch
}

.ab-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px
}

.ab-feat {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(165deg, var(--panel), #f7f3ec);
  transition: .26s
}

.ab-feat:hover {
  border-color: #e9c6a8;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(232, 99, 26, .55)
}

.ab-feat .fic {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 32% 28%, #ffe9d6, #fbdcc2);
  border: 1px solid #f1d3bb;
  box-shadow: 0 0 18px -6px rgba(232, 99, 26, .5)
}

.ab-feat .fic svg {
  width: 19px;
  height: 19px;
  stroke: var(--ember2);
  fill: none
}

.ab-feat strong {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: .03em;
  font-size: .96rem;
  display: block;
  margin-bottom: 2px
}

.ab-feat span {
  font-size: .81rem;
  color: var(--ash)
}

.ab-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap
}

.ab-cta .sign {
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--ash);
  text-transform: uppercase;
  line-height: 1.4
}

.ab-cta .sign b {
  color: var(--ember2);
  font-size: 1.05rem
}

.ab-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f4efe7)
}

.ab-stats .st {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

.ab-stats .st::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--brass));
  transition: .4s
}

.ab-stats .st:hover::before {
  width: 100%
}

.ab-stats .st:last-child {
  border-right: none
}

.ab-stats .st .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  background: linear-gradient(180deg, var(--ember2), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.ab-stats .st .num .sfx {
  font-size: 1.3rem;
  -webkit-text-fill-color: var(--brass2)
}

.ab-stats .st .k {
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--ash);
  text-transform: uppercase;
  margin-top: 8px
}

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f4efe7);
  overflow: hidden;
  padding: 20px 0;
  position: relative
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f5f2ec, transparent)
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f5f2ec, transparent)
}

.mq-track {
  display: flex;
  width: max-content;
  animation: mq 30s linear infinite
}

.marquee:hover .mq-track {
  animation-play-state: paused
}

@keyframes mq {
  to {
    transform: translateX(-50%)
  }
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #cfc6b8
}

.mq-item .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px var(--ember);
  flex: none
}

.mq-item.hot {
  background: linear-gradient(180deg, var(--brass2), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

/* ===== BRANCHES ===== */
.branches {
  padding: 62px 0;
  background: linear-gradient(180deg, #faf7f1, #f2ede4)
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px
}

.branch {
  background: linear-gradient(180deg, var(--panel), #ffffff);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  transition: .25s;
  position: relative;
  overflow: hidden
}

.branch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--ember);
  transition: width .3s
}

.branch:hover {
  border-color: #e9c6a8;
  transform: translateY(-5px)
}

.branch:hover .pin {
  box-shadow: 0 0 22px -4px rgba(232, 99, 26, .7)
}

.branch:hover::before {
  width: 100%
}

.branch .pin {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(232, 99, 26, .13);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  transition: .25s
}

.branch .pin svg {
  width: 17px;
  height: 17px;
  stroke: var(--ember2);
  fill: none
}

.branch h4 {
  font-size: 1.05rem;
  letter-spacing: .03em
}

.branch p {
  font-size: .82rem;
  color: var(--ash);
  text-transform: none;
  font-family: var(--body);
  margin: 3px 0 16px
}

.branch a {
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--ember2);
  display: inline-flex;
  gap: 7px;
  align-items: center;
  text-transform: uppercase
}

.branch a svg {
  width: 13px;
  height: 13px
}

/* ===== CATEGORIES ===== */
.cats {
  padding: 74px 0
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.cat {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: .35s
}

.cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  transition: .5s
}

.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 11, .05) 30%, rgba(8, 8, 10, .97))
}

.cat::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, var(--ember), var(--brass));
  transition: width .4s
}

.cat:hover {
  transform: translateY(-7px);
  border-color: var(--ember);
  box-shadow: 0 28px 60px -28px rgba(232, 99, 26, .55)
}

.cat:hover img {
  opacity: .82;
  transform: scale(1.08)
}

.cat:hover::before {
  width: 100%
}

.cat .info {
  position: relative;
  z-index: 2;
  padding: 22px
}

.cat .info .count {
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--ember2);
  text-transform: uppercase
}

.cat .info h4 {
  font-size: 1.22rem;
  letter-spacing: .04em;
  margin-top: 2px
}

.cat .ix {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255, 255, 255, .32);
  letter-spacing: .05em
}

.cat .arr {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  place-items: center;
  background: rgba(10, 10, 11, .5);
  transition: .3s
}

.cat .arr svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  transition: .3s
}

.cat:hover .arr {
  background: var(--ember);
  border-color: var(--ember);
  transform: rotate(-45deg)
}

.cat:hover .arr svg {
  stroke: #000
}

/* ===== TRAINING — STICKY STACK ===== */
.training {
  padding: 74px 0 60px;
  background: linear-gradient(180deg, #faf7f1, #f2ede4)
}

.stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-bottom: 30px
}

.stack-card {
  position: sticky;
  top: calc(110px + var(--i, 0) * 16px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #f7f3ec);
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  box-shadow: 0 40px 100px -34px rgba(0, 0, 0, .95)
}

.stack-card .sc-body {
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2
}

.stack-card .idx {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  line-height: .78;
  background: linear-gradient(180deg, rgba(232, 99, 26, .95), rgba(232, 99, 26, .08));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px
}

.stack-card .lvl {
  font-family: var(--display);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ember2);
  font-size: .78rem;
  margin-bottom: 10px
}

.stack-card h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.0;
  margin-bottom: 14px
}

.stack-card p {
  color: var(--ash);
  text-transform: none;
  font-family: var(--body);
  max-width: 44ch;
  margin-bottom: 26px;
  font-size: 1rem
}

.stack-card .sc-meta {
  display: flex;
  gap: 36px;
  margin-bottom: 30px
}

.stack-card .sc-meta .lbl {
  font-family: var(--display);
  font-size: .66rem;
  letter-spacing: .16em;
  color: var(--ash2);
  text-transform: uppercase
}

.stack-card .sc-meta .val {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--bone);
  letter-spacing: .02em
}

.stack-card .sc-media {
  position: relative;
  overflow: hidden
}

.stack-card .sc-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.stack-card .sc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 2%, transparent 42%)
}

.stack-card .glow {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(circle, rgba(232, 99, 26, .4), transparent 70%);
  filter: blur(46px);
  pointer-events: none
}

@supports (animation-timeline: view()) {
  .stack-card {
    animation: stackOut linear both;
    animation-timeline: view();
    animation-range: exit 10% exit 95%
  }

  @keyframes stackOut {
    to {
      transform: scale(.9);
      filter: brightness(.5)
    }
  }
}

.train-foot {
  text-align: center;
  margin-top: 18px
}

/* ===== BLOG ===== */
.blog {
  padding: 70px 0
}

.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 18px
}

.blog-head .eyebrow {
  margin-bottom: 10px
}

.blog-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem)
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.post {
  background: linear-gradient(180deg, var(--panel), #f7f3ec);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: .28s
}

.post:hover {
  transform: translateY(-6px);
  border-color: #e9c6a8
}

.post .img {
  height: 375px;
  overflow: hidden;
  position: relative
}

.post .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.post:hover .img img {
  transform: scale(1.06)
}

.post .date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 10, 11, .82);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 11px;
  font-family: var(--display);
  font-size: .74rem;
  letter-spacing: .08em;
  z-index: 2
}

.post .date b {
  color: var(--ember2)
}

.post .body {
  padding: 22px
}

.post h3 {
  font-size: 1.14rem;
  line-height: 1.2;
  letter-spacing: .02em
}

.post p {
  font-size: .88rem;
  color: var(--ash);
  text-transform: none;
  font-family: var(--body);
  margin: 10px 0 16px
}

.post .read {
  font-family: var(--display);
  font-size: .76rem;
  letter-spacing: .12em;
  color: var(--ember2);
  display: inline-flex;
  gap: 7px;
  align-items: center;
  text-transform: uppercase
}

.post .read svg {
  width: 13px;
  height: 13px
}

/* ===== CONTACT — CONSOLE ===== */
.contact {
  padding: 80px 0;
  background: radial-gradient(125% 80% at 50% 0%, #fdf0e4, #f5f2ec 56%);
  overflow: hidden
}

.contact .c-top {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 44px
}

.contact .c-top h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  margin: 14px 0 12px
}

.contact .c-top p {
  color: var(--ash);
  text-transform: none;
  font-family: var(--body)
}

.console {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 50px 110px -40px rgba(0, 0, 0, .95)
}

.console::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1.4px;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(232, 99, 26, .85), transparent 34%, transparent 66%, rgba(205, 162, 78, .7));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude
}

.con-info {
  position: relative;
  padding: 46px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 560px
}

.con-info .bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.con-info .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.con-info .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(8, 8, 10, .74), rgba(8, 8, 10, .94))
}

.con-info>* {
  position: relative;
  z-index: 2
}

.con-info .eyebrow {
  margin-bottom: 14px
}

.con-info h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.05;
  margin-bottom: 12px
}

.con-info h3 em {
  font-style: normal;
  background: linear-gradient(180deg, var(--brass2), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.con-info .intro {
  color: #cfcac0;
  font-size: .95rem;
  text-transform: none;
  font-family: var(--body);
  margin-bottom: 28px;
  max-width: 38ch
}

.con-list {
  display: grid;
  gap: 18px;
  margin-bottom: auto
}

.con-row {
  display: flex;
  gap: 14px;
  align-items: center
}

.con-row .ic {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(232, 99, 26, .14);
  border: 1px solid #f1d3bb;
  box-shadow: 0 0 20px -6px rgba(232, 99, 26, .65);
  transition: .25s
}

.con-row:hover .ic {
  box-shadow: 0 0 28px -3px rgba(232, 99, 26, .9);
  transform: rotate(-5deg)
}

.con-row .ic svg {
  width: 21px;
  height: 21px;
  stroke: var(--ember2);
  fill: none
}

.con-row .lbl {
  font-family: var(--display);
  font-size: .7rem;
  letter-spacing: .16em;
  color: var(--ember2);
  text-transform: uppercase
}

.con-row .txt {
  font-size: .95rem;
  color: var(--bone)
}

.con-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap
}

.con-social {
  display: flex;
  gap: 10px
}

.con-social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  place-items: center;
  transition: .22s;
  background: rgba(10, 10, 11, .45)
}

.con-social a svg {
  width: 17px;
  height: 17px;
  fill: var(--bone)
}

.con-social a:hover {
  background: var(--ember);
  border-color: var(--ember);
  transform: translateY(-2px)
}

.con-social a:hover svg {
  fill: #000
}

.con-form {
  padding: 46px;
  background: linear-gradient(180deg, #ffffff, #f6f1ea)
}

.con-form h4 {
  font-size: 1.45rem;
  letter-spacing: .02em
}

.con-form .sub {
  color: var(--ash);
  font-size: .9rem;
  text-transform: none;
  font-family: var(--body);
  margin: 6px 0 22px
}

.chipsel {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px
}

.cf-chip {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  font-size: .82rem;
  font-family: var(--display);
  letter-spacing: .04em;
  color: var(--ash);
  transition: .2s
}

.cf-chip:hover {
  border-color: var(--ember);
  color: var(--ember2)
}

.cf-chip.sel {
  background: linear-gradient(135deg, var(--ember), var(--ember2));
  color: #0a0a0b;
  border-color: transparent;
  font-weight: 600
}

.con-form .frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px
}

.field {
  width: 100%;
  background: #faf7f1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--bone);
  font-family: var(--body);
  font-size: .92rem;
  transition: .2s
}

.field:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(232, 99, 26, .13)
}

textarea.field {
  resize: vertical;
  min-height: 118px;
  margin-bottom: 16px
}

.con-form .btn {
  width: 100%;
  justify-content: center;
  padding: 16px
}

/* ===== GALLERY — HORIZONTAL SCROLL-SNAP ===== */
.gallery {
  padding: 78px 0 84px;
  background: linear-gradient(180deg, #f5f2ec, #efe9df);
  overflow: hidden
}

.gal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px
}

.gal-head .eyebrow {
  margin-bottom: 10px
}

.gal-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem)
}

.gal-hint {
  font-family: var(--display);
  font-size: .74rem;
  letter-spacing: .14em;
  color: var(--ash2);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px
}

.gal-hint svg {
  width: 17px;
  height: 17px;
  stroke: var(--ember2)
}

.gal-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 4px;
  scrollbar-width: none;
  cursor: grab
}

.gal-scroll::-webkit-scrollbar {
  display: none
}

.gal-scroll.drag {
  cursor: grabbing
}

.gal-scroll.drag .gal-card img {
  transition: none
}

.gal-card {
  position: relative;
  flex: 0 0 calc((100% - 72px)/5);
  aspect-ratio: 266/400;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  scroll-snap-align: center;
  transition: border-color .3s
}

.gal-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
  pointer-events: none
}

.gal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 10, .96))
}

.gal-card:hover {
  border-color: var(--ember)
}

.gal-card:hover img {
  transform: scale(1.07)
}

.gal-card .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px
}

.gal-card .cap .tag {
  font-family: var(--display);
  font-size: .7rem;
  letter-spacing: .16em;
  color: var(--ember2);
  text-transform: uppercase
}

.gal-card .cap h4 {
  font-size: 1.26rem;
  letter-spacing: .03em;
  margin-top: 4px
}

.gal-card .num {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  color: rgba(255, 255, 255, .32)
}

.gal-bar {
  height: 4px;
  border-radius: 3px;
  background: #e6dfd2;
  overflow: hidden;
  margin-top: 20px;
  max-width: 280px
}

.gal-bar i {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ember), var(--brass))
}

/* ===== VIDEOS — CAROUSEL ===== */
.videos {
  padding: 78px 0 84px;
  background: linear-gradient(180deg, #f5f2ec, #efe9df);
  overflow: hidden
}

.vid-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1060px;
  margin: 0 auto
}

.v-viewport {
  overflow: hidden;
  flex: 1
}

.v-track {
  display: flex;
  gap: 32px;
  transition: transform .55s cubic-bezier(.22, .7, .2, 1)
}

.v-card {
  flex: 0 0 calc((100% - 32px)/2);
  position: relative
}

.v-frame {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 18px 40px -24px rgba(60, 40, 20, .4)
}

.v-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}

.v-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: .3s;
  background: #ffffff
}

.v-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.v-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, .05) 45%, rgba(8, 8, 10, .6))
}

.v-card:hover .v-thumb {
  border-color: var(--ember);
  box-shadow: 0 26px 60px -28px rgba(232, 99, 26, .6)
}

.v-card:hover .v-thumb img {
  transform: scale(1.06)
}

.v-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none
}

.v-play .pbtn {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ember), var(--ember2));
  box-shadow: 0 0 42px -6px rgba(232, 99, 26, .95);
  transition: .3s
}

.v-card:hover .pbtn {
  transform: scale(1.1)
}

.v-play .pbtn svg {
  width: 25px;
  height: 25px;
  fill: #0a0a0b;
  margin-left: 3px
}

.v-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-family: var(--display);
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 7px;
  background: rgba(10, 10, 11, .8);
  border: 1px solid var(--line);
  color: var(--ash)
}

.v-badge.live {
  background: #c2110f;
  color: #fff;
  border-color: transparent
}

.v-badge.live::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin-right: 6px;
  vertical-align: middle;
  animation: flickC 1.2s infinite
}

.v-meta {
  padding: 15px 4px 0
}

.v-meta h4 {
  font-size: 1.06rem;
  letter-spacing: .02em
}

.v-meta span {
  font-size: .8rem;
  color: var(--ash);
  font-family: var(--body);
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px
}

.v-meta span svg {
  width: 14px;
  height: 14px;
  fill: var(--ember2)
}

.v-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 6
}

.v-arrow {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 10, 11, .5);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: .25s
}

.v-arrow:hover {
  background: var(--ember);
  border-color: var(--ember)
}

.v-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff
}

.v-arrow:hover svg {
  stroke: #000
}

.v-arrow:disabled {
  opacity: .32;
  cursor: default
}

.v-arrow:disabled:hover {
  background: rgba(10, 10, 11, .5);
  border-color: var(--line)
}

.v-arrow:disabled:hover svg {
  stroke: #fff
}

.v-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px
}

.v-dots button {
  width: 34px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .28);
  transition: .3s;
  padding: 0
}

.v-dots button.active {
  background: linear-gradient(90deg, var(--ember), var(--brass));
  width: 48px
}

/* video lightbox */
.v-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(5, 5, 7, .92);
  backdrop-filter: blur(10px)
}

.v-modal.open {
  display: flex;
  animation: vfade .25s ease
}

@keyframes vfade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.v-modal-inner {
  position: relative;
  width: min(980px, 94vw)
}

.v-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid #e9c6a8;
  box-shadow: 0 50px 120px -30px rgba(0, 0, 0, .95), 0 0 70px -12px rgba(232, 99, 26, .55)
}

.v-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0
}

.v-modal-close {
  position: absolute;
  top: -54px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: .2s
}

.v-modal-close:hover {
  background: var(--ember);
  border-color: var(--ember);
  transform: rotate(90deg)
}

.v-modal-close svg {
  width: 20px;
  height: 20px;
  stroke: #fff
}

.v-modal-close:hover svg {
  stroke: #000
}

.v-modal-title {
  position: absolute;
  bottom: -46px;
  left: 2px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  letter-spacing: .04em;
  color: var(--bone);
  font-size: 1.05rem;
  text-transform: uppercase
}

.v-modal-title svg {
  width: 18px;
  height: 18px;
  fill: var(--ember2)
}

/* ===== FOOTER ===== */
.footer {
  background: #070708;
  border-top: 1px solid var(--line);
  padding: 64px 0 0
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 48px
}

.foot-brand .brand {
  margin-bottom: 18px
}

.foot-brand p {
  font-size: .88rem;
  color: var(--ash);
  margin-bottom: 18px;
  max-width: 280px
}

.foot-social {
  display: flex;
  gap: 11px
}

.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: .22s
}

.foot-social a svg {
  width: 17px;
  height: 17px;
  fill: var(--ash)
}

.foot-social a:hover {
  background: var(--ember);
  border-color: var(--ember)
}

.foot-social a:hover svg {
  fill: #000
}

.footer h5 {
  font-family: var(--display);
  font-size: .84rem;
  letter-spacing: .18em;
  color: var(--ember2);
  margin-bottom: 18px;
  text-transform: uppercase
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px
}

.footer ul a {
  font-size: .88rem;
  color: var(--ash);
  transition: .18s
}

.footer ul a:hover {
  color: var(--ember2);
  padding-left: 4px
}

.news input {
  width: 100%;
  background: #f5f2ec;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px 15px;
  color: var(--bone);
  margin-bottom: 11px;
  font-size: .88rem
}

.news input:focus {
  outline: none;
  border-color: var(--ember)
}

.news .btn {
  width: 100%;
  justify-content: center
}

.foot-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.foot-bottom p {
  font-size: .82rem;
  color: var(--ash2)
}

.pay {
  display: flex;
  gap: 8px
}

.pay span {
  font-family: var(--display);
  font-size: .66rem;
  letter-spacing: .06em;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 5px 9px;
  border-radius: 6px;
  color: var(--ash)
}

/* ===== CHATBOT ===== */
.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--ember2));
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px -8px rgba(232, 99, 26, .7);
  transition: .25s
}

.chat-fab:hover {
  transform: scale(1.07)
}

.chat-fab svg {
  width: 28px;
  height: 28px;
  stroke: #0a0a0b;
  fill: none
}

.chat-fab .ping {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--ink);
  font-size: .6rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700
}

.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 81;
  width: 370px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 48px);
  background: #f7f3ec;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .85);
  transform: translateY(20px) scale(.96);
  opacity: 0;
  visibility: hidden;
  transition: .28s
}

.chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible
}

.chat-head {
  background: linear-gradient(135deg, #fdebdc, #f9dcc4);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f1d3bb
}

.chat-head .chat-logo {
  height: 36px;
  width: auto;
  flex: none;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .6))
}

.chat-head .ht b {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .04em;
  display: block
}

.chat-head .ht span {
  font-size: .74rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px
}

.chat-head .ht span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green)
}

.chat-head .x {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--ash);
  transition: .2s
}

.chat-head .x:hover {
  background: rgba(255, 255, 255, .07);
  color: #fff
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth
}

.chat-body::-webkit-scrollbar {
  width: 6px
}

.chat-body::-webkit-scrollbar-thumb {
  background: #e6dfd2;
  border-radius: 3px
}

.msg {
  max-width: 80%;
  padding: 11px 15px;
  font-size: .9rem;
  line-height: 1.5;
  border-radius: 15px;
  animation: pop .25s ease
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.msg.bot {
  align-self: flex-start;
  background: #f4efe7;
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px
}

.msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--ember), var(--ember2));
  color: #0a0a0b;
  font-weight: 500;
  border-bottom-right-radius: 5px
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 6px
}

.chip {
  padding: 9px 14px;
  border: 1px solid var(--ember);
  border-radius: 20px;
  font-size: .82rem;
  color: var(--ember2);
  font-family: var(--display);
  letter-spacing: .03em;
  transition: .2s;
  background: rgba(232, 99, 26, .06)
}

.chip:hover {
  background: var(--ember);
  color: #0a0a0b
}

.typing {
  align-self: flex-start;
  background: #f4efe7;
  border: 1px solid var(--line);
  padding: 13px 16px;
  border-radius: 15px;
  display: flex;
  gap: 5px
}

.typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ash);
  animation: blink 1.2s infinite
}

.typing i:nth-child(2) {
  animation-delay: .2s
}

.typing i:nth-child(3) {
  animation-delay: .4s
}

@keyframes blink {

  0%,
  60%,
  100% {
    opacity: .25
  }

  30% {
    opacity: 1
  }
}

.chat-input {
  border-top: 1px solid var(--line);
  padding: 12px;
  display: flex;
  gap: 9px;
  align-items: center
}

.chat-input input {
  flex: 1;
  background: #faf7f1;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 11px 16px;
  color: var(--bone);
  font-size: .9rem
}

.chat-input input:focus {
  outline: none;
  border-color: var(--ember)
}

.chat-input .send {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--ember2));
  display: grid;
  place-items: center
}

.chat-input .send svg {
  width: 18px;
  height: 18px;
  stroke: #0a0a0b;
  fill: none
}

/* ===== MOBILE MENU PANEL ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(8, 8, 9, .98);
  backdrop-filter: blur(8px);
  transform: translateX(100%);
  transition: .32s;
  padding: 50px 28px 40px;
  overflow-y: auto
}

.mobile-menu.open {
  transform: translateX(0)
}

.mobile-menu a {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a.btn {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: normal;
  padding: 14px 24px;
  border-bottom: none;
  display: inline-flex;
  margin-top: 24px !important;
}

.mobile-menu .close {
  position: absolute;
  top: 50px;
  right: 24px;
  font-size: 2rem;
  color: var(--bone)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1080px) {
  .trust .grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust .item:nth-child(2) {
    border-right: none
  }

  .branch-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .cat-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .contact .grid {
    grid-template-columns: 1fr 1fr
  }

  .gal-card {
    flex-basis: calc((100% - 36px)/3)
  }
}

@media(max-width:860px) {
    .s-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 6;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(10, 10, 11, .45);
        border: 1px solid var(--line);
        display: grid;
        place-items: center;
        backdrop-filter: blur(6px);
        transition: .25s;
    }
  .menu,
  .nav-cta .btn,
  .cart {
    display: none
  }

  .hamburger {
    display: flex
  }

  .slider {
    aspect-ratio: auto;
    min-height: 250px
  }

  .slide.banner {
    background: radial-gradient(circle at 62% 42%, #fdf0e4, #f5f2ec)
  }

  .slide.banner .slide-img {
    object-fit: fill;
    object-position: 80% center;
    width: 100%;
    height: 250px;
  }

  .slide-overlay {
    background: linear-gradient(180deg, rgba(8, 8, 10, .2), rgba(8, 8, 10, .85))
  }

  .slide-content {
    padding: 0 22px;
    max-width: 100%
  }

  .features {
    margin-top: -46px
  }

  .feat-panel {
    grid-template-columns: 1fr 1fr
  }

  .feat:nth-child(odd) {
    border-right: 1px solid var(--line)
  }

  .feat:nth-child(even) {
    border-right: none
  }

  .feat:nth-child(5) {
    border-bottom: none
  }

  .feat {
    border-bottom: 1px solid var(--line)
  }

  .feat:nth-child(4),
  .feat:nth-child(5) {
    border-bottom: none
  }

  .ab-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .ab-visual {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 20px 50px 24px
  }

  .ab-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .ab-stats .st:nth-child(2) {
    border-right: none
  }

  .stack-card {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .stack-card .sc-media {
    order: -1;
    height: 240px;
    position: relative
  }

  .stack-card .sc-media::after {
    background: linear-gradient(180deg, transparent 45%, #ffffff)
  }

  .stack-card {
    position: relative;
    top: auto !important
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .branch-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .console {
    grid-template-columns: 1fr
  }

  .con-info {
    min-height: auto
  }

  .gal-card {
    flex-basis: 74vw
  }

  .v-card {
    flex: 0 0 100%
  }

  .v-frame {
    max-width: none
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px
  }

  .topbar .tb-left {
    gap: 14px;
    font-size: .74rem
  }
}

@media(max-width:520px) {
  .wrap {
    padding: 0 18px
  }

  .feat-panel {
    grid-template-columns: 1fr
  }

  .feat {
    border-right: none !important;
    border-bottom: 1px solid var(--line) !important
  }

  .feat:last-child {
    border-bottom: none !important
  }

  .ab-feats {
    grid-template-columns: 1fr
  }

  .ab-stats {
    grid-template-columns: 1fr
  }

  .ab-stats .st {
    border-right: none;
    border-bottom: 1px solid var(--line)
  }

  .ab-stats .st:last-child {
    border-bottom: none
  }

  .cat-grid,
  .branch-grid {
    grid-template-columns: 1fr
  }

  .cform .frow {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .topbar .tb-left a:nth-child(2) {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important
  }

  .slide-content,
  .feat,
  .reveal {
    opacity: 1 !important;
    transform: none !important
  }

  .stack-card {
    position: relative;
    top: auto
  }
}

/* ===== LIGHT THEME OVERRIDES ===== */
.grain {
  opacity: .025;
  mix-blend-mode: multiply
}

::selection {
  background: var(--ember);
  color: #fff
}

.nav {
  background: rgba(250, 247, 241, .82)
}

.nav.scrolled {
  background: rgba(250, 247, 241, .97)
}

.dropdown {
  box-shadow: 0 22px 50px -22px rgba(60, 40, 20, .28)
}

.mobile-menu {
  background: rgba(250, 247, 241, .98)
}

.hamburger span {
  background: var(--bone)
}

.hero:has(.slider) {
  background: var(--ink)
}

.feat-panel {
  background: linear-gradient(155deg, #ffffff, #faf6f0);
  box-shadow: 0 30px 70px -30px rgba(60, 40, 20, .25)
}

.feat .ic {
  background: radial-gradient(circle at 32% 28%, #ffe9d6, #fbdcc2);
  border-color: #f1d3bb
}

.feat:hover .ic {
  box-shadow: 0 12px 24px -8px rgba(232, 99, 26, .4)
}

.marquee {
  background: linear-gradient(180deg, #faf6f0, #f5f2ec)
}

.mq-item {
  color: #d7ccbd
}

/* slider + carousel arrows */
.s-arrow,
.v-arrow {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 22px -10px rgba(60, 40, 20, .35)
}

.s-arrow svg,
.v-arrow svg {
  stroke: #1c1b1a
}

.s-arrow:hover,
.v-arrow:hover {
  background: var(--ember);
  border-color: var(--ember)
}

.s-arrow:hover svg,
.v-arrow:hover svg {
  stroke: #fff
}

.v-arrow:disabled:hover {
  background: rgba(255, 255, 255, .9)
}

.v-arrow:disabled:hover svg {
  stroke: #1c1b1a
}

.s-dots button,
.v-dots button {
  background: rgba(0, 0, 0, .16)
}

/* branches / about / training cards */
.branch:hover,
.tcard:hover,
.post:hover,
.ab-feat:hover,
.cinfo .row:hover {
  box-shadow: 0 22px 46px -26px rgba(232, 99, 26, .45)
}

.ab-img-sub {
  border-color: #ffffff
}

.ab-img-main {
  box-shadow: 0 36px 80px -34px rgba(60, 40, 20, .4)
}

.stack-card {
  box-shadow: 0 40px 90px -36px rgba(60, 40, 20, .4)
}

/* gallery / videos */
.gal-card {
  box-shadow: 0 18px 40px -24px rgba(60, 40, 20, .3)
}

.gal-bar {
  background: #e6dfd2
}

.v-thumb {
  background: #eceae5
}

/* categories — product images on white */
.cat {
  background: #ffffff
}

.cat img {
  opacity: 1
}

.cat::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, .92))
}

.cat:hover {
  box-shadow: 0 26px 56px -26px rgba(232, 99, 26, .45)
}

.cat .info .count {
  color: var(--ember)
}

.cat .ix {
  color: rgba(0, 0, 0, .22)
}

.cat .arr {
  background: rgba(255, 255, 255, .85);
  border-color: var(--line)
}

.cat .arr svg {
  stroke: #1c1b1a
}

/* contact console */
.console {
  box-shadow: 0 50px 110px -42px rgba(60, 40, 20, .32)
}

.cf-chip {
  border-color: var(--line)
}

/* footer (light) */
.footer {
  background: #efe9df;
  border-top: 1px solid var(--line)
}

.foot-bottom {
  border-top: 1px solid var(--line)
}

.foot-social a {
  border-color: var(--line)
}

.foot-social a svg {
  fill: var(--ash)
}

/* chatbot (light) */
.chat-panel {
  background: #ffffff;
  box-shadow: 0 30px 70px -22px rgba(60, 40, 20, .35)
}

.chat-head {
  border-bottom: 1px solid #f1d3bb
}

.msg.bot {
  background: #f4efe7;
  border: 1px solid var(--line);
  color: var(--bone)
}

.typing {
  background: #f4efe7;
  border-color: var(--line)
}

.chat-input input {
  background: #faf7f1;
  border-color: var(--line);
  color: var(--bone)
}

.chat-fab {
  box-shadow: 0 14px 34px -8px rgba(232, 99, 26, .5)
}

/* inputs */
.field {
  background: #faf7f1;
  border-color: var(--line);
  color: var(--bone)
}

.news input {
  background: #faf7f1
}

/* image-overlay caption legibility (light theme) */
.gal-card .cap h4 {
  color: #ffffff
}

.gal-card::after {
  background: linear-gradient(180deg, transparent 38%, rgba(14, 11, 7, .92))
}

.con-info .bg::after {
  background: linear-gradient(165deg, rgba(14, 11, 7, .82), rgba(14, 11, 7, .93))
}

.con-info h3,
.con-row .txt {
  color: #f6f2ec
}

.con-info .intro {
  color: #e7e1d6
}

.con-social a {
  border-color: rgba(255, 255, 255, .18)
}

.con-social a svg {
  fill: #f6f2ec
}

.post .date {
  background: rgba(255, 255, 255, .92);
  color: var(--bone)
}


body.portal-page {
  --ink: #0B1E3F;
  --ink-2: #142A52;
  --paper: #F7F5EE;
  --paper-2: #EFEBDF;
  --rule: #1a1a1a;
  --bullseye: #C8102E;
  --gold: #B08640;
  --muted: #4A5568;
  --muted-2: #8A8578;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 238, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 30, 63, 0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 15px;
  color: var(--ink);
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 15px;
}

.brand-sep {
  color: var(--muted-2);
  margin: 0 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  color: #fff !important;
  padding: 12px 24px !important;
  border-radius: 4px;
  opacity: 1 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-links {
    gap: 0;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero .container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 1440px;
  padding: 0 48px;
  margin: 0 auto;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 0;
  align-items: center;
  width: 100%;
  padding: 80px 0 80px;
}

/* Left text column */
.hero-text-col {
  padding-right: 40px;
}

/* Eyebrow */
.hero-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bullseye);
  margin-bottom: 6px;
  font-weight: 500;
}

.hero-eyebrow-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--bullseye);
  margin-bottom: 28px;
  margin-top: 6px;
}

/* Title */
h1.hero-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 20, "opsz" 144;
  font-weight: 700;
  font-size: clamp(52px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}

h1.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bullseye);
  display: block;
  font-size: clamp(52px, 6.5vw, 92px);
  line-height: 1.05;
}

/* Gold divider */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.hero-divider-line {
  flex: 1;
  height: 1px;
  background: #B08640;
}

.hero-divider-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0 2px;
}

/* Meta row */
.hero-meta {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: nowrap;
}

.hero-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(11, 30, 63, 0.18);
}

.hero-meta-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.hero-meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 30, 63, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-meta-icon svg {
  width: 16px;
  height: 16px;
  color: var(--ink);
  opacity: 0.6;
}

.hero-meta-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.hero-meta-value {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .hero-bg-img {
    width: 50%;
  }

  .hero-grid {
    grid-template-columns: 50% 50%;
  }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 0px !important;
    }

  .hero-bg-img {
    position: relative;
    width: 100%;
    height: 320px;
    display: block;
  }

  .hero .container {
    padding: 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

  .hero-text-col {
    padding-right: 0;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-meta-item {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

/* ============ SECTION SHARED ============ */
section {
  padding: 100px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: start;
}

.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bullseye);
  padding-top: 10px;
}

.section-num::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--bullseye);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--bullseye);
}

@media (max-width: 720px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  section {
    padding: 72px 0;
  }
}

/* ============ OFFICIALS ============ */
#officials {
  background-image: url('https://res.cloudinary.com/dcz3mvwdn/image/upload/v1783490395/01_Officials-section-background_n9xz6a.png');
  background-size: cover;
  background-position: center;
  border-top: none;
  padding: 80px 0 100px;
}

/* Centered section header for officials */
#officials .officials-header {
  text-align: center;
  margin-bottom: 20px;
}

#officials .officials-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bullseye);
  font-weight: 500;
  margin-bottom: 8px;
}

#officials .officials-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--bullseye);
  margin: 6px auto 20px;
}

#officials .officials-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0;
}

#officials .officials-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bullseye);
}

/* Gold crosshair divider (centered) */
.officials-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 24px auto 48px;
  max-width: 320px;
}

.officials-divider-line {
  flex: 1;
  height: 1px;
  background: #B08640;
}

.officials-divider-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin: 0 6px;
}

/* Cards grid */
.officials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Individual card */
.official {
  background: #fff;
  border-radius: 16px;
  padding: 32px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  box-shadow: 0 2px 20px rgba(11, 30, 63, 0.06);
  position: relative;
  border: 1px solid rgba(176, 134, 64, 0.12);
}

/* Icon circle */
.official-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F5F1EA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.official-icon svg,
.official-icon i {
  width: 30px;
  height: 30px;
  color: #B08640;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Role label with dots */
.official-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B08640;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.official-role::before,
.official-role::after {
  content: '•';
  font-size: 8px;
  color: #B08640;
}

/* Name */
.official-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
}

/* Cert */
.official-cert {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 20px;
  min-height: 20px;
}

/* Gold bottom line */
.official-bottom-line {
  width: 36px;
  height: 2px;
  background: #B08640;
  border-radius: 1px;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .officials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .officials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .officials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ SCHEDULE ============ */
#schedule {
  position: relative;
  padding: 100px 0;
}

.schedule-head-container {
  position: relative;
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.schedule-eyebrow-wrap {
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
}

.schedule-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bullseye);
  font-weight: 500;
}

.schedule-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--bullseye);
  margin-top: 6px;
}

.schedule-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0;
}

.schedule-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bullseye);
}

.schedule-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 24px auto 0;
  max-width: 320px;
  width: 100%;
}

.schedule-divider-line {
  flex: 1;
  height: 1px;
  background: #B08640;
}

.schedule-divider-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin: 0 6px;
}

/* Cards grid */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.sched-card {
  background: #fff;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 30, 63, 0.04);
  border: 1px solid rgba(176, 134, 64, 0.08);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sched-card-bg {
  position: absolute;
  top: -15px;
  left: -35px;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.sched-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

/* Card Top */
.sched-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.sched-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.sched-icon.red {
  color: var(--bullseye);
  border: 1px solid rgba(200, 16, 46, 0.15);
}

.sched-icon.gold {
  color: var(--gold);
  border: 1px solid rgba(176, 134, 64, 0.15);
}

.sched-day {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sched-day-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}

.sched-day-num.red {
  color: var(--bullseye);
}

.sched-day-num.gold {
  color: var(--gold);
}

.sched-day-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.sched-day-date.red {
  color: var(--bullseye);
}

.sched-day-date.gold {
  color: var(--gold);
}

.sched-day-line {
  width: 24px;
  height: 1.5px;
}

.sched-day-line.red {
  background: var(--bullseye);
}

.sched-day-line.gold {
  background: var(--gold);
}

/* Title */
.sched-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Time Tag */
.sched-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.sched-time.red {
  background: rgba(200, 16, 46, 0.06);
  color: var(--bullseye);
}

.sched-time.gold {
  background: rgba(176, 134, 64, 0.08);
  color: var(--gold);
}

/* Divider */
.sched-div {
  width: 100%;
  height: 1px;
  background: rgba(11, 30, 63, 0.06);
  margin-bottom: 24px;
}

/* Note */
.sched-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 32px;
  flex: 1;
}

/* Dots */
.sched-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.sched-dots span {
  display: block;
  height: 4px;
  border-radius: 2px;
}

.sched-dots span.dot {
  width: 4px;
  background: #E5E1D8;
}

.sched-dots span.line.red {
  width: 16px;
  background: var(--bullseye);
}

.sched-dots span.line.gold {
  width: 16px;
  background: var(--gold);
}

@media (max-width: 1024px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .schedule-eyebrow-wrap {
    position: relative;
    margin-bottom: 16px;
    text-align: center;
  }

  .schedule-eyebrow-line {
    margin: 6px auto 0;
  }
}

@media (max-width: 640px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ CATEGORIES & FEES ============ */
#categories {
  position: relative;
  padding: 100px 0;
  background: #F5F1EA url('https://res.cloudinary.com/dcz3mvwdn/image/upload/v1783490394/03_Entries-section-background_yhfbif.png') no-repeat center center;
  background-size: cover;
}

.entries-head-container {
  position: relative;
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.entries-eyebrow-wrap {
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
}

.entries-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bullseye);
  font-weight: 500;
}

.entries-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--bullseye);
  margin-top: 6px;
}

.entries-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0;
}

.entries-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bullseye);
}

.entries-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 24px auto 0;
  max-width: 320px;
  width: 100%;
}

.entries-divider-line {
  flex: 1;
  height: 1px;
  background: #B08640;
}

.entries-divider-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin: 0 6px;
}

.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 900px) {
  .two-col-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .entries-eyebrow-wrap {
    position: relative;
    margin-bottom: 16px;
    text-align: center;
  }

  .entries-eyebrow-line {
    margin: 6px auto 0;
  }
}

.entry-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(11, 30, 63, 0.04);
  border: 1px solid rgba(176, 134, 64, 0.08);
}

.entry-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.entry-card-header-pill {
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding-right: 24px;
  background: rgba(11, 30, 63, 0.06);
  color: var(--ink);
  height: 48px;
}

.entry-card-header-pill.red {
  background: rgba(200, 16, 46, 0.06);
  color: var(--bullseye);
}

.entry-card-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 16px;
}

.entry-card-header-icon.red {
  background: var(--bullseye);
}

.entry-card-header-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

.entry-card-header-line {
  flex: 1;
  height: 1px;
  background: rgba(11, 30, 63, 0.2);
  margin-left: 24px;
}

.entry-card-header-line.red {
  background: rgba(200, 16, 46, 0.25);
}

.cat-list {
  list-style: none;
}

.cat-list li {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 30, 63, 0.06);
}

.cat-list li:last-child {
  border-bottom: none;
}

.cat-list-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 30, 63, 0.05);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(11, 30, 63, 0.05);
}

.cat-list-icon.red {
  background: rgba(200, 16, 46, 0.05);
  color: var(--bullseye);
  border: 1px solid rgba(200, 16, 46, 0.08);
}

.cat-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}

.cat-age {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(11, 30, 63, 0.7);
  background: rgba(11, 30, 63, 0.06);
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 600;
}

.cat-age.text-only {
  background: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 600;
  color: var(--bullseye);
  letter-spacing: 0;
  padding: 0;
}

.entries-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
}

.entries-dots span {
  display: block;
  height: 4px;
  border-radius: 2px;
}

.entries-dots span.dot.blue {
  width: 4px;
  background: var(--ink);
}

.entries-dots span.dot.red {
  width: 4px;
  background: var(--bullseye);
}

.entries-dots span.line.blue {
  width: 16px;
  background: var(--ink);
}

.entries-dots span.line.red {
  width: 16px;
  background: var(--bullseye);
}

.entries-shield {
  position: relative;
  width: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B08640;
  font-size: 20px;
}

.entries-shield-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============ MATCHES ============ */
#matches {
  position: relative;
  padding: 100px 0;
  background: #FAFAFA url('https://res.cloudinary.com/dcz3mvwdn/image/upload/v1783490404/04_Matches-section-background_ynyyky.png') no-repeat center center;
  background-size: cover;
}

.matches-head-container {
  position: relative;
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.matches-eyebrow-wrap {
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
}

.matches-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bullseye);
  font-weight: 500;
}

.matches-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--bullseye);
  margin-top: 6px;
}

.matches-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0;
}

.matches-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bullseye);
}

.matches-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 24px auto 0;
  max-width: 320px;
  width: 100%;
}

.matches-divider-line {
  flex: 1;
  height: 1px;
  background: #B08640;
}

.matches-divider-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin: 0 6px;
}

@media (max-width: 900px) {
  .matches-eyebrow-wrap {
    position: relative;
    margin-bottom: 16px;
    text-align: center;
  }

  .matches-eyebrow-line {
    margin: 6px auto 0;
  }
}

.rulebook-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(11, 30, 63, 0.04);
  border: 1px solid rgba(176, 134, 64, 0.08);
}

.rulebook-card-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.rulebook-card-header-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-right: 24px;
  flex-shrink: 0;
}

.rulebook-card-header-icon.blue {
  background: var(--ink);
}

.rulebook-card-header-icon.red {
  background: var(--bullseye);
}

.rulebook-card-header-text {
  flex: 1;
}

.rulebook-title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.rulebook-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  color: #fff;
}

.rulebook-badge.blue {
  background: var(--ink);
}

.rulebook-badge.red {
  background: var(--bullseye);
}

.rulebook-subtitle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
}

.discipline-header {
  display: flex;
  align-items: center;
  margin: 32px 0 24px;
}

.discipline-header:first-of-type {
  margin-top: 0;
}

.discipline-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-right: 12px;
}

.discipline-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.discipline-dot.blue {
  background: var(--ink);
}

.discipline-dot.red {
  background: var(--bullseye);
}

.discipline-line {
  flex: 1;
  height: 1px;
  margin-left: 8px;
}

.discipline-line.blue {
  background: rgba(11, 30, 63, 0.15);
}

.discipline-line.red {
  background: rgba(200, 16, 46, 0.15);
}

.two-col-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}

.match-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.match-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11, 30, 63, 0.04);
}

.match-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 16px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.match-code.blue {
  background: rgba(11, 30, 63, 0.05);
  color: var(--ink);
}

.match-code.red {
  background: rgba(200, 16, 46, 0.05);
  color: var(--bullseye);
}

.match-name {
  font-size: 14px;
  color: rgba(11, 30, 63, 0.8);
  font-weight: 400;
}

/* ============ PRIZES ============ */
#prizes {
  position: relative;
  padding: 100px 0;
  background: #F7F4EE url('https://res.cloudinary.com/dcz3mvwdn/image/upload/v1783490394/05_Prizes-section-background_ssmd5k.png') no-repeat top right;
  background-size: cover;
}

.prizes-head {
  margin-bottom: 60px;
}

.prizes-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bullseye);
  font-weight: 500;
  margin-bottom: 8px;
}

.prizes-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--bullseye);
  margin-bottom: 24px;
}

.prizes-main-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}

.prizes-main-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bullseye);
  display: block;
}

.prizes-intro {
  max-width: 480px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Prize rows */
.prize-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prize-row {
  display: grid;
  grid-template-columns: 140px minmax(180px, 1.2fr) 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(11, 30, 63, 0.06);
  border: 1px solid rgba(11, 30, 63, 0.06);
  min-height: 116px;
}

.prize-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-self: stretch;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.prize-row-icon.navy {
  background: var(--ink);
}

.prize-row-icon.crimson {
  background: #C0102E;
}

.prize-row-icon.cream {
  background: #F5F1EA;
  border-right: 1px solid rgba(176, 134, 64, 0.12);
}

.prize-row-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
}

.prize-row-icon.navy .prize-row-icon-circle {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}

.prize-row-icon.crimson .prize-row-icon-circle {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
}

.prize-row-icon.cream .prize-row-icon-circle {
  border: 1.5px solid rgba(176, 134, 64, 0.3);
  color: #B08640;
}

/* Diagonal slash accent line on featured icon panel */
.prize-row-icon.navy::before,
.prize-row-icon.crimson::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, transparent 10%, rgba(176, 134, 64, 0.6) 50%, transparent 90%);
}

.prize-row-info {
  padding: 24px 28px;
}

.prize-row-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.prize-row-name-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--bullseye);
  margin-bottom: 8px;
}

.prize-row-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.prize-divider {
  align-self: stretch;
  background: rgba(11, 30, 63, 0.06);
  width: 1px;
}

.prize-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  text-align: center;
  gap: 8px;
}

.prize-medal {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}

.prize-medal.gold {
  background: radial-gradient(circle at 38% 32%, #F9E280, #D4A020 55%, #A87010);
  box-shadow: 0 0 0 5px rgba(200, 160, 32, 0.18);
}

.prize-medal.silver {
  background: radial-gradient(circle at 38% 32%, #EFEFEB, #ABABA4 55%, #888880);
  box-shadow: 0 0 0 5px rgba(160, 160, 150, 0.18);
}

.prize-medal.bronze {
  background: radial-gradient(circle at 38% 32%, #E0975A, #A05828 55%, #7A3E18);
  box-shadow: 0 0 0 5px rgba(150, 85, 30, 0.18);
}

.prize-col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.prize-col-label.gold {
  color: #B08010;
}

.prize-col-label.silver {
  color: #888880;
}

.prize-col-label.bronze {
  color: #8C5020;
}

.prize-amount {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.prize-amount .rupee {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  vertical-align: 3px;
  margin-right: 2px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .prize-row {
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
  }

  .prize-row-icon {
    grid-row: 1 / 2;
  }

  .prize-row-info {
    grid-column: 2;
  }

  .prize-divider {
    display: none;
  }

  .prize-col {
    padding: 12px 8px;
  }

  .prize-col-label {
    display: none;
  }

  .prize-category.featured {
    padding: 32px;
  }

  .prize-tiers {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .prize-tiers {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prize-amount {
    font-size: 28px;
  }
}

/* ============ REGISTER ============ */
.register {
  background: #FAFAF7 url('https://res.cloudinary.com/dcz3mvwdn/image/upload/v1783490393/06_Register-section-background_rwr5ib.png') no-repeat right center;
  background-size: cover;
  color: var(--ink);
  padding: 120px 0;
  position: relative;
}

.register-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.register-left {
  max-width: 500px;
}

.register-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bullseye);
  font-weight: 500;
  margin-bottom: 8px;
}

.register-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: #D4A020;
  margin-bottom: 24px;
}

.register-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.register-title em {
  font-style: italic;
  font-weight: 400;
  color: #D4A020;
  display: block;
}

.register-title-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--bullseye);
  margin-top: 16px;
}

.register-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.register-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.register-item.centered {
  align-items: center;
}

.register-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: #FAFAF7;
  box-shadow: 0 4px 16px rgba(11, 30, 63, 0.04);
}

.register-icon.cream {
  border: 1px solid rgba(176, 134, 64, 0.15);
  color: #B08640;
}

.register-icon.red-light {
  border: 1px solid rgba(192, 16, 46, 0.12);
  color: var(--bullseye);
  background: #fff;
}

.register-text p {
  margin: 0 0 8px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.register-text p:last-child {
  margin-bottom: 0;
}

.gold-text {
  color: #B08640;
  font-weight: 600;
}

.red-text {
  color: var(--bullseye);
  font-weight: 600;
}

.register-divider {
  position: relative;
  text-align: center;
  margin: 4px 0;
  display: flex;
  align-items: center;
}

.register-divider::before,
.register-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(176, 134, 64, 0.2);
}

.register-divider i {
  padding: 0 20px;
  color: rgba(176, 134, 64, 0.4);
  font-size: 14px;
}

.contact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bullseye);
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-phones {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
}

.contact-phones a {
  color: inherit;
  text-decoration: none;
}

.red-dot {
  color: var(--bullseye);
  font-size: 20px;
  line-height: 0;
}

.contact-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-address {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .register-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ============ FOOTER ============ */
footer {
  background: #061428;
  color: rgba(247, 245, 238, 0.6);
  padding: 32px 0;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.05em;
}

footer .fine-print {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ============ PORTAL TEASER ============ */
.portal-teaser {
  background: #FAFAF7 url('https://res.cloudinary.com/dcz3mvwdn/image/upload/v1783490393/last_section-bg_xxxvbf.png') no-repeat right center;
  background-size: cover;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.portal-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.portal-left {
  max-width: 560px;
}

.portal-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bullseye);
  font-weight: 600;
  margin-bottom: 8px;
}

.portal-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bullseye);
  flex-shrink: 0;
}

.portal-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--bullseye);
  margin-bottom: 28px;
}

.portal-teaser-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0;
}

.portal-teaser-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bullseye);
  display: block;
}

.portal-divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 28px 0;
}

.portal-divider::before,
.portal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(11, 30, 63, 0.12);
}

.portal-divider i {
  padding: 0 20px;
  color: var(--bullseye);
  font-size: 16px;
}

.portal-teaser-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}

.portal-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(11, 30, 63, 0.18);
}

.portal-teaser-cta:hover {
  background: var(--bullseye);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192, 16, 46, 0.22);
}

.portal-right {
  /* right side is the background image */
}

@media (max-width: 900px) {
  .portal-teaser-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

body.championship-page,
body.portal-page {
  /* Light / paper palette */
  --ink: #0B1E3F;
  --ink-2: #142A52;
  --paper: #F7F5EE;
  --paper-2: #EFEBDF;
  --paper-3: #E5E0D0;
  --bullseye: #C8102E;
  --gold: #B08640;
  --gold-light: #F0C97A;
  --muted: #4A5568;
  --muted-2: #8A8578;

  /* Dark / app widget palette */
  --night: #0A0B0E;
  --night-2: #111317;
  --night-3: #15171D;
  --night-4: #1B1E25;
  --night-border: #212430;
  --night-border-2: #2D313C;
  --night-tx: #F1F3F6;
  --night-tx-2: #969BA8;
  --night-tx-3: #666C78;
  --accent: #E5202E;
  --accent-2: #FF3A46;
  --accent-soft: rgba(229, 32, 46, 0.12);
  --pos: #37CB63;
  --pos-soft: rgba(55, 203, 99, 0.14);
  --gold-app: #FFB73D;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 30, 63, 0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 14px;
}

.brand-name span {
  color: var(--bullseye);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  align-items: center;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  color: #000 !important;
  padding: 10px 18px;
  border-radius: 3px;
  opacity: 1 !important;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--bullseye);
}

@media (max-width: 860px) {

  /* Hide inline nav links on championship & portal pages */
  body.championship-page .nav-links a:not(.nav-cta):not(.hamburger),
  body.portal-page .nav-links a:not(.nav-cta):not(.hamburger) {
    display: none;
  }

  /* Show hamburger on championship page */
  body.championship-page .hamburger,
  body.portal-page .hamburger {
    display: flex;
    background: transparent;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
  }

  body.championship-page .hamburger span,
  body.portal-page .hamburger span {
    width: 25px;
    height: 2px;
    background: var(--ink);
    display: block;
    transition: .3s;
  }

  body.championship-page .nav-links,
  body.portal-page .nav-links {
    gap: 0;
  }
}

/* ============ HERO ============ */
.hero {
  padding: 0px;
  position: relative;
  background: url('https://res.cloudinary.com/dcz3mvwdn/image/upload/v1783490410/slider-section-background_f3n8o6.png') no-repeat center right;
  background-size: cover;
  overflow: hidden;
}

.hero-divider {
  display: flex;
  align-items: center;
  margin: 20px 0 32px;
}

.hero-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: rgba(11, 30, 63, 0.1);
  margin-left: 15px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Coming Soon Badge */
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 16px 8px 12px;
  border-radius: 99px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  box-shadow: 0 6px 20px -8px rgba(11, 30, 63, 0.3);
}

.cs-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  position: relative;
}

.cs-badge-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.4;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.cs-badge span.dot {
  color: var(--gold-light);
  font-weight: 700;
  margin: 0 4px;
}

h1.hero-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  font-weight: 300;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 32px;
}

h1.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--bullseye);
}

.hero-desc {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 500px;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  padding: 18px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--bullseye);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  padding: 18px 26px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
  background: transparent;
  border: 1.5px solid rgba(11, 30, 63, 0.2);
  border-radius: 4px;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--ink);
}

.hero-availability {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px dotted rgba(11, 30, 63, 0.2);
  max-width: 480px;
}

.hero-availability-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-availability-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero-avail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.hero-avail-item svg {
  color: var(--bullseye);
}

/* HERO PREVIEW STACK */
.hero-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-preview::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at center, rgba(200, 16, 46, 0.06), transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.hero-preview>* {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero {
    padding: 60px 0 80px;
  }
}

/* ============ APP WIDGET SHARED (DARK) ============ */
.aw-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--night-tx-2);
  margin-bottom: 12px;
}

.aw-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
}

.pill-pos {
  background: var(--pos-soft);
  color: var(--pos);
}

.pill-gold {
  background: rgba(255, 183, 61, 0.16);
  color: var(--gold-app);
}

.pill-accent {
  background: var(--accent-soft);
  color: var(--accent-2);
}

/* Hero widgets (Light Theme) */
.hp-hero-widget {
  background: #FFFFFF;
  border: 1px solid rgba(11, 30, 63, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(11, 30, 63, 0.06);
}

.hp-widget-top {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hp-radar-wrapper {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.hp-hero-stats {
  flex: 1;
}

.hp-lab {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}

.hp-big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}

.hp-tiny {
  font-size: 12px;
  color: var(--muted);
}

.hp-chips {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  justify-content: space-between;
}

.hp-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  padding: 6px 10px;
  background: var(--paper);
  border: 1px solid rgba(11, 30, 63, 0.05);
  border-radius: 6px;
  color: var(--muted);
}

.hp-chip.best {
  background: rgba(200, 16, 46, 0.05);
  border-color: rgba(200, 16, 46, 0.2);
  color: var(--bullseye);
  font-weight: 600;
}

.hp-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 16px;
  margin-top: 16px;
}

.hp-streak {
  background: #FFFFFF;
  border: 1px solid rgba(11, 30, 63, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(11, 30, 63, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-streak-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  color: var(--ink);
}

.hp-streak-lab {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}

.hp-dots {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.hp-dots span {
  flex: 1;
  height: 4px;
  border-radius: 99px;
}

.hp-dots span.on {
  background: var(--bullseye);
}

.hp-dots span.off {
  background: var(--paper-3);
}

.hp-pb-card {
  background: #FFFFFF;
  border: 1px solid rgba(11, 30, 63, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(11, 30, 63, 0.06);
  position: relative;
}

.hp-pb-lab {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}

.hp-pb-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.hp-pb-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
}

/* ============ SECTION SHARED ============ */
section {
  padding: 120px 0;
  position: relative;
}

.section-divider {
  display: flex;
  justify-content: center;
  padding: 0;
  border: none;
}

.section-divider-mark {
  width: 20px;
  height: 20px;
  opacity: 0.3;
}

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  margin-bottom: 72px;
  align-items: end;
}

.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bullseye);
  padding-top: 10px;
}

.section-num::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--bullseye);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--bullseye);
  font-weight: 300;
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  section {
    padding: 80px 0;
  }
}

/* ============ MODULE BENTO GRID ============ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.module {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--night);
  border: 1px solid var(--night-border);
  border-radius: 18px;
  padding: 28px;
  color: var(--night-tx);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease;
}

.module:hover {
  transform: translateY(-4px);
  border-color: var(--night-border-2);
}

.module::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at top right, rgba(229, 32, 46, 0.08), transparent 65%);
  pointer-events: none;
}

.m-c4 {
  grid-column: span 4;
}

.m-c5 {
  grid-column: span 5;
}

.m-c6 {
  grid-column: span 6;
}

.m-c7 {
  grid-column: span 7;
}

.m-c8 {
  grid-column: span 8;
}

.m-c12 {
  grid-column: span 12;
}

.module-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.module-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-weight: 600;
}

.module-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--night-tx);
  margin: 6px 0 10px;
  line-height: 1.15;
}

.module-desc {
  color: var(--night-tx-2);
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
  position: relative;
}

.module-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--night-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  flex-shrink: 0;
  position: relative;
}

.module-body {
  margin-top: auto;
  position: relative;
}

@media (max-width: 900px) {
  .modules-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .m-c4,
  .m-c5,
  .m-c6,
  .m-c7,
  .m-c8 {
    grid-column: span 6;
  }
}

/* --- Widget: Dashboard --- */
.w-dashboard {
  background: var(--night-3);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.w-dashboard-radar {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}

.w-dashboard-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  color: var(--night-tx);
  letter-spacing: -0.02em;
}

.w-dashboard-num small {
  font-size: 18px;
  color: var(--accent-2);
}

/* --- Widget: Trend Chart --- */
.w-chart {
  background: var(--night-3);
  border-radius: 12px;
  padding: 18px;
}

.w-chart svg {
  width: 100%;
  height: 100px;
  display: block;
}

.w-chart-legend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--night-tx-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.w-chart-legend .val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: var(--accent-2);
  font-size: 14px;
}

/* --- Widget: Task List --- */
.w-tasks {
  background: var(--night-3);
  border-radius: 12px;
  padding: 18px;
}

.w-task-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--night-tx);
}

.w-check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--night-border-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.w-check.done {
  background: var(--accent);
  border-color: var(--accent);
}

.w-check.done svg {
  color: var(--night-tx);
}

.w-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--night-border);
  font-size: 11px;
  color: var(--night-tx-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.w-progress-bar {
  flex: 1;
  height: 4px;
  background: var(--night-4);
  border-radius: 99px;
  margin: 0 12px;
  overflow: hidden;
}

.w-progress-bar span {
  display: block;
  height: 100%;
  width: 66%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 99px;
}

.w-progress-num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-2);
  font-weight: 700;
}

/* --- Widget: Coach Card (no pricing) --- */
.w-coach {
  background: var(--night-3);
  border-radius: 12px;
  padding: 18px;
}

.w-coach-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.w-coach-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: var(--night-tx);
  font-size: 15px;
  flex-shrink: 0;
}

.w-coach-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--night-tx);
  display: flex;
  align-items: center;
  gap: 5px;
}

.w-coach-verify {
  width: 14px;
  height: 14px;
  color: var(--accent-2);
}

.w-coach-meta {
  font-size: 12px;
  color: var(--night-tx-2);
  margin-top: 2px;
}

.w-coach-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.w-coach-tag {
  font-size: 11px;
  padding: 4px 8px;
  background: var(--night-4);
  color: var(--night-tx-2);
  border-radius: 4px;
}

.w-coach-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--night-border);
  font-size: 12px;
  color: var(--night-tx-2);
}

.w-coach-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.w-coach-rating svg {
  color: var(--gold-app);
}

.w-coach-rating strong {
  color: var(--night-tx);
  font-family: 'JetBrains Mono', monospace;
}

.w-coach-avail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pos);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.w-coach-avail::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pos);
}

/* --- Widget: Sessions --- */
.w-session {
  background: var(--night-3);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.w-session+.w-session {
  margin-top: 8px;
}

.w-daychip {
  background: var(--night-4);
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  min-width: 44px;
  flex-shrink: 0;
}

.w-daychip .d {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  color: var(--night-tx);
}

.w-daychip .m {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--night-tx-2);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.w-session-info {
  flex: 1;
  min-width: 0;
}

.w-session-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--night-tx);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w-session-sub {
  font-size: 11px;
  color: var(--night-tx-2);
  margin-top: 2px;
}

.w-session-live {
  background: var(--accent);
  color: var(--night-tx);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.w-session-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--night-tx);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* --- Widget: Leaderboard --- */
.w-lb {
  background: var(--night-3);
  border-radius: 12px;
  padding: 14px;
}

.w-lb-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  gap: 10px;
  padding: 8px 8px;
  align-items: center;
  font-size: 13px;
  border-radius: 6px;
}

.w-lb-row.you {
  background: var(--accent-soft);
  border: 1px solid rgba(229, 32, 46, 0.3);
  margin-top: 4px;
}

.w-lb-rank {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--night-tx-2);
  text-align: center;
  font-weight: 600;
}

.w-lb-hex {
  background: var(--night-4);
  color: var(--night-tx);
  padding: 4px 8px;
  border-radius: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 11px;
  text-align: center;
}

.w-lb-hex.gold {
  background: linear-gradient(135deg, #FFB73D, #B08640);
  color: var(--night);
}

.w-lb-hex.silver {
  background: linear-gradient(135deg, #C7CDD8, #8A8578);
  color: var(--night);
}

.w-lb-hex.bronze {
  background: linear-gradient(135deg, #D08A4E, #A66B3B);
  color: var(--night);
}

.w-lb-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--night-tx);
  font-weight: 500;
  font-size: 13px;
}

.w-lb-you-badge {
  font-size: 9px;
  padding: 2px 6px;
  background: var(--accent);
  color: var(--night-tx);
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.w-lb-score {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--night-tx);
  font-size: 13px;
}

.w-lb-score.you {
  color: var(--accent-2);
}

.w-lb-trend {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 3px;
}

.w-lb-trend.up {
  background: var(--pos-soft);
  color: var(--pos);
}

/* --- Widget: Cross-Platform Devices --- */
.w-devices {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.7fr;
  gap: 24px;
  align-items: end;
  padding: 20px 0;
}

.device-frame {
  background: var(--night-3);
  border-radius: 12px;
  padding: 8px;
  position: relative;
}

/* Laptop */
.device-laptop {
  padding: 6px 6px 4px;
  border-radius: 8px 8px 4px 4px;
}

.device-laptop::after {
  content: '';
  display: block;
  height: 8px;
  background: var(--night-4);
  margin: 6px -14px 0;
  border-radius: 0 0 6px 6px;
  position: relative;
}

.device-screen {
  background: var(--night);
  border-radius: 6px;
  padding: 10px;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.device-screen-bar {
  height: 6px;
  background: var(--night-4);
  border-radius: 3px;
}

.device-screen-target {
  background: var(--night-2);
  border-radius: 4px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.device-mini-target {
  width: 60%;
  height: 60%;
  max-width: 80px;
  max-height: 80px;
}

.device-screen-line {
  height: 4px;
  background: var(--night-4);
  border-radius: 2px;
}

.device-screen-line.short {
  width: 60%;
}

/* Phone */
.device-phone {
  border-radius: 22px;
  padding: 4px;
  background: var(--night-4);
  max-width: 140px;
}

.device-phone-screen {
  background: var(--night);
  border-radius: 18px;
  aspect-ratio: 9 / 19;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.device-phone-notch {
  width: 40px;
  height: 4px;
  background: var(--night-4);
  border-radius: 99px;
  margin: 0 auto 8px;
}

.device-phone.android .device-phone-notch {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--night-4);
  margin-bottom: 6px;
}

.device-phone.android {
  border-radius: 16px;
}

.device-phone.android .device-phone-screen {
  border-radius: 12px;
}

.device-mini-radar {
  width: 60px;
  height: 60px;
  margin: 8px auto;
}

.device-line {
  height: 3px;
  background: var(--night-4);
  border-radius: 2px;
}

.device-line.accent {
  background: var(--accent-soft);
  width: 40%;
}

.device-label {
  text-align: center;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--night-tx-2);
  font-weight: 600;
}

.device-label .platform {
  color: var(--night-tx);
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 2px;
}

.device-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--night-border);
  flex-wrap: wrap;
}

.device-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--night-tx-2);
  font-size: 12px;
}

.device-feature svg {
  color: var(--pos);
}

@media (max-width: 640px) {
  .w-devices {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .device-phone {
    max-width: 120px;
  }
}

/* ============ HOW IT WORKS ============ */
#how {
  padding: 120px 0;
  position: relative;
}

.steps-wrapper {
  margin-top: 80px;
  position: relative;
}

.steps-timeline {
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--night-border);
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.step-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-node {
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid var(--night-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(11, 30, 63, 0.05);
}

.step-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  box-shadow: 0 20px 40px rgba(11, 30, 63, 0.04);
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(11, 30, 63, 0.04);
  border-bottom-width: 4px;
  min-height: 280px;
}

.card-1 {
  border-bottom-color: var(--bullseye);
}

.card-2 {
  border-bottom-color: var(--gold-light);
}

.card-3 {
  border-bottom-color: var(--ink);
}

.step-icon-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background: var(--paper-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 20px;
}

.arrow-circle {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bullseye);
  font-size: 12px;
}

.step-content-col {
  display: flex;
  flex-direction: column;
}

.step-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--bullseye);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}

.step-label::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--bullseye);
  margin-top: 6px;
}

.step-card-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.step-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-timeline {
    display: none;
  }

  .step-node {
    display: none;
  }

  .step-card {
    min-height: auto;
  }
}

/* ============ COACH TEASER ============ */
#coaches {
  padding: 0;
}

.coach-teaser {
  background-color: var(--paper);
  background-image: url('https://res.cloudinary.com/dcz3mvwdn/image/upload/v1783490416/CTA_-section-bg_ls0qin.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 62% auto;
  border-radius: 20px;
  padding: 64px 0 64px 64px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 30, 63, 0.06);
  box-shadow: 0 24px 64px rgba(11, 30, 63, 0.06);
  min-height: 520px;
}

.coach-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
}

.coach-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(11, 30, 63, 0.14);
  border-radius: 99px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.7);
}

.coach-eyebrow-tag .target-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coach-eyebrow-tag .target-dot {
  width: 7px;
  height: 7px;
  background: var(--bullseye);
  border-radius: 50%;
}

.coach-eyebrow-tag span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}

.coach-eyebrow-line {
  width: 28px;
  height: 1px;
  background: rgba(11, 30, 63, 0.2);
}

.coach-teaser-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-size: clamp(44px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.coach-teaser-title em {
  font-style: italic;
  color: var(--bullseye);
  font-weight: 300;
}

.coach-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.coach-divider-line {
  width: 24px;
  height: 1px;
  background: var(--gold-light);
}

.coach-divider-dot {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coach-divider-dot::after {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
}

.coach-teaser-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 420px;
}

.btn-coach-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bullseye);
  color: #fff;
  padding: 18px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 2px solid rgba(240, 201, 122, 0.4);
  cursor: pointer;
}

.btn-coach-cta:hover {
  background: #a80e26;
  transform: translateY(-1px);
}

/* Legacy btn-gold kept for other uses */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-light);
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--paper);
  transform: translateY(-1px);
}

.coach-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
  justify-content: center;
}

.coach-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px 24px 32px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(11, 30, 63, 0.07);
  border-left: 1px solid rgba(11, 30, 63, 0.07);
  position: relative;
}

.coach-feature:first-child {
  border-top-left-radius: 16px;
  border-top: 1px solid rgba(11, 30, 63, 0.07);
}

.coach-feature:last-child {
  border-bottom-left-radius: 16px;
}

.coach-feature-icon-wrap {
  width: 72px;
  height: 72px;
  background: #F5F4F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
  color: var(--ink);
  border: 1.5px solid var(--gold-light);
  position: relative;
}

.coach-feature-body {
  flex: 1;
}

.coach-feature-body strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}

.coach-feature-body span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.coach-feature-dot {
  width: 8px;
  height: 8px;
  background: var(--bullseye);
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .coach-teaser {
    grid-template-columns: 1fr 360px;
    padding: 56px 0 56px 48px;
  }
}

@media (max-width: 720px) {
  .coach-teaser {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 32px;
  }

  .coach-feature {
    border-right: 1px solid rgba(11, 30, 63, 0.07);
    border-radius: 0;
  }

  .coach-feature:first-child {
    border-radius: 16px 16px 0 0;
  }

  .coach-feature:last-child {
    border-radius: 0 0 16px 16px;
  }
}

/* ============ PRE-REGISTER ============ */
.signup-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.signup-lead-card {
  background: var(--ink) url('https://res.cloudinary.com/dcz3mvwdn/image/upload/v1783490409/03_Pre-Register-section-image_rr2ykr.png') no-repeat center right;
  background-size: cover;
  border-radius: 20px;
  padding: 48px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(11, 30, 63, 0.15);
}

.signup-lead-card h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.signup-lead-card p {
  color: rgba(247, 245, 238, 0.8);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 380px;
}

.signup-perks {
  list-style: none;
  display: grid;
  gap: 16px;
}

.signup-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--paper);
}

.signup-perks li i {
  color: var(--gold-light);
  font-size: 18px;
}

.signup-ready {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 10px 24px 10px 10px;
  background: rgba(247, 245, 238, 0.85);
  border-radius: 99px;
  color: var(--ink);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
}

.pulse-dot-wrap {
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.15);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--bullseye);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.2);
}

.signup-form {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 22px;
  background: #FFFFFF;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(11, 30, 63, 0.05);
  border: 1px solid rgba(11, 30, 63, 0.05);
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.field-label .opt {
  color: var(--muted-2);
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 11px;
  margin-left: 4px;
}

.field input,
.field select {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: #FFFFFF;
  border: 1px solid rgba(11, 30, 63, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--ink);
  outline: none;
  transition: all 0.2s;
}

.field-input-wrap {
  position: relative;
}

.field-input-wrap input,
.field-input-wrap select {
  width: 100%;
  box-sizing: border-box;
  padding-left: 40px;
}

.field-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
  font-size: 14px;
}

.field input:focus,
.field select:focus {
  border-color: var(--bullseye);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230B1E3F' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 32px;
}

.role-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.role-btn {
  background: #FFFFFF;
  border: 1px solid rgba(11, 30, 63, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.15s;
}

.role-btn:hover {
  border-color: var(--ink);
}

.role-btn.selected {
  border-color: var(--bullseye);
  background: rgba(200, 16, 46, 0.03);
}

.role-btn .role-icon {
  color: var(--muted-2);
  font-size: 20px;
  margin-top: 2px;
}

.role-btn.selected .role-icon {
  color: var(--bullseye);
}

.role-btn-name {
  font-weight: 600;
  font-size: 14px;
}

.role-btn-sub {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

.form-note-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(200, 16, 46, 0.04);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(200, 16, 46, 0.1);
}

.form-note-box i {
  color: var(--bullseye);
  font-size: 18px;
  margin-top: 2px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.form-success {
  display: none;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: var(--paper);
  padding: 44px 36px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.form-success.show {
  display: block;
  animation: successIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes successIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-success::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(240, 201, 122, 0.15), transparent 60%);
  pointer-events: none;
}

.form-success-check {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  position: relative;
}

.form-success h4 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 40;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
}

.form-success h4 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.form-success p {
  color: rgba(247, 245, 238, 0.75);
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto 20px;
  position: relative;
}

.form-success-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 8px 14px;
  background: rgba(240, 201, 122, 0.12);
  border-radius: 99px;
  font-weight: 500;
  position: relative;
}

@media (max-width: 900px) {
  .signup-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .signup-wrap {
    padding: 32px;
    border-radius: 14px;
  }

  .signup-form {
    padding: 28px;
  }
}

/* ============ FOOTER ============ */
footer {
  background: #061428;
  color: rgba(247, 245, 238, 0.6);
  padding: 48px 0 32px;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.05em;
  border: none;
}

.footer-platforms {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(247, 245, 238, 0.15);
  border-radius: 99px;
  font-size: 12px;
  color: rgba(247, 245, 238, 0.7);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-platform svg {
  color: var(--gold-light);
}

footer p {
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

footer .fine-print {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* Scroll-triggered fade-in */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cs-badge-dot::before {
    animation: none;
  }

  .w-session-live::before {
    animation: none;
  }
}


body.portal-page {
  --ink: #0B1E3F;
  --ink-2: #142A52;
  --paper: #F7F5EE;
  --paper-2: #EFEBDF;
  --paper-3: #E5E0D0;
  --bullseye: #C8102E;
  --gold: #B08640;
  --gold-light: #F0C97A;
  --muted: #4A5568;
  --muted-2: #8A8578;
  --pos: #1FAD52;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: clip;
}

/* ── Subtle paper texture radial glow ── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(200, 16, 46, 0.06), transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(176, 134, 64, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 50% at 5% 80%, rgba(11, 30, 63, 0.03), transparent 60%);
}

/* ── Confetti particle ── */
.confetti-particle {
  position: fixed;
  pointer-events: none;
  border-radius: 2px;
  animation: confettiFall linear forwards;
  z-index: 0;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(105vh) rotate(720deg);
    opacity: 0;
  }
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 30, 63, 0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 14px;
}

.brand-name span {
  color: var(--bullseye);
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(11, 30, 63, 0.15);
  padding: 9px 18px;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-back:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ── PAGE ── */
.page {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 80px;
}

/* ── BULLSEYE ICON ── */
.bullseye-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 44px;
  flex-shrink: 0;
}

.bullseye-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 16, 46, 0.18);
  animation: expandRing 3s ease-out infinite;
}

.bullseye-ring:nth-child(1) {
  inset: 0;
  animation-delay: 0s;
}

.bullseye-ring:nth-child(2) {
  inset: 14px;
  animation-delay: 0.4s;
  border-color: rgba(200, 16, 46, 0.28);
}

.bullseye-ring:nth-child(3) {
  inset: 28px;
  animation-delay: 0.8s;
  border-color: rgba(200, 16, 46, 0.42);
}

.bullseye-ring:nth-child(4) {
  inset: 42px;
  animation-delay: 1.2s;
  border-color: rgba(200, 16, 46, 0.6);
}

@keyframes expandRing {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

.bullseye-core {
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, #E5202E 0%, #C8102E 60%, #8B0B20 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.35), 0 2px 8px rgba(200, 16, 46, 0.2);
  animation: coreGlow 2s ease-in-out infinite alternate;
}

@keyframes coreGlow {
  from {
    box-shadow: 0 6px 24px rgba(200, 16, 46, 0.3), 0 2px 8px rgba(200, 16, 46, 0.15);
  }

  to {
    box-shadow: 0 12px 40px rgba(200, 16, 46, 0.5), 0 4px 16px rgba(200, 16, 46, 0.25);
  }
}

.bullseye-check {
  color: #fff;
  font-size: 18px;
}

/* ── CARD ── */
.success-card {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  text-align: center;
}

/* Confirmed badge */
.confirm-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(31, 173, 82, 0.08);
  border: 1px solid rgba(31, 173, 82, 0.22);
  border-radius: 99px;
  padding: 8px 20px 8px 12px;
  margin-bottom: 36px;
}

.confirm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pos);
  position: relative;
  flex-shrink: 0;
}

.confirm-dot::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--pos);
  opacity: 0.25;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 0.25;
  }

  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.confirm-badge-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pos);
}

/* Headline */
.success-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  font-weight: 300;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}

.success-title em {
  font-style: italic;
  color: var(--bullseye);
  font-weight: 300;
}

/* Gold divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  max-width: 280px;
}

.gold-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider-icon {
  width: 20px;
  height: 20px;
  margin: 0 12px;
  opacity: 0.7;
}

/* Description */
.success-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 48px;
}

/* ── RECEIPT CARD ── */
.receipt-card {
  background: #ffffff;
  border: 1px solid rgba(11, 30, 63, 0.07);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(11, 30, 63, 0.06);
}

.receipt-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at top right, rgba(200, 16, 46, 0.04), transparent 65%);
  pointer-events: none;
}

/* Perforated top strip */
.receipt-card::after {
  content: '';
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--paper-3) 0px, var(--paper-3) 6px, transparent 6px, transparent 12px);
}

.receipt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--paper-3);
}

.receipt-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.receipt-brand-mark {
  width: 20px;
  height: 20px;
}

.receipt-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.receipt-brand-name span {
  color: var(--bullseye);
}

.receipt-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  background: rgba(176, 134, 64, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(176, 134, 64, 0.2);
}

.receipt-rows {
  display: grid;
  gap: 14px;
}

.receipt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.receipt-row-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.receipt-row-key i {
  color: var(--muted-2);
  width: 14px;
  text-align: center;
}

.receipt-row-val {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}

.receipt-row-val.accent {
  color: var(--bullseye);
}

.receipt-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--paper-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.receipt-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--pos);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.receipt-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pos);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.receipt-platform-badges {
  display: flex;
  gap: 8px;
}

.receipt-platform-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--paper-3);
  border-radius: 99px;
  color: var(--muted-2);
  background: var(--paper-2);
}

/* ── NEXT STEPS ── */
.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.next-step {
  background: #ffffff;
  border: 1px solid rgba(11, 30, 63, 0.07);
  border-bottom: 3px solid var(--paper-3);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(11, 30, 63, 0.04);
  transition: transform 0.2s, box-shadow 0.2s, border-bottom-color 0.2s;
}

.next-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11, 30, 63, 0.07);
  border-bottom-color: var(--bullseye);
}

.next-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bullseye);
  font-weight: 700;
  margin-bottom: 14px;
}

.next-step-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: 14px;
  font-size: 16px;
}

.next-step-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}

.next-step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA BUTTONS ── */
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11, 30, 63, 0.18);
}

.btn-primary-light:hover {
  background: var(--bullseye);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 16, 46, 0.25);
}

.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  padding: 18px 28px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  background: transparent;
  border: 1.5px solid rgba(11, 30, 63, 0.2);
  border-radius: 6px;
  cursor: pointer;
}

.btn-secondary-light:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* ── PLATFORMS FOOTER ── */
.platforms-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px dotted rgba(11, 30, 63, 0.15);
  flex-wrap: wrap;
}

.platform-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.platform-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid rgba(11, 30, 63, 0.1);
  border-radius: 99px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--muted);
  background: #fff;
  box-shadow: 0 2px 8px rgba(11, 30, 63, 0.04);
}

.platform-badge i {
  color: var(--bullseye);
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .next-steps {
    grid-template-columns: 1fr;
  }

  .receipt-card {
    padding: 24px 20px;
  }

  .receipt-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .platforms-row {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-light,
  .btn-secondary-light {
    justify-content: center;
  }
}


/* RESPONSIVE ADDITIONS */
@media (max-width: 1024px) {

  .hero-grid,
  .two-col-cards,
  .signup-grid {
    grid-template-columns: 1fr !important;
  }

  .officials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prize-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    padding: 20px;
  }

  .prize-row-icon {
    grid-column: 1 / -1;
  }

  .prize-row-info {
    grid-column: 1 / -1;
    text-align: center;
  }

  .prize-divider {
    display: none;
  }
}

@media (max-width: 768px) {

  .register::before,
  .portal-teaser::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 250, 247, 0.88);
    z-index: 0;
  }

  .register>.container,
  .portal-teaser>.container {
    position: relative;
    z-index: 1;
  }

  .rulebook-card {
    padding: 24px !important;
  }

  .rulebook-card-header {
    flex-direction: column;
    gap: 16px;
  }

  .rulebook-card-header-icon {
    margin-right: 0 !important;
  }

  .officials-grid,
  .schedule-grid,
  .modules-grid,
  .steps-grid,
  .two-col-lists {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }

  .m-c4,
  .m-c5,
  .m-c6,
  .m-c7,
  .m-c8,
  .m-c12 {
    grid-column: 1 / -1 !important;
  }

  .hp-row {
    grid-template-columns: 1fr !important;
  }

  .w-devices {
    flex-direction: column !important;
  }

  .prize-row {
    grid-template-columns: 1fr !important;
  }

  .nav-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
  }

  body.portal-page .nav-cta,
  body.championship-page .nav-cta {
    display: none;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  section {
    padding: 60px 0 !important;
  }

  .hero-grid {
    padding: 40px 0 !important;
  }

  .prize-row-info {
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
  }

  h1.hero-title {
    font-size: clamp(40px, 10vw, 52px) !important;
  }

  h1.hero-title em {
    font-size: clamp(40px, 10vw, 52px) !important;
  }

  .hero-actions,
  .cta-row {
    justify-content: center;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary,
  .btn-coach-cta,
  .btn-primary-light,
  .btn-secondary-light {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-preview {
    margin-top: 40px;
  }

  .coach-teaser {
    flex-direction: column;
  }

  .form-row,
  .role-toggle {
    flex-direction: column;
  }

  .role-btn {
    width: 100%;
  }

  .next-steps {
    grid-template-columns: 1fr;
  }

  /* ---- Portal hero mobile ---- */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .hero-preview {
    display: none;
    /* hide heavy widget stack on mobile to keep hero clean */
  }

  h1.hero-title {
    font-size: clamp(38px, 11vw, 54px) !important;
    line-height: 1.05 !important;
  }

  .hero-desc {
    font-size: 15px !important;
    max-width: 100% !important;
  }

  .hero-availability {
    flex-wrap: wrap !important;
    gap: 12px !important;
    max-width: 100% !important;
  }

  .cs-badge {
    font-size: 8px !important;
    letter-spacing: 0.12em !important;
    padding: 6px 12px 6px 10px !important;
  }

  /* ---- Coach CTA section mobile ---- */
  .coach-teaser {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 40px 24px !important;
    background-position: center top !important;
    background-size: cover !important;
    position: relative !important;
  }

  .coach-teaser::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(247, 245, 238, 0.9) !important;
    z-index: 0 !important;
  }

  .coach-left,
  .coach-features {
    position: relative !important;
    z-index: 1 !important;
  }

  .coach-left {
    max-width: 100% !important;
  }

  .coach-teaser-title {
    font-size: clamp(32px, 9vw, 44px) !important;
  }

  .coach-feature {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    padding: 18px 16px !important;
  }

  .coach-feature:first-child {
    border-top: 1px solid rgba(11, 30, 63, 0.07) !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .coach-feature:last-child {
    border-radius: 0 0 12px 12px !important;
  }

  /* ---- Pre-Register section mobile ---- */
  .signup-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  #signup.signup-section,
  section#signup {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .signup-left .section-title {
    font-size: clamp(32px, 9vw, 48px) !important;
    line-height: 1.1 !important;
  }

  .signup-form {
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .signup-lead-card {
    padding: 32px 24px !important;
    background-position: center center !important;
  }

  /* Overlay on signup-lead-card for mobile readability */
  .signup-lead-card::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(11, 30, 63, 0.72) !important;
    border-radius: 20px !important;
    z-index: 0 !important;
  }

  .signup-lead-card>* {
    position: relative !important;
    z-index: 1 !important;
  }

  .signup-lead-card h3 {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  .signup-lead-card p {
    max-width: 100% !important;
  }

  /* Ensure container has side breathing room */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* ---- Success Page Mobile ---- */
  .portal-page nav:has(.nav-back) .nav-inner {
    flex-wrap: nowrap !important;
  }

  .nav-back {
    white-space: nowrap !important;
  }

  .success-card {
    padding: 0 20px;
  }

  .success-title {
    font-size: clamp(32px, 8vw, 42px) !important;
    margin-bottom: 20px !important;
  }

  .success-desc {
    font-size: 15px !important;
    margin-bottom: 32px !important;
  }

  .receipt-card {
    padding: 24px 20px !important;
    margin-bottom: 24px !important;
  }

  .receipt-card::after {
    top: 68px !important;
  }

  .receipt-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(11, 30, 63, 0.08);
  }

  .receipt-row:last-child {
    border-bottom: none;
  }

  .receipt-footer {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .next-steps {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 20px !important;
  }

  .next-step {
    padding: 24px !important;
  }

  .platforms-row {
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
  }
}