:root {
  --velora-bg: #120405;
  --velora-bg-deep: #1c0809;
  --velora-bg-soft: #240c0e;
  --velora-panel: rgba(255, 255, 255, 0.045);
  --velora-panel-strong: rgba(255, 255, 255, 0.07);
  --velora-panel-hot: rgba(166, 18, 28, 0.24);
  --velora-line: rgba(255, 228, 230, 0.1);
  --velora-line-strong: rgba(255, 228, 230, 0.16);
  --velora-text: #fff6f6;
  --velora-text-soft: rgba(255, 246, 246, 0.82);
  --velora-text-muted: rgba(255, 246, 246, 0.62);
  --velora-accent: #ff4d5f;
  --velora-accent-deep: #b11427;
  --velora-accent-glow: rgba(255, 77, 95, 0.22);
  --velora-copper: #ffb08d;
  --velora-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --velora-shadow-heavy: 0 38px 100px rgba(0, 0, 0, 0.42);
  --velora-radius-xl: 34px;
  --velora-radius-lg: 24px;
  --velora-radius-md: 18px;
  --velora-radius-pill: 999px;
  --velora-wrap: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body.velora-body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--velora-text);
  background:
    radial-gradient(circle at top left, rgba(177, 20, 39, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 77, 95, 0.18), transparent 24%),
    linear-gradient(180deg, #100304 0%, #170607 18%, #100304 100%);
  line-height: 1.6;
}

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

a,
button {
  transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

button {
  font: inherit;
}

.velora-frame {
  width: 100%;
  max-width: calc(var(--velora-wrap) + 48px);
  margin: 0 auto;
  padding: 0 24px;
}

.velora-mast {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(13, 4, 5, 0.84);
  border-bottom: 1px solid rgba(255, 228, 230, 0.06);
}

.velora-mast__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.velora-sign {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--velora-text);
  flex-shrink: 0;
}

.velora-sign__orb {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--velora-accent-deep), var(--velora-accent));
  box-shadow: 0 18px 36px rgba(255, 77, 95, 0.34);
}

.velora-sign__text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.velora-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--velora-line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.velora-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--velora-text);
}

.velora-toggle.is-live span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.velora-toggle.is-live span:nth-child(2) {
  opacity: 0;
}

.velora-toggle.is-live span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.velora-rail {
  margin-left: auto;
}

.velora-rail__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.velora-rail__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 246, 246, 0.82);
  font-weight: 600;
  font-size: 15px;
}

.velora-rail__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--velora-copper);
}

.velora-rail__link:hover,
.velora-rail__link:focus-visible {
  color: var(--velora-text);
}

.velora-rail__link:hover::after,
.velora-rail__link:focus-visible::after {
  width: 100%;
}

.velora-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 42px;
}

.velora-hero::before,
.velora-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
}

.velora-hero::before {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -120px;
  background: rgba(255, 77, 95, 0.12);
}

.velora-hero::after {
  width: 360px;
  height: 360px;
  right: -110px;
  bottom: 30px;
  background: rgba(177, 20, 39, 0.18);
}

.velora-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 32px;
  align-items: center;
}


.velora-hero__copy,
.velora-hero__visual,
.velora-split__copy,
.velora-watchcard__copy,
.velora-ladder {
  position: relative;
}
.velora-chip,
.velora-heading__mini,
.velora-ribbon__label,
.velora-watchcard__flag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--velora-radius-pill);
  border: 1px solid rgba(255, 176, 141, 0.18);
  background: rgba(255, 77, 95, 0.08);
  color: var(--velora-copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.velora-hero__title {
  margin-top: 18px;
  max-width: 740px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.velora-hero__lead {
  margin-top: 20px;
  max-width: 650px;
  font-size: 18px;
  color: var(--velora-text-soft);
}

.velora-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.velora-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 24px;
  border-radius: var(--velora-radius-pill);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.velora-cta--solid {
  color: #220607;
  background: linear-gradient(135deg, var(--velora-copper), var(--velora-accent));
  box-shadow: 0 18px 38px rgba(255, 77, 95, 0.24);
}

.velora-cta--ghost {
  color: var(--velora-text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--velora-line-strong);
}

.velora-cta:hover,
.velora-cta:focus-visible {
  transform: translateY(-2px);
}

.velora-scoreband {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.velora-scoreband__tile,
.velora-radar__card,
.velora-ribbon__item,
.velora-watchcard,
.velora-citytile,
.velora-faq__item,
.velora-notes,
.velora-showcase__panel {
  border: 1px solid var(--velora-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--velora-shadow);
}

.velora-scoreband__tile {
  min-height: 132px;
  padding: 18px;
  border-radius: 20px;
}

.velora-scoreband__tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.velora-scoreband__tile span {
  color: var(--velora-text-muted);
  font-size: 14px;
}

.velora-showcase {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 228, 230, 0.08);
  box-shadow: var(--velora-shadow-heavy);
}

.velora-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 0, 0, 0.08) 0%, rgba(10, 0, 0, 0.38) 100%);
  pointer-events: none;
}

