:root {
  --container-width: 1200px;
  --page-bg: #ffffff;
  --surface-soft: rgba(251, 249, 243, 1);
  --surface-warm: #fff2d8;
  --surface-warm-strong: #ffe3b0;
  --text-strong: #261305;
  --text-body: #5f5043;
  --text-muted: #8e7d6d;
  --line: rgba(91, 71, 54, 0.24);
  --line-strong: rgba(91, 71, 54, 1);
  --accent: #ff8e2a;
  --accent-deep: #f67000;
  --button-bg: #201104;
  --button-bg-hover: #2e1706;
  --footer-bg: #160d04;
  --footer-text: rgba(255, 255, 255, 0.78);
  --shadow-soft: 0 20px 40px rgba(203, 130, 37, 0.12);
  --shadow-card: 0 16px 32px rgba(187, 131, 66, 0.1);
  --security-gap: 16px;
  --risk-strip-height: 20px;
  /* TK hero reward card: warm outline (not near-black line-strong) */
  --hero-subline-border: rgba(184, 128, 82, 0.48);
}

.risk-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--risk-strip-height);
  min-height: 0;
  padding: 0 6px;
  background: linear-gradient(90deg, #e05f0a 0%, #f07818 42%, #ffb347 100%);
  color: #ffffff;
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--page-bg);
  color: var(--text-strong);
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

button,
select {
  font: inherit;
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: var(--risk-strip-height);
  left: 0;
  z-index: 10;
  width: 100%;
  height: 82px;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease,
    -webkit-backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(91, 71, 54, 0.12);
  background: rgba(255, 248, 236, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(187, 131, 66, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
}

.site-header__brand img {
  width: 134px;
  height: 44px;
}

.language-select {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

.language-select__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: auto;
  height: 24px;
  padding: 0 0 0 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 0, 0, 1);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled .language-select__trigger {
  background: transparent;
  box-shadow: none;
}

.language-select__icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  pointer-events: none;
}

.language-select__icon img {
  width: 100%;
  height: 100%;
}

.language-select__value {
  display: block;
  color: rgba(0, 0, 0, 1);
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.language-select__trigger:focus-visible,
.language-select__option:focus-visible {
  outline: 2px solid rgba(249, 122, 37, 0.4);
  outline-offset: 2px;
}

.language-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  max-height: min(70vh, 480px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.language-select.is-open .language-select__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-select__option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(0, 0, 0, 1);
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.language-select__option.is-active {
  background: rgba(249, 122, 37, 0.12);
  color: rgba(249, 122, 37, 1);
}

.language-select select {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  outline: none;
}

[dir="rtl"] .language-select__menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .language-select {
  align-items: flex-start;
}

.hero {
  position: relative;
  min-height: 820px;
  background: url("./assets/bg.png") center top / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 120px;
  /* background: linear-gradient(180deg, rgba(255, 245, 230, 0) 0%, #ffffff 100%); */
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 820px;
  padding-top: calc(82px + var(--risk-strip-height));
}

.hero-card__content {
  width: max-content;
  padding-top: 14px;
}

.hero-card__cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
  width: max-content;
  max-width: 100%;
}

.hero-card__cta-block > a {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.hero-card__title {
  margin: 0 0 28px;
  color: var(--text-strong);
  font-size: 58px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.hero-card__title-2 {
  
}

.hero-card__title em {
  color: var(--accent-deep);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-style: italic;
  font-weight: 700;
}

.hero-card__subline {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0 32px;
  padding: 14px 22px 18px;
  border: 1px solid var(--hero-subline-border);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(91, 71, 54, 0.08);
}

.hero-card__subline-lead {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.hero-card__subline-amount {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0;
  line-height: 1.05;
}

.hero-card__subline-amount em {
  color: #e84000;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 76px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow:
    0 1px 0 rgba(45, 28, 12, 0.12),
    0 2px 14px rgba(232, 64, 0, 0.2);
}

.hero-card__subline-amount span {
  color: var(--text-strong);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero-card__tags {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 4px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(3px);
  color: #6d5a4d;
  font-size: 24px;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(255, 186, 93, 0.08);
}

.hero-tag em {
  color: var(--accent-deep);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
}

.hero-card__button {
  width: 286px;
  height: 64px;
  margin-top: 0;
  border: 2px solid rgba(32, 17, 4, 0.96);
  border-radius: 999px;
  background: linear-gradient(180deg, #2f1a08 0%, #1d1005 100%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  box-shadow: 0 16px 24px rgba(39, 23, 7, 0.16);
}

.hero-card__button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #39200a 0%, #231205 100%);
  box-shadow: 0 18px 32px rgba(39, 23, 7, 0.18);
}

.hero-card__terms {
  margin: 10px 0 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 286px;
  padding: 0 4px;
  color: #fcc48d;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.mobile-cta-dock {
  display: none;
}

.section {
  position: relative;
}

.section--security {
  padding: 84px 0 96px;
  background: var(--surface-soft);
}

.section--trust {
  padding: 0 0 72px;
  background: #fff1d3 url("./assets/license.png") center top / cover no-repeat;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.section-heading--center {
  text-align: center;
}

.security-carousel {
  position: relative;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.security-viewport {
  width: 100%;
  overflow: hidden;
}

.security-track {
  display: flex;
  gap: var(--security-gap);
  width: 100%;
  transition: transform 280ms ease;
  will-change: transform;
}

.security-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.security-nav--prev {
  left: -88px;
}

.security-nav--next {
  right: -88px;
}

.security-nav img {
  width: 44px;
  height: 44px;
  pointer-events: none;
}

.security-nav:disabled {
  opacity: 0.42;
  cursor: default;
}

.security-nav:focus-visible {
  outline: 2px solid rgba(32, 17, 4, 0.28);
  outline-offset: 4px;
  border-radius: 999px;
}

.security-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - (var(--security-gap) * 2)) / 3);
  flex-direction: column;
  min-height: 440px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 1);
  /* box-shadow: var(--shadow-card); */
  overflow: hidden;
}

.security-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 215, 151, 0.2),
    transparent 34%
  );
  pointer-events: none;
}

