.announcement { background: var(--color-forest); color: var(--color-white); font-size: 0.82rem; }
.announcement .content-shell { display: flex; justify-content: space-between; gap: var(--space-4); padding-block: var(--space-2); }
.announcement p { margin: 0; }
.announcement a { color: var(--color-white); font-weight: 700; }

.site-header { position: relative; z-index: 10; border-bottom: 1px solid rgb(255 255 255 / 0.12); background: var(--color-forest); color: var(--color-white); }
.site-header .brand img { filter: brightness(0) invert(1); }
.site-header .primary-nav a:hover { color: #58c98a; }
.site-header .menu-button { border-color: rgb(255 255 255 / 0.35); }
.site-header__inner { display: flex; min-height: 5.25rem; align-items: center; justify-content: space-between; gap: var(--space-5); }
.brand { flex: 0 0 auto; }
.brand img { width: 10.5rem; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(var(--space-3), 2.3vw, var(--space-6)); }
.primary-nav a { padding: 0.7rem 0.15rem; font-size: 0.87rem; font-weight: 700; text-decoration: none; }
.announcement a, .site-footer__legal-links a { display: inline-block; padding-block: 0.45rem; }
.primary-nav a:hover { color: var(--color-brand); }
.menu-button, .filter-bar button, .faq-item button { border: 0; background: transparent; color: inherit; font-weight: 700; cursor: pointer; }
.menu-button { padding: var(--space-2) var(--space-3); border: var(--rule); }
.nav-premium::before { content: ""; display: inline-block; width: 0.35rem; height: 0.35rem; margin-right: var(--space-2); background: var(--color-gold); transform: rotate(45deg); }

.hero { position: relative; overflow: hidden; background: var(--color-mist); border-bottom: var(--rule); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 43%;
  background: var(--color-forest);
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); min-height: min(32rem, 62vh); align-items: center; padding-block: var(--space-8); }
.hero__copy { grid-column: 1 / span 8; max-width: 52rem; }
.hero h1 { max-width: 18ch; margin-bottom: var(--space-5); }
.hero__intro { max-width: 36rem; color: var(--color-muted); font-size: clamp(1rem, 1.4vw, 1.2rem); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-5); margin-top: var(--space-6); }
.hero__text-link { font-weight: 700; }
.hero__mark { grid-column: 10 / -1; justify-self: end; width: min(100%, 15rem); filter: drop-shadow(0 1.5rem 2rem rgb(0 0 0 / 0.16)); }

.promo-banners-section { padding-block: var(--space-6) 0; }
.promo-banners { display: grid; gap: var(--space-5); }
.promo-banners a { display: block; line-height: 0; }
.promo-banners img { width: 100%; height: auto; }
.promo-banners.is-slider { position: relative; display: block; }
.promo-banners.is-slider > a { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; pointer-events: none; }
.promo-banners.is-slider > a.is-active { position: relative; opacity: 1; pointer-events: auto; }
.banner-slider__arrow { position: absolute; top: 50%; z-index: 2; display: grid; place-items: center; width: 2.6rem; height: 2.6rem; transform: translateY(-50%); border: 0; background: rgb(12 43 29 / 0.55); color: var(--color-white); font-size: 1.7rem; line-height: 1; cursor: pointer; }
.banner-slider__arrow:hover, .banner-slider__arrow:focus-visible { background: rgb(12 43 29 / 0.85); }
.banner-slider__arrow--prev { left: 0.6rem; }
.banner-slider__arrow--next { right: 0.6rem; }
.banner-slider__dots { position: absolute; right: 0; bottom: 0.7rem; left: 0; z-index: 2; display: flex; justify-content: center; gap: 0.55rem; }
.banner-slider__dot { width: 0.62rem; height: 0.62rem; padding: 0; border: 0; border-radius: 50%; background: rgb(255 255 255 / 0.45); cursor: pointer; }
.banner-slider__dot[aria-current="true"] { background: var(--color-white); }
@media (max-width: 40rem) {
  .banner-slider__arrow { width: 2rem; height: 2rem; font-size: 1.3rem; }
  .banner-slider__dots { bottom: 0.4rem; }
}

.sticky-cta { position: fixed; inset: auto 0 0 0; z-index: 30; display: none; box-shadow: 0 -0.4rem 1.2rem rgb(0 0 0 / 0.18); }
@media (max-width: 60rem) {
  .sticky-cta { display: flex; }
  body { padding-bottom: calc(3.3rem + env(safe-area-inset-bottom)); }
  .sticky-cta a { flex: 1; display: grid; place-items: center; min-height: 3.3rem; padding-bottom: env(safe-area-inset-bottom); font-weight: 800; font-size: 1rem; text-decoration: none; }
  .sticky-cta__register { background: var(--color-brand); color: var(--color-white); }
  .sticky-cta__login { background: var(--color-forest); color: var(--color-white); }
}

.card-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); border-top: var(--rule); border-left: var(--rule); }
.route-card, .feature-card { grid-column: span 3; min-height: 15rem; padding: var(--space-5); border-right: var(--rule); border-bottom: var(--rule); background: var(--color-white); text-decoration: none; }
.route-card { display: flex; flex-direction: column; justify-content: space-between; }
.route-card__arrow { color: var(--color-brand); font-size: 1.75rem; }
.route-card:hover, .feature-card:hover { background: var(--color-mist); }
.feature-card { grid-column: span 4; }
.feature-card img { width: 100%; aspect-ratio: 16 / 9; margin-bottom: var(--space-5); object-fit: cover; }
.feature-card p { color: var(--color-muted); }
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); margin-bottom: var(--space-4); }
.filter-bar button { padding: var(--space-2) var(--space-3); border: var(--rule); }
.filter-bar button[aria-pressed="true"] { border-color: var(--color-brand); background: var(--color-brand); color: var(--color-white); }
.filter-status { margin-left: auto; color: var(--color-muted); }

