:root {
  --bg: #0d0f12;
  --panel: #ffffff;
  --panel-soft: #f6f7f9;
  --ink: #121317;
  --muted: #666b75;
  --line: #e2e5ea;
  --red: #ed101b;
  --red-dark: #c9000b;
  --dark-panel: rgba(12, 15, 19, 0.86);
  --radius: 8px;
  --shadow: 0 18px 50px rgba(12, 15, 19, 0.16);
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 0 0 18px;
  color: #fff;
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.mobile-menu.is-open {
  display: block;
}

.join-page,
.plain-page {
  background: #f1f2f4;
}

.join-hero {
  padding: 52px 22px;
  background-image:
    linear-gradient(90deg, rgba(7, 9, 12, 0.94) 0%, rgba(7, 9, 12, 0.78) 48%, rgba(7, 9, 12, 0.45) 100%),
    url("../img/hero-free-tour-desktop.jpg");
  background-size: cover;
  background-position: center;
}

.join-card,
.content-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.join-card {
  max-width: 920px;
  padding: clamp(28px, 5vw, 54px);
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.join-card h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.join-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.join-benefits li {
  position: relative;
  padding: 14px 14px 14px 44px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.join-benefits li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.price-box {
  display: grid;
  gap: 4px;
  margin: 0 0 22px;
  padding: 18px;
  background: #101318;
  color: #fff;
  border-radius: 6px;
}

.price-box strong {
  font-size: 34px;
  line-height: 1;
}

.price-box span,
.price-box em,
.secure-line {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-weight: 700;
}

.join-payment-button {
  width: 100%;
}

.secure-line {
  margin: 16px 0 0;
  color: var(--muted);
  text-align: center;
}

.join-aftercopy {
  padding: 38px 22px 60px;
}

.content-card {
  padding: clamp(26px, 4vw, 44px);
}

.content-card h1,
.content-card h2 {
  margin: 0 0 18px;
  line-height: 1.1;
}

.content-card h1 {
  font-size: clamp(32px, 4vw, 48px);
}

.content-card h2 {
  font-size: clamp(22px, 3vw, 32px);
}

.legal-card {
  margin-top: 44px;
  margin-bottom: 60px;
}

.legal-text p {
  margin: 0 0 16px;
  color: #30343b;
  font-size: 16px;
}

.legal-text h2 {
  margin-top: 28px;
  color: #111418;
  font-size: 24px;
}

.footer-note {
  width: 100%;
  margin: 12px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 760px) {
  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    width: calc(100% - 28px);
  }

  .join-benefits {
    grid-template-columns: 1fr;
  }

  .join-hero {
    padding: 28px 11px;
    background-image:
      linear-gradient(180deg, rgba(7, 9, 12, 0.96) 0%, rgba(7, 9, 12, 0.76) 58%, rgba(7, 9, 12, 0.52) 100%),
      url("../img/hero-free-tour-mobile.jpg");
  }

  .join-aftercopy,
  .plain-page {
    padding-left: 11px;
    padding-right: 11px;
  }

  .legal-card {
    margin-top: 22px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f1f2f4;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  background: linear-gradient(180deg, #111418 0%, #090b0e 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 44px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  color: var(--red);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a:hover {
  color: #fff;
}

.nav-cta,
.mobile-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 28px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(237, 16, 27, 0.26);
}

.mobile-join {
  display: none;
  min-height: 38px;
  padding: 0 20px;
  font-weight: 800;
}

.hero {
  min-height: 352px;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(7, 9, 12, 0.94) 0%, rgba(7, 9, 12, 0.78) 44%, rgba(7, 9, 12, 0.35) 100%),
    url("../img/hero-free-tour-desktop.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-copy {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 48px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.5vw, 22px);
}

.hero-subtitle span::before {
  content: "·";
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.55);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 800;
}

.button-primary {
  background: linear-gradient(180deg, #ff1b26 0%, #d9030e 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(237, 16, 27, 0.24);
}

.button-primary:hover {
  background: linear-gradient(180deg, #ff3039 0%, #e6000c 100%);
}

.preview-link {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trust-strip {
  display: grid;
  width: 100%;
  background: rgba(13, 16, 20, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 74px;
  color: #fff;
  font-size: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:last-child {
  border-right: 0;
}

.icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: #fff;
}

.icon-shield {
  border: 2px solid #fff;
  border-radius: 9px 9px 12px 12px;
}

.icon-shield::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-bottom: 0;
  transform: translateY(-2px);
}

.icon-shield::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 7px;
  background: #fff;
  bottom: 7px;
}

.icon-card {
  width: 34px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.icon-card::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 7px;
  height: 2px;
  background: #fff;
}

.icon-hd {
  width: 34px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.icon-refresh::before,
.icon-refresh::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
}

.icon-refresh::after {
  transform: rotate(180deg);
  border-right-color: transparent;
  border-left-color: #fff;
}

.membership-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 26px;
  width: min(1180px, calc(100% - 44px));
  margin: 34px auto 0;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.membership-panel h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.1;
}

.membership-copy {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 12px 12px 12px 38px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
  color: #22262c;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.benefit-list li::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: translateY(-60%) rotate(-45deg);
}

.panel-button {
  grid-column: 2;
  width: 100%;
  min-height: 52px;
  font-size: 16px;
}

.scene-section {
  width: min(1180px, calc(100% - 44px));
  margin: 46px auto 60px;
}

.gallery-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(12, 15, 19, 0.08);
}

.section-heading {
  display: block;
  max-width: calc((100% - 26px) / 2);
  margin-bottom: 22px;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.scene-card {
  overflow: hidden;
  background: var(--panel);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.scene-media {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.media-frame {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.has-pair {
  grid-column: 1 / -1;
}

.has-pair .media-frame {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 0 0 28px;
  background: #fff;
}

.media-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.video-preview {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.video-preview img,
.inline-video {
  display: block;
  width: 100%;
  height: auto;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(230, 16, 25, 0.92);
  box-shadow: 0 18px 36px rgba(230, 16, 25, 0.34);
  transform: translate(-50%, -50%);
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  width: 0;
  height: 0;
  border-bottom: 14px solid transparent;
  border-left: 21px solid #fff;
  border-top: 14px solid transparent;
}

.video-preview:hover .play-mark,
.video-preview:focus-visible .play-mark {
  background: #ff1b25;
  transform: translate(-50%, -50%) scale(1.05);
}

.locked-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  background: rgba(5, 6, 8, 0.72);
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.lock-mark {
  position: relative;
  width: 12px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 2px;
}

.lock-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 8px;
  height: 7px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateX(-50%);
}

.scene-body {
  padding: 18px;
}

.scene-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 16px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #f7f8fa;
  color: #3e434b;
  font-size: 13px;
  font-weight: 700;
}

.scene-teaser {
  min-height: 44px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.scene-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.card-button {
  min-height: 48px;
  padding: 0 20px;
  font-size: 16px;
}

.story-link {
  color: #2d323a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 32px 18px 92px;
  background: #0d0f12;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.inline-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-layout {
  display: grid;
  gap: 24px;
}

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

.contact-help-card {
  position: relative;
  padding: 20px 20px 20px 56px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-help-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.contact-help-card p:last-child {
  margin-bottom: 0;
}

.contact-wide {
  grid-column: 1 / -1;
}

.check-dot {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: #101318;
  border-radius: 8px;
  color: #fff;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field label {
  font-weight: 800;
}

.contact-field label span {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-field textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-captcha {
  min-height: 78px;
}

.contact-submit-button {
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #ff1b26 0%, #d9030e 100%);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.sticky-join {
  display: none;
}

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

  .panel-button {
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: 64px;
  }

  .site-header-inner {
    width: calc(100% - 28px);
    min-height: 64px;
  }

  .brand {
    font-size: 21px;
  }

  .main-nav {
    display: none;
  }

  .mobile-join {
    display: inline-flex;
  }

  .hero {
    min-height: 410px;
    background-image:
      linear-gradient(180deg, rgba(7, 9, 12, 0.96) 0%, rgba(7, 9, 12, 0.76) 52%, rgba(7, 9, 12, 0.42) 100%),
      url("../img/hero-free-tour-mobile.jpg");
    background-position: top center;
  }

  .hero-copy {
    width: calc(100% - 28px);
    padding: 42px 0 36px;
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    margin: 0 auto;
    max-width: 430px;
    font-size: 36px;
  }

  .hero-subtitle {
    max-width: 320px;
    margin: 16px auto 0;
    font-size: 15px;
  }

  .hero-subtitle span::before {
    padding: 0 7px;
  }

  .hero-actions {
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    font-size: 16px;
  }

  .preview-link {
    width: 100%;
    font-size: 14px;
  }

  .trust-strip {
    margin: 0;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .trust-item {
    justify-content: flex-start;
    min-height: 64px;
    padding: 0 14px;
    gap: 10px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .membership-panel,
  .scene-section {
    width: calc(100% - 22px);
  }

  .membership-panel {
    margin-top: 12px;
    padding: 18px;
    gap: 16px;
  }

  .membership-panel h2,
  .section-heading h2 {
    font-size: 25px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .benefit-list li {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .scene-section {
    margin-top: 30px;
    margin-bottom: 34px;
  }

  .gallery-panel {
    padding: 12px;
  }

  .section-heading {
    display: block;
    max-width: 100%;
  }

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

  .scene-media {
    min-height: 0;
  }

  .has-pair .media-frame {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 0 12px;
  }

  .scene-body {
    padding: 15px;
  }

  .scene-title {
    font-size: 21px;
  }

  .scene-teaser {
    min-height: 0;
    font-size: 14px;
  }

  .scene-actions {
    grid-template-columns: 1fr;
  }

  .story-link {
    text-align: center;
  }

  .sticky-join {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    background: linear-gradient(180deg, #ff1b26 0%, #d9030e 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.22);
  }

  .site-footer {
    width: calc(100% - 22px);
  }

  .contact-help-grid {
    grid-template-columns: 1fr;
  }

  .contact-wide {
    grid-column: auto;
  }

.contact-form {
    padding: 16px;
  }
}

.age-entry-page {
  min-height: 100vh;
  background: #07080b;
  color: #fff;
}

.age-header {
  position: relative;
  z-index: 5;
}

.age-entry-shell {
  min-height: calc(100vh - 86px);
}

.age-entry-stage {
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 86px);
  padding: 94px 22px 120px;
}

.age-entry-composition {
  width: min(760px, 100%);
  text-align: center;
}

.age-video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.age-video-poster,
.age-entry-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.age-entry-video {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.age-entry-video.is-playing {
  opacity: 1;
}

.age-entry-card {
  position: relative;
  z-index: 2;
  width: min(430px, calc(100% - 34px));
  margin: -78px auto 0;
  padding: 24px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 10, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
  text-align: left;
}

.age-entry-card h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(38px, 3.2vw, 50px);
  line-height: 1;
  white-space: nowrap;
}

.age-entry-card p:not(.section-kicker) {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.age-entry-actions {
  display: grid;
  gap: 14px;
}

.age-enter-button {
  width: 100%;
  min-height: 48px;
}

.age-leave-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.age-footer {
  position: relative;
  z-index: 3;
  margin-top: 0;
}

@media (max-width: 760px) {
  .age-entry-stage {
    min-height: calc(100vh - 74px);
    padding: 54px 12px 78px;
  }

  .age-entry-composition {
    width: 100%;
  }

  .age-entry-card {
    width: calc(100% - 26px);
    margin-top: -34px;
    padding: 22px 18px;
  }

  .age-entry-card h1 {
    font-size: clamp(34px, 11vw, 46px);
    white-space: normal;
  }

  .age-entry-card p:not(.section-kicker) {
    font-size: 15px;
  }
}