.security-card__body,
.security-card__media {
  position: relative;
  z-index: 1;
}

.security-card__body {
  min-height: 134px;
}

.security-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.security-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1.75;
}

.security-card__media {
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: center;
  padding-top: 24px;
}

.security-card__image {
  width: min(100%, 235px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.trust-panel {
  display: flex;
  flex-direction: column;
  min-height: 700px;
  padding: 88px 56px 56px;
  border-radius: 32px;
}

.section--trust .section-heading {
  margin-bottom: 80px;
}

.section--trust .section-heading h2 {
  color: rgba(0, 0, 0, 1);
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.24;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px;
  margin-bottom: 80px;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.trust-stat strong {
  display: block;
  color: rgba(249, 122, 37, 1);
  font-family: "Inter", "Arial", "Helvetica Neue", sans-serif;
  font-size: 42px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
}

.trust-stat span {
  color: rgba(0, 0, 0, 1);
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

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

.license-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 159px;
  height: 159px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.43);
  text-align: center;
}

.license-card__image {
  flex: 0 0 auto;
  object-fit: contain;
}

.license-card__image--1 {
  width: 74px;
  height: 74px;
}

.license-card__image--2 {
  width: 244px;
  height: 74px;
}

.license-card__image--3 {
  width: 187px;
  height: 74px;
}

.license-card__badge {
  margin: 0 auto;
  color: #da6500;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.license-card__badge--narrow {
  letter-spacing: 0.18em;
}

.license-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.site-footer {
  padding: 44px 0 52px;
  background: var(--footer-bg);
}

.site-footer__inner {
  color: var(--footer-text);
}

.site-footer__logo {
  width: 124px;
  margin-bottom: 18px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(46%) saturate(842%)
    hue-rotate(355deg) brightness(104%) contrast(104%);
}

.site-footer p {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.8;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .hero {
    background-position: 62% top;
  }

  .hero-card__title {
    font-size: 52px;
  }

  .trust-panel {
    padding-right: 36px;
    padding-left: 36px;
  }
}

@media (max-width: 1023px) {
  .container {
    width: min(calc(100% - 40px), var(--container-width));
  }

  .hero {
    min-height: 760px;
    background-position: 67% top;
    background-size: auto 100%;
  }

  .hero-card {
    height: 760px;
    padding-top: calc(82px + var(--risk-strip-height));
  }

  .hero-card__content {
    max-width: 460px;
  }

  .hero-card__title {
    font-size: 46px;
  }

  .hero-card__button {
    width: 260px;
    font-size: 28px;
  }

  .hero-card__terms {
    max-width: 260px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section--trust .section-heading {
    margin-bottom: 56px;
  }

  .section--trust .section-heading h2 {
    font-size: 38px;
  }

  .trust-panel {
    min-height: auto;
    padding: 64px 40px 48px;
  }

  .trust-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 48px;
    margin-bottom: 56px;
  }

  .trust-stat:last-child {
    grid-column: 1 / -1;
  }

  .license-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .license-card:last-child {
    grid-column: 1 / -1;
  }

  .security-track {
    width: 100%;
  }

  .security-card {
    flex-basis: calc((100% - var(--security-gap)) / 2);
  }

  .security-nav--prev {
    left: 12px;
  }

  .security-nav--next {
    right: 12px;
  }
}

@media (max-width: 767px) {
  :root {
    --risk-strip-height: 22px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container-width));
  }

  .site-header {
    height: 64px;
  }

  .site-header__brand img {
    width: 86px;
    height: 28px;
  }

  .language-select__trigger {
    height: 24px;
    padding-left: 20px;
  }

  .language-select__icon {
    width: 16px;
    height: 16px;
  }

  .language-select__value {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
  }

  .language-select__menu {
    top: calc(100% + 10px);
    right: -4px;
    min-width: min(200px, calc(100vw - 32px));
    max-height: min(65vh, 420px);
    padding: 6px;
    border-radius: 12px;
  }

  .language-select__option {
    min-height: 34px;
    font-size: 14px;
  }

  .hero {
    height: 635px;
    min-height: 635px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 247, 230, 0.06) 0%,
        rgba(255, 249, 239, 0.12) 100%
      ),
      url("./assets/bg_h5.png") center top / cover no-repeat;
  }

  .hero::after {
    height: 72px;
  }

  .hero-card {
    align-items: flex-start;
    justify-content: flex-start;
    height: 635px;
    min-height: 635px;
    padding-top: calc(96px + var(--risk-strip-height));
  }

  .hero-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    padding-top: 0;
    text-align: center;
  }

  .hero-card__title {
    margin-bottom: 24px;
    font-size: clamp(34px, 9vw, 52px);
    line-height: 1.38;
    letter-spacing: -0.03em;
  }

  .hero-card__tags {
    gap: 12px;
    align-items: center;
  }

  .hero-tag {
    gap: 8px;
    min-height: 42px;
    padding: 4px 16px;
    font-size: 15px;
    line-height: 1.25;
  }

  .hero-tag em {
    font-size: 19px;
  }

  .hero-card__cta-block {
    align-self: center;
    margin-top: 20px;
  }

  .hero-card__subline {
    align-items: center;
    align-self: center;
    max-width: min(100%, 360px);
    margin: 12px 0 22px;
    padding: 12px 18px 16px;
    gap: 10px;
    text-align: center;
    border-radius: 20px;
  }

  .hero-card__subline-lead {
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    opacity: 1;
  }

  .hero-card__subline-amount {
    justify-content: center;
    gap: 5px 8px;
  }

  .hero-card__subline-amount em {
    font-size: clamp(52px, 14vw, 70px);
  }

  .hero-card__subline-amount span {
    font-size: clamp(26px, 7vw, 36px);
  }

  .hero-card__button {
    width: 194px;
    max-width: none;
    height: 54px;
    margin-top: 0;
    font-size: 21px;
  }

  .hero-card__terms {
    max-width: 194px;
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.3;
  }

  .section--security {
    padding: 60px 0 64px;
  }

  .section--trust {
    padding-bottom: 48px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .section--trust .section-heading {
    margin-bottom: 32px;
  }

  .section--trust .section-heading h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .trust-stats,
  .license-grid {
    grid-template-columns: 1fr;
  }

  .trust-stat:last-child {
    grid-column: auto;
  }

  .license-card:last-child {
    grid-column: auto;
  }

  .security-carousel {
    padding-bottom: 72px;
  }

  .security-track {
    width: 100%;
  }

  .security-card {
    flex-basis: 100%;
  }

  .security-nav {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .security-nav--prev {
    left: calc(50% - 52px);
  }

  .security-nav--next {
    left: calc(50% + 8px);
    right: auto;
  }

  .security-card {
    min-height: 348px;
    padding: 24px 20px 20px;
    border-radius: 20px;
  }

  .security-card h3 {
    font-size: 18px;
  }

  .security-card p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.6);
  }

  .security-card__body {
    min-height: 0;
  }

  .security-card__media {
    padding-top: 18px;
  }

  .security-card__image {
    width: min(100%, 208px);
  }

  .trust-panel {
    min-height: auto;
    padding: 52px 20px 24px;
    border-radius: 24px;
  }

  .trust-stats {
    gap: 24px;
    margin-bottom: 32px;
  }

  .trust-stat strong {
    font-size: 34px;
  }

  .trust-stat span {
    font-size: 15px;
  }

  .license-grid {
    gap: 16px;
  }

  .license-card {
    min-height: 0;
    height: auto;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .license-card p {
    font-size: 15px;
  }

  .site-footer {
    padding: 36px 0 40px;
  }

  body.has-mobile-cta-dock {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  /* Before JS runs: never flash the dock (HTTPS/mobile can paint before script). */
  .mobile-cta-dock[data-mobile-cta-pending] {
    transform: translateY(110%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .mobile-cta-dock {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(91, 71, 54, 0.12);
    background: rgba(255, 252, 246, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 -10px 28px rgba(39, 23, 7, 0.08);
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 240ms ease,
      opacity 240ms ease;
  }

  .mobile-cta-dock.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-cta-dock__inner {
    display: flex;
    justify-content: center;
    width: min(calc(100% - 32px), var(--container-width));
    margin: 0 auto;
  }

  .mobile-cta-dock a {
    display: inline-flex;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
  }

  /* Match in-flow hero CTA on mobile (same width / height / type scale) */
  .mobile-cta-dock .hero-card__button {
    margin-top: 0;
    width: 194px;
    max-width: none;
    height: 54px;
    font-size: 21px;
    border: 2px solid rgba(32, 17, 4, 0.96);
    border-radius: 999px;
    background: linear-gradient(180deg, #2f1a08 0%, #1d1005 100%);
    color: #ffffff;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 16px 24px rgba(39, 23, 7, 0.16);
  }

  .mobile-cta-dock .hero-card__button:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #39200a 0%, #231205 100%);
    box-shadow: 0 18px 32px rgba(39, 23, 7, 0.18);
  }
}

@media (max-width: 479px) {
  .hero-card {
    height: 635px;
    min-height: 635px;
    padding-top: calc(98px + var(--risk-strip-height));
  }

  .hero-card__title {
    font-size: clamp(30px, 8.9vw, 40px);
  }

  .hero-tag {
    width: auto;
    max-width: 100%;
    justify-content: center;
  }
}
