:root {
  --ink: #102a43;
  --ink-soft: #243f59;
  --muted: #486581;
  --paper: #ffffff;
  --mist: #eaf2f8;
  --mist-deep: #d8e7f1;
  --sun: #f4b942;
  --sun-light: #f9d986;
  --line: #bdd0df;
  --focus: #005fcc;
  --font-body: var(--mrc-font-en), Arial, sans-serif;
  --font-display: var(--mrc-font-en), Arial, sans-serif;
  --measure: 72rem;
  --article-measure: 48rem;
  --space-1: 0.5rem;
  --space-2: 0.875rem;
  --space-3: 1.25rem;
  --space-4: 1.75rem;
  --space-5: 2.5rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --radius-round: 999px;
  --shadow-soft: 0 16px 42px rgba(16, 42, 67, 0.1);
  --shadow-ticket: 0 14px 0 rgba(16, 42, 67, 0.13), 0 22px 38px rgba(16, 42, 67, 0.13);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 0.25rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2rem), var(--measure));
  min-height: 5.25rem;
  margin: 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 2.25rem;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 0.2rem;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.85rem 0.55rem 1rem;
  color: var(--ink);
  cursor: pointer;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-round);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-toggle:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.nav-toggle span {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.1rem;
  line-height: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.site-nav {
  position: absolute;
  z-index: 30;
  top: calc(100% - 0.5rem);
  right: 0;
  display: grid;
  width: min(19rem, calc(100vw - 2rem));
  padding: 0.55rem;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.site-nav a {
  padding: 0.72rem 0.8rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--mist);
  border-left-color: var(--sun);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 5.25rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(244, 185, 66, 0.2), transparent 21rem),
    linear-gradient(180deg, var(--paper) 0%, #f7fbfd 100%);
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.56;
  background-image:
    linear-gradient(rgba(16, 42, 67, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 67, 0.055) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 90%);
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -12rem;
  bottom: -12rem;
  width: 32rem;
  height: 32rem;
  content: "";
  background: radial-gradient(circle, rgba(216, 231, 241, 0.95) 0%, rgba(234, 242, 248, 0) 68%);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  width: min(calc(100% - 2rem), 64rem);
  padding: clamp(3.25rem, 7vw, 6.5rem) 0 clamp(4.5rem, 8vw, 7rem);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.offer-label {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
}

.hero h1 {
  max-width: 14ch;
  margin: 1rem auto 1.25rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.7vw, 6.15rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 43rem;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.8vw, 1.32rem);
  font-weight: 650;
  line-height: 1.55;
}

.hero-detail {
  max-width: 43rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.orbit-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  max-width: 38rem;
  padding: 0;
  margin: 0 auto 1.35rem;
  list-style: none;
}

.orbit-chips li {
  padding: 0.45rem 0.75rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-round);
  box-shadow: 0 7px 18px rgba(16, 42, 67, 0.06);
  font-family: var(--font-body);
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(1.8rem, 4vw, 2.5rem);
}

.cta-ticket {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  width: min(100%, 29rem);
  min-height: 4.75rem;
  padding: 1rem 1.25rem 1rem 1.65rem;
  overflow: hidden;
  color: var(--ink);
  background: var(--sun);
  border: 1px solid var(--ink);
  border-radius: var(--radius-round);
  box-shadow: var(--shadow-ticket);
  font-size: clamp(1.02rem, 2vw, 1.23rem);
  font-weight: 850;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  animation: ticket-halo 3.6s ease-in-out infinite;
}

.cta-ticket::after {
  width: 1px;
  align-self: stretch;
  margin-left: 0.15rem;
  content: "";
  border-left: 2px dashed rgba(16, 42, 67, 0.58);
}

.cta-ticket:hover {
  background: var(--sun-light);
  box-shadow: 0 9px 0 rgba(16, 42, 67, 0.18), 0 16px 28px rgba(16, 42, 67, 0.14);
  transform: translateY(4px);
}

.cta-ticket:active {
  box-shadow: 0 4px 0 rgba(16, 42, 67, 0.18);
  transform: translateY(9px);
}

.cta-chevron {
  display: grid;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration-color: var(--sun);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28rem;
  transition: color 160ms ease;
}

.secondary-link:hover {
  color: var(--ink);
}

.secondary-link span {
  font-size: 1.1rem;
}

.offer-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1rem;
  max-width: 49rem;
  padding: 1.25rem;
  margin: clamp(3.5rem, 7vw, 5.5rem) auto 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ink);
  box-shadow: var(--shadow-soft);
}

.offer-card-index {
  grid-row: span 2;
  color: var(--sun);
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}

.offer-card h2 {
  margin: 0.25rem 0 0.45rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.offer-card p:not(.offer-label) {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.offer-card-note {
  grid-column: 1 / -1;
  padding-top: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--mist-deep);
  font-family: var(--font-body);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--measure));
  padding: 1.5rem 0 2rem;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.1rem;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration-color: var(--sun);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--ink);
}

.legal-main {
  width: min(calc(100% - 2rem), var(--article-measure));
  padding: clamp(3rem, 7vw, 6rem) 0;
  margin: 0 auto;
}

.legal-document > .eyebrow {
  margin-bottom: 0.8rem;
}

.legal-document h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 6vw, 4.65rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.legal-date {
  margin: 1.35rem 0 3rem;
  padding-bottom: 1rem;
  color: var(--muted);
  font-size: 0.91rem;
  border-bottom: 1px solid var(--line);
}

.legal-document section {
  margin-top: 2.2rem;
}

.legal-document h2 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.72rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.legal-document p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.legal-document p a {
  color: var(--ink);
  font-weight: 750;
  overflow-wrap: anywhere;
  text-decoration-color: var(--sun);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22rem;
}

@keyframes ticket-halo {
  0%,
  100% {
    box-shadow: var(--shadow-ticket), 0 0 0 0 rgba(244, 185, 66, 0.2);
  }

  50% {
    box-shadow: var(--shadow-ticket), 0 0 0 0.75rem rgba(244, 185, 66, 0);
  }
}

@media (min-width: 42rem) {
  .site-header,
  .site-footer {
    width: min(calc(100% - 4rem), var(--measure));
  }

  .hero-inner {
    width: min(calc(100% - 4rem), 64rem);
  }

  .offer-card {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1.45rem 1.6rem;
  }

  .offer-card-index {
    grid-row: auto;
  }

  .offer-card-note {
    grid-column: auto;
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 0 0 0 1.25rem;
    border-top: 0;
    border-left: 1px solid var(--mist-deep);
    white-space: nowrap;
  }

  .legal-main {
    width: min(calc(100% - 4rem), var(--article-measure));
  }
}

@media (min-width: 62rem) {
  .orbit-chips {
    position: absolute;
    inset: 0;
    display: block;
    max-width: none;
    margin: 0;
    pointer-events: none;
  }

  .orbit-chips li {
    position: absolute;
  }

  .orbit-chips li:nth-child(1) {
    top: 4.5rem;
    left: -1rem;
  }

  .orbit-chips li:nth-child(2) {
    top: 10.5rem;
    right: -1.5rem;
  }

  .orbit-chips li:nth-child(3) {
    bottom: 9.5rem;
    left: 2rem;
  }

  .hero-inner {
    padding-top: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}