.responsible-notice { padding: var(--space-5); border-left: 0.3rem solid var(--color-brand); background: var(--color-mist); }
.responsible-notice p:last-child { margin-bottom: 0; }

.table-wrap { overflow-x: auto; border: var(--rule); }
table { width: 100%; border-collapse: collapse; background: var(--color-white); }
th, td { padding: var(--space-3) var(--space-4); border-bottom: var(--rule); text-align: left; vertical-align: top; }
th { background: var(--color-mist); color: var(--color-forest); font-family: var(--font-utility); font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }

.faq { border-top: 1px solid var(--color-ink); }
.faq-item { border-bottom: var(--rule); }
.faq-item h3 { margin: 0; font-family: inherit; font-size: 1rem; }
.faq-item button { width: 100%; padding: var(--space-5) 2.5rem var(--space-5) 0; text-align: left; }
.faq-item button::after { content: "+"; float: right; }
.faq-item button[aria-expanded="true"]::after { content: "−"; }
.faq-item [data-accordion-panel] p { max-width: var(--reading-max); color: var(--color-muted); }

.site-footer { padding-block: var(--space-8) var(--space-5); background: var(--color-forest); color: var(--color-white); }
.footer-badges { display: grid; grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.4fr) minmax(0, 1.6fr); gap: var(--space-6) var(--space-7); align-items: start; }
.footer-badges h3 { color: #58c98a; margin-bottom: var(--space-4); }
.footer-cert { grid-column: 1; grid-row: 1; }
.footer-security { grid-column: 2; grid-row: 1; }
.footer-sponsor { grid-column: 3; grid-row: 1 / span 2; }
.footer-pay { grid-column: 1; grid-row: 2; }
.footer-social { grid-column: 2; grid-row: 2; }
.badge-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4) var(--space-5); }
.badge-row li + li { margin-top: 0; }
.badge-row img { height: 2.2rem; width: auto; opacity: 0.85; }
.badge-row--pay img { height: 1.9rem; }
.badge-row--social img { height: 2.4rem; }
.footer-sponsor img { width: min(100%, 20rem); height: auto; margin-left: auto; }
.site-footer__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--space-6); }
.site-footer__brand { grid-column: span 4; }
.site-footer__brand img { width: 8rem; margin-bottom: var(--space-5); filter: brightness(0) invert(1); }
.site-footer__links { grid-column: span 2; }
.site-footer h3 { font-family: var(--font-utility); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: var(--space-2); }
.site-footer a { color: inherit; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); margin-top: var(--space-7); font-size: 0.8rem; }
.site-footer__legal p { margin: 0; }
.site-footer__disclosure { margin-top: var(--space-2); max-width: 68ch; color: rgb(255 255 255 / 0.55); font-size: 0.72rem; }
.site-footer__legal-links { margin-top: var(--space-3); font-size: 0.75rem; }
.site-footer__legal-links a { color: #58c98a; text-decoration: none; }
.site-footer__legal-links a:hover, .site-footer__legal-links a:focus-visible { text-decoration: underline; }
.age-link { display: inline-grid; width: 3rem; height: 3rem; place-items: center; border: 1px solid currentColor; font-weight: 800; text-decoration: none; flex-shrink: 0; }

@media (max-width: 60rem) {
  .site-header__inner:has(.menu-button:not([hidden])) { flex-wrap: wrap; }
  .site-header__inner:has(.menu-button:not([hidden])) .primary-nav { flex: 1 0 100%; flex-direction: column; align-items: stretch; padding-bottom: var(--space-4); }
  .site-header__inner:has(.menu-button:not([hidden])) .primary-nav a { padding-block: var(--space-2); }
  .hero::after { display: none; }
  .hero__grid { min-height: auto; padding-block: var(--space-7) var(--space-6); }
  .hero__copy { grid-column: 1 / -1; }
  .hero__actions { display: none; }
  .hero__mark { display: none; }
  .route-card { grid-column: span 6; }
  .feature-card { grid-column: span 6; }
  .site-footer__brand { grid-column: span 12; }
  .site-footer__links { grid-column: span 4; }
  .footer-badges { grid-template-columns: 1fr; }
  .footer-cert, .footer-security, .footer-pay, .footer-social, .footer-sponsor { grid-column: 1; grid-row: auto; }
  .footer-sponsor img { margin-left: 0; }
}

@media (max-width: 40rem) {
  .announcement .content-shell { display: block; }
  .announcement p + p { margin-top: var(--space-1); }
  .brand img { width: 8.5rem; }
  .site-header__inner { min-height: 4.5rem; }
  .primary-nav { gap: var(--space-2); }
  .primary-nav a { font-size: 0.75rem; }
  .hero::after { inset: auto 0 0 auto; width: 44%; height: 32%; clip-path: polygon(55% 0, 100% 0, 100% 100%, 0 100%); }
  .hero__mark { width: 6rem; }
  .route-card, .feature-card { grid-column: 1 / -1; min-height: auto; }
  .site-footer__links { grid-column: span 6; }
  .site-footer__bottom { flex-direction: column; }
}