.velora-showcase__image {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.velora-showcase__panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(10px);
}

.velora-showcase__eyebrow {
  color: var(--velora-copper);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.velora-showcase__line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 228, 230, 0.08);
}

.velora-showcase__line span {
  color: var(--velora-text-muted);
}

.velora-showcase__line strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.velora-ribbon {
  padding: 18px 0 0;
}

.velora-ribbon__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.velora-ribbon__item {
  padding: 24px;
  border-radius: 24px;
}

.velora-ribbon__item h2 {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.velora-ribbon__item p {
  margin-top: 12px;
  color: var(--velora-text-soft);
}

.velora-section {
  padding: 90px 0;
}

.velora-section--deep {
  background: linear-gradient(180deg, rgba(177, 20, 39, 0.08) 0%, rgba(22, 4, 5, 0) 100%);
}

.velora-section--faq {
  padding-top: 78px;
}

.velora-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.velora-heading--tight {
  margin-bottom: 28px;
}

.velora-heading__title,
.velora-split__title,
.velora-outro__title {
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 900;
  max-width: 760px;
}

.velora-heading__text,
.velora-split__text,
.velora-outro__title {
  color: var(--velora-text-soft);
}

.velora-radar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.velora-radar__card {
  border-radius: 24px;
  padding: 24px;
}

.velora-radar__index {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 77, 95, 0.12);
  color: var(--velora-copper);
  font-weight: 900;
}

.velora-radar__card h3 {
  margin-top: 20px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.velora-radar__card p {
  margin-top: 12px;
  color: var(--velora-text-soft);
}

.velora-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.velora-split__media,
.velora-citydeck__lead {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 228, 230, 0.08);
  box-shadow: var(--velora-shadow-heavy);
}

.velora-split__image,
.velora-citydeck__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.velora-bullets {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.velora-bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--velora-text-soft);
}

.velora-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--velora-copper), var(--velora-accent));
}

.velora-ladder__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.velora-ladder__steps {
  display: grid;
  gap: 18px;
}

.velora-step {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--velora-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.velora-step__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 900;
  color: var(--velora-copper);
  background: rgba(255, 77, 95, 0.1);
}

.velora-step h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.velora-step p {
  margin-top: 10px;
  color: var(--velora-text-soft);
}

.velora-notes {
  border-radius: 28px;
  overflow: hidden;
}

.velora-notes__image {
  width: 100%;
  /*height: 340px;*/
  object-fit: cover;
}

.velora-notes__body {
  padding: 22px;
}

.velora-notes__body h3 {
  font-size: 28px;
  letter-spacing: -0.03em;
}

.velora-notes__body p {
  margin-top: 12px;
  color: var(--velora-text-soft);
}

.velora-tagset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.velora-tagset span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--velora-radius-pill);
  border: 1px solid rgba(255, 176, 141, 0.16);
  background: rgba(255, 77, 95, 0.08);
  color: var(--velora-copper);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.velora-watchgrid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.velora-watchcard {
  min-height: 250px;
  padding: 22px;
  border-radius: 24px;
}

.velora-watchcard--wide {
  grid-column: span 2;
  background:
    linear-gradient(180deg, rgba(177, 20, 39, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.velora-watchcard h3 {
  margin-top: 16px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.velora-watchcard p {
  margin-top: 12px;
  color: var(--velora-text-soft);
}

.velora-watchcard b {
  display: inline-block;
  margin-top: 18px;
  color: var(--velora-copper);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.velora-watchcard--media {
  padding: 0;
  overflow: hidden;
}

.velora-watchcard__media {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.velora-citydeck {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.velora-citydeck__lead {
  grid-row: span 2;
}

.velora-citytile {
  padding: 24px;
  border-radius: 24px;
}

.velora-citytile h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.velora-citytile p {
  margin-top: 12px;
  color: var(--velora-text-soft);
}

.velora-faq {
  display: grid;
  gap: 16px;
}

.velora-faq__item {
  border-radius: 22px;
  overflow: hidden;
}

.velora-faq__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--velora-text);
  text-align: left;
  cursor: pointer;
}

.velora-faq__button span:first-child {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.velora-faq__plus {
  font-size: 28px;
  line-height: 1;
  color: var(--velora-copper);
}

.velora-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s ease;
}

.velora-faq__panel p {
  overflow: hidden;
  color: var(--velora-text-soft);
  padding: 0 24px 0;
}

.velora-faq__item--open .velora-faq__panel {
  grid-template-rows: 1fr;
}

.velora-faq__item--open .velora-faq__panel p {
  padding-bottom: 24px;
}

.velora-faq__item--open .velora-faq__plus {
  transform: rotate(45deg);
}

.velora-outro {
  padding: 0 0 90px;
}

.velora-outro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(255, 228, 230, 0.08);
  background:
    linear-gradient(135deg, rgba(177, 20, 39, 0.18), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--velora-shadow-heavy);
}

@media (max-width: 1100px) {
  .velora-hero__grid,
  .velora-split,
  .velora-ladder__grid {
    grid-template-columns: 1fr;
  }

  .velora-radar,
  .velora-ribbon__grid,
  .velora-watchgrid,
  .velora-citydeck,
  .velora-scoreband {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .velora-watchcard--wide,
  .velora-citydeck__lead {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .velora-toggle {
    display: inline-flex;
  }

  .velora-rail {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--velora-line);
    background: rgba(19, 5, 6, 0.96);
    box-shadow: var(--velora-shadow-heavy);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .velora-rail.is-live {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .velora-rail__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .velora-hero {
    padding-top: 42px;
  }

  .velora-showcase__image {
    min-height: 420px;
  }

  .velora-outro__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .velora-frame {
    padding: 0 18px;
  }

  .velora-mast__inner {
    min-height: 74px;
  }

  .velora-sign__text {
    font-size: 20px;
  }

  .velora-hero__title {
    font-size: 36px;
  }

  .velora-hero__lead,
  .velora-heading__text,
  .velora-step p,
  .velora-watchcard p,
  .velora-citytile p,
  .velora-radar__card p,
  .velora-ribbon__item p,
  .velora-notes__body p {
    font-size: 15px;
  }

  .velora-radar,
  .velora-ribbon__grid,
  .velora-watchgrid,
  .velora-citydeck,
  .velora-scoreband {
    grid-template-columns: 1fr;
  }

  .velora-section {
    padding: 64px 0;
  }

  .velora-showcase__panel,
  .velora-ribbon__item,
  .velora-radar__card,
  .velora-watchcard,
  .velora-citytile,
  .velora-step,
  .velora-notes__body,
  .velora-outro__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .velora-faq__button {
    padding-left: 18px;
    padding-right: 18px;
  }

  .velora-faq__panel p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .velora-ladder__steps {
    gap: 14px;
  }

  .velora-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .velora-step h3,
  .velora-citytile h3,
  .velora-radar__card h3,
  .velora-ribbon__item h2,
  .velora-watchcard h3,
  .velora-faq__button span:first-child {
    font-size: 22px;
  }
}


.velora-split__copy article {
  display: grid;
  gap: 18px;
}

.velora-split__copy article h2 {
  margin: 16px 0 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--velora-text);
}

.velora-split__copy article h3 {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--velora-copper);
}

.velora-split__copy article p {
  margin: 0;
  color: var(--velora-text-soft);
}

.velora-split__copy article ul {
  list-style: none;
  margin: 2px 0 4px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.velora-split__copy article li {
  position: relative;
  padding-left: 24px;
  color: var(--velora-text-soft);
}

.velora-split__copy article li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--velora-copper), var(--velora-accent));
}


.velora-fold {
  position: relative;
  margin-top: 22px;
  display: grid;
  gap: 18px;
  max-height: 560px;
  overflow: hidden;
  transition: max-height 0.42s ease;
}

.velora-fold::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 132px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(28, 8, 9, 0) 0%, rgba(28, 8, 9, 0.86) 58%, rgba(28, 8, 9, 0.98) 100%);
  transition: opacity 0.24s ease;
}

.velora-fold.is-open {
  max-height: 10000px;
}

.velora-fold.is-open::after {
  opacity: 0;
}

.velora-fold__toggle {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(255, 176, 141, 0.22);
  border-radius: var(--velora-radius-pill);
  background: linear-gradient(135deg, rgba(255, 77, 95, 0.18), rgba(177, 20, 39, 0.24));
  color: var(--velora-text);
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.velora-fold__toggle:hover,
.velora-fold__toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 176, 141, 0.36);
  box-shadow: 0 20px 40px rgba(255, 77, 95, 0.18);
}

.velora-fold__toggle-mark {
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.24s ease;
}

.velora-fold__toggle[aria-expanded="true"] .velora-fold__toggle-mark {
  transform: rotate(-135deg) translateY(-1px);
}

@media (max-width: 767px) {
  .velora-fold {
    max-height: 430px;
  }

  .velora-fold::after {
    height: 110px;
  }

  .velora-fold__toggle {
    width: 100%;
  }
}

.velora-footer {
  position: relative;
  padding: 72px 0 28px;
  margin-top: 72px;
  background:
    radial-gradient(circle at top left, rgba(255, 92, 92, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 46, 46, 0.12), transparent 26%),
    linear-gradient(180deg, #120707 0%, #0c0404 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.velora-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 85%);
  pointer-events: none;
}

.velora-footer .velora-frame {
  position: relative;
  z-index: 1;
}

.velora-footer__shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(360px, 1fr);
  gap: 36px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.velora-footer__brand {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.velora-footer__brand:hover {
  color: #ff8b8b;
}

.velora-footer__lead {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.75;
}

.velora-footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.velora-footer__chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 92, 92, 0.28);
  border-radius: 999px;
  background: rgba(255, 59, 59, 0.1);
  color: #ffd7d7;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.velora-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 24px;
}

.velora-footer__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.velora-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.velora-footer__list li + li {
  margin-top: 10px;
}

.velora-footer__list a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.velora-footer__list a:hover {
  color: #ff9d9d;
  transform: translateX(2px);
}

.velora-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 6px 0;
}

.velora-footer__copy,
.velora-footer__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.7;
}

.velora-footer__note {
  max-width: 420px;
  text-align: right;
}

@media (max-width: 980px) {
  .velora-footer__shell {
    grid-template-columns: 1fr;
  }

  .velora-footer__grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .velora-footer__bottom {
    flex-direction: column;
  }

  .velora-footer__note {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .velora-footer {
    padding: 56px 0 24px;
    margin-top: 56px;
  }

  .velora-footer__shell {
    padding: 24px 18px;
    border-radius: 22px;
    gap: 28px;
  }

  .velora-footer__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .velora-footer__brand {
    font-size: 1.28rem;
  }

  .velora-footer__lead {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

/* GoalHarbor article pages */
.gh-page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 34px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 77, 95, 0.18), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(255, 176, 141, 0.14), transparent 26%);
}
.gh-page-hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -220px auto;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(177, 20, 39, 0.22);
  filter: blur(12px);
}
.gh-page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: center;
}
.gh-page-hero__title {
  margin: 18px 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 900;
}
.gh-page-hero__desc {
  max-width: 780px;
  color: var(--velora-text-soft);
  font-size: 1.08rem;
  line-height: 1.78;
}
.gh-page-hero__media {
  overflow: hidden;
  border-radius: var(--velora-radius-xl);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--velora-shadow-heavy);
  background: var(--velora-panel);
}
.gh-page-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.gh-layout {
  padding: 54px 0 20px;
}
.gh-layout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}
.gh-article {
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--velora-radius-xl);
  border: 1px solid var(--velora-line-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.026));
  box-shadow: var(--velora-shadow);
}
.gh-article h2 {
  margin: 42px 0 16px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.13;
  letter-spacing: -0.035em;
}
.gh-article h2:first-child {
  margin-top: 0;
}
.gh-article h3 {
  margin: 30px 0 12px;
  font-size: 1.42rem;
  line-height: 1.25;
}
.gh-article p,
.gh-article li {
  color: var(--velora-text-soft);
  font-size: 1rem;
  line-height: 1.82;
}
.gh-article p + p {
  margin-top: 16px;
}
.gh-article a,
.gh-sidebar a,
.gh-cardgrid a {
  color: var(--velora-copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,176,141,0.34);
}
.gh-article a:hover,
.gh-sidebar a:hover,
.gh-cardgrid a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}
.gh-article__list {
  margin: 14px 0 22px 22px;
  padding-left: 18px;
}
.gh-article__list li + li {
  margin-top: 8px;
}
.gh-article__leadline {
  margin-top: 18px;
  color: var(--velora-text);
}
.gh-sidebar {
  position: sticky;
  top: 104px;
  padding: 24px;
  border-radius: var(--velora-radius-lg);
  border: 1px solid var(--velora-line);
  background: rgba(255,255,255,0.045);
  box-shadow: 0 18px 46px rgba(0,0,0,0.23);
}
.gh-sidebar__title {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--velora-copper);
}
.gh-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gh-sidebar__list li + li {
  margin-top: 12px;
}
.gh-sidebar__list a {
  display: inline;
  line-height: 1.55;
}
.gh-cardgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.gh-cardgrid__card {
  padding: 22px;
  border-radius: var(--velora-radius-lg);
  border: 1px solid var(--velora-line);
  background: rgba(255,255,255,0.04);
}
.gh-cardgrid__card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}
.gh-cardgrid__card p {
  margin: 0;
  color: var(--velora-text-muted);
  line-height: 1.65;
}
.gh-page-list {
  padding: 74px 0 20px;
}
@media (max-width: 980px) {
  .gh-page-hero__grid,
  .gh-layout__grid {
    grid-template-columns: 1fr;
  }
  .gh-sidebar {
    position: static;
  }
  .gh-cardgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .gh-cardgrid {
    grid-template-columns: 1fr;
  }
  .gh-page-hero {
    padding-top: 48px;
  }
}

/* GoalHarbor affiliate CTA buttons */
.gh-affiliate-panel {
  padding: 34px 0;
  position: relative;
}

.gh-affiliate-panel--after-hero {
  padding-top: 10px;
}

.gh-affiliate-panel--before-footer {
  padding-bottom: 0;
}

.gh-affiliate-strip {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-radius: var(--velora-radius-xl);
  border: 1px solid rgba(255, 176, 141, 0.16);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 176, 141, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(177, 20, 39, 0.34), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--velora-shadow-heavy);
  overflow: hidden;
}

.gh-affiliate-strip::before {
  content: "";
  position: absolute;
  inset: auto 18% 0 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 141, 0.45), transparent);
  pointer-events: none;
}

.gh-affiliate-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 26px;
  border-radius: var(--velora-radius-pill);
  border: 1px solid transparent;
  color: var(--velora-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, opacity 0.22s ease;
}

.gh-affiliate-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  opacity: 0.46;
  pointer-events: none;
  z-index: -1;
}

.gh-affiliate-button:hover,
.gh-affiliate-button:focus-visible {
  transform: translateY(-2px) scale(1.015);
  outline: none;
}

.gh-affiliate-button:active {
  transform: translateY(0) scale(0.99);
}

.gh-affiliate-button[data-offer="register"] {
  color: #260607;
  background: linear-gradient(135deg, #ffd0b7 0%, var(--velora-copper) 38%, var(--velora-accent) 100%);
  border-color: rgba(255, 176, 141, 0.46);
  box-shadow: 0 18px 40px rgba(255, 77, 95, 0.28), 0 0 0 6px rgba(255, 176, 141, 0.08);
}

.gh-affiliate-button[data-offer="register"]:hover,
.gh-affiliate-button[data-offer="register"]:focus-visible {
  box-shadow: 0 24px 52px rgba(255, 77, 95, 0.38), 0 0 0 8px rgba(255, 176, 141, 0.12);
}

.gh-affiliate-button[data-offer="landing"] {
  color: #fff7f2;
  background: linear-gradient(135deg, #c4172d 0%, #ff4d5f 52%, #ff8f73 100%);
  border-color: rgba(255, 77, 95, 0.48);
  box-shadow: 0 18px 40px rgba(177, 20, 39, 0.34), 0 0 0 6px rgba(255, 77, 95, 0.08);
}

.gh-affiliate-button[data-offer="landing"]:hover,
.gh-affiliate-button[data-offer="landing"]:focus-visible {
  box-shadow: 0 24px 52px rgba(255, 77, 95, 0.38), 0 0 0 8px rgba(255, 77, 95, 0.12);
}

.gh-affiliate-button[data-offer="betting"] {
  color: var(--velora-text);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 77, 95, 0.18) 48%, rgba(177, 20, 39, 0.46) 100%);
  border-color: rgba(255, 228, 230, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.gh-affiliate-button[data-offer="betting"]:hover,
.gh-affiliate-button[data-offer="betting"]:focus-visible {
  border-color: rgba(255, 176, 141, 0.38);
  box-shadow: 0 24px 48px rgba(177, 20, 39, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.velora-rail__cta {
  display: flex;
}

.gh-affiliate-button--nav {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0;
}

@media (min-width: 821px) {
  .velora-rail__list {
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .velora-rail__cta,
  .gh-affiliate-button--nav {
    width: 100%;
  }

  .gh-affiliate-button--nav {
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  .gh-affiliate-strip {
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }

  .gh-affiliate-button {
    width: 100%;
    min-height: 56px;
  }
}

