:root {
  --cream: #fffaf0;
  --cream-deep: #fff1d8;
  --paper: #ffffff;
  --ink: #17324d;
  --ink-soft: #4c6879;
  --coral: #ff7456;
  --coral-strong: #f25a3a;
  --coral-light: #ffe3da;
  --sun: #ffd55a;
  --sun-light: #fff3bd;
  --teal: #0d9298;
  --teal-dark: #087078;
  --mint: #def7ee;
  --sky: #dff4ff;
  --navy: #153149;
  --line: #d8e5e3;
  --focus: #6b43df;
  --shadow-small: 0 8px 24px rgb(23 50 77 / 8%);
  --shadow: 0 18px 52px rgb(23 50 77 / 12%);
  --radius-small: 1rem;
  --radius: 1.5rem;
  --radius-large: 2rem;
  --page-padding: clamp(1.1rem, 4.8vw, 2rem);
  --section-space: clamp(3.25rem, 6vw, 5rem);
  --font:
    "Avenir Next", Avenir, "Nunito Sans", "Segoe UI", system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--sun);
  color: var(--ink);
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

p {
  text-wrap: pretty;
}

.container {
  width: min(100% - (2 * var(--page-padding)), 72rem);
  margin-inline: auto;
}

.narrow {
  max-width: 54rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: 0.75rem;
  background: var(--paper);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.notice-bar {
  border-bottom: 1px solid rgb(23 50 77 / 14%);
  background: var(--sun);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.025em;
}

.notice-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding-inline: var(--page-padding);
  gap: 0.45rem;
  text-align: center;
}

.notice-bar__inner span:nth-child(n + 2) {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(23 50 77 / 9%);
  background: rgb(255 250 240 / 92%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.65rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  gap: 0.68rem;
  text-decoration: none;
}

.brand__icon {
  flex: 0 0 auto;
  width: 2.72rem;
  height: 2.72rem;
  overflow: visible;
}

.brand__ticket {
  fill: var(--coral);
  stroke: var(--ink);
  stroke-width: 2.5;
}

.brand__sun {
  fill: var(--sun);
}

.brand__water {
  fill: #48c9c4;
}

.brand__wave {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 2.5;
}

.brand__icon text {
  fill: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  font-size: 0.79rem;
  line-height: 1.03;
}

.brand__copy strong {
  font-size: 1.02rem;
  letter-spacing: -0.025em;
}

.brand__copy span {
  color: var(--ink-soft);
  font-weight: 750;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.91rem;
  font-weight: 800;
}

.main-nav a,
.header-link {
  position: relative;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding-inline: 1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 12%, rgb(255 213 90 / 38%), transparent 25rem),
    radial-gradient(circle at 5% 75%, rgb(72 201 196 / 22%), transparent 22rem),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: 4rem;
  right: -4rem;
  width: 11rem;
  height: 11rem;
  border: 2px dashed rgb(23 50 77 / 12%);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 2.75rem;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgb(8 112 120 / 22%);
  border-radius: 999px;
  background: rgb(255 255 255 / 72%);
  gap: 0.55rem;
  font-size: 0.69rem;
  letter-spacing: 0.075em;
}

.eyebrow__dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 3px rgb(255 213 90 / 32%);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.3rem;
  font-size: clamp(2.65rem, 11.8vw, 4.75rem);
  font-weight: 900;
}

.hero h1 span {
  position: relative;
  z-index: 0;
  display: inline;
  white-space: nowrap;
}

.hero h1 span::after {
  position: absolute;
  z-index: -1;
  right: -0.07em;
  bottom: 0.05em;
  left: -0.07em;
  height: 0.28em;
  border-radius: 999px;
  background: var(--sun);
  content: "";
  transform: rotate(-1.5deg);
}

.hero__lead {
  max-width: 39rem;
  margin-bottom: 1.35rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.67;
}

.free-request-note {
  max-width: 39rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgb(8 112 120 / 24%);
  border-left: 4px solid var(--teal);
  border-radius: 0.8rem;
  background: var(--mint);
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.free-request-note strong {
  color: var(--ink);
}

.benefit-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1.5rem;
  gap: 0.65rem 1.05rem;
  list-style: none;
}

.benefit-list li,
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.91rem;
  font-weight: 800;
}

.check {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 950;
}

.cta-group {
  width: 100%;
  max-width: 33rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.9rem;
  padding: 0.95rem 1.15rem;
  border: 2px solid var(--ink);
  border-radius: 1rem;
  gap: 0.75rem;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button--primary {
  background: var(--coral);
  box-shadow: 5px 6px 0 var(--ink);
}

.button--primary:hover {
  background: var(--coral-strong);
  box-shadow: 3px 4px 0 var(--ink);
  transform: translate(2px, 2px);
}

.button--primary:active {
  box-shadow: 1px 2px 0 var(--ink);
  transform: translate(4px, 4px);
}

.cta-group__warning {
  padding: 0.7rem 0.8rem;
  margin: 0.85rem 0 0;
  border: 1px solid rgb(155 107 0 / 35%);
  border-radius: 0.75rem;
  background: var(--sun-light);
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.cta-group__warning strong {
  color: var(--ink);
}

.cta-group__note {
  margin: 0.72rem 0 0;
  color: var(--ink-soft);
  font-size: 0.69rem;
  line-height: 1.48;
}

.hero__visual {
  width: min(100%, 39rem);
  margin: 0 auto;
}

.hero__visual img {
  width: 100%;
  height: auto;
}

.hero__wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4.5rem;
  color: var(--paper);
}

.hero__wave svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.fact-strip {
  padding: 1rem 0 1.7rem;
  background: var(--paper);
}

.fact-strip__grid {
  display: grid;
  gap: 0.75rem;
}

.fact-strip article {
  display: flex;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--paper);
  gap: 0.85rem;
}

.fact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 3.1rem;
  height: 2.75rem;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 0.8rem;
  font-size: 0.72rem;
  font-weight: 950;
  box-shadow: 2px 2px 0 var(--ink);
}

.fact-icon--coral {
  background: var(--coral-light);
}

.fact-icon--teal {
  background: var(--mint);
}

.fact-icon--sun {
  background: var(--sun-light);
}

.fact-strip strong,
.fact-strip span:not(.fact-icon) {
  display: block;
}

.fact-strip strong {
  font-size: 0.92rem;
}

.fact-strip span:not(.fact-icon) {
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.4;
}

.section {
  padding-block: var(--section-space);
}

.section--white {
  background: var(--paper);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}

.section-heading h2,
.section > .container > h2,
.redeem-grid h2,
.country-card h2,
.faq-intro h2,
.transparency-card h2,
.final-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 6.7vw, 3.45rem);
  font-weight: 900;
}

.section-heading > p:last-child,
.section-lead,
.faq-intro > p,
.country-card p,
.transparency-card p,
.final-card p {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.answer-card {
  display: flex;
  padding: clamp(1.3rem, 4vw, 2rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
  gap: 1rem;
  box-shadow: 7px 8px 0 var(--ink);
}

.answer-card__mark {
  display: grid;
  flex: 0 0 auto;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.answer-card p {
  margin-bottom: 0.85rem;
}

.answer-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.email-reminder {
  display: flex;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  margin-top: 1.4rem;
  border: 1px solid rgb(168 109 0 / 22%);
  border-radius: var(--radius-small);
  background: var(--sun-light);
  color: #624811;
  gap: 0.8rem;
}

.email-reminder > span {
  flex: 0 0 auto;
  font-size: 1.3rem;
}

.email-reminder p {
  margin: 0;
  font-size: 0.88rem;
}

.steps {
  display: grid;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 100%;
  padding: 1.45rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.step-card::after {
  position: absolute;
  right: -2rem;
  bottom: -2.7rem;
  width: 8rem;
  height: 8rem;
  border: 1px dashed rgb(23 50 77 / 13%);
  border-radius: 50%;
  content: "";
}

.step-card__number {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  color: #7b8e99;
  font-size: 2.7rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.step-card__icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 1.25rem;
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-3deg);
}

.step-card__icon--coral {
  background: var(--coral-light);
}

.step-card__icon--sun {
  background: var(--sun-light);
  transform: rotate(3deg);
}

.step-card__icon--teal {
  background: var(--mint);
}

.step-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
}

.step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.section--navy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 93% 7%, rgb(255 213 90 / 15%), transparent 22rem),
    var(--navy);
  color: var(--paper);
}

.section-heading--light .eyebrow {
  color: #7fddd6;
}

.section-heading--light > p:last-child {
  color: #bfd0da;
}

.conditions {
  display: grid;
  padding: 0;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgb(255 255 255 / 5%);
}

.conditions > div {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.conditions > div:last-child {
  border-bottom: 0;
}

.conditions dt {
  margin-bottom: 0.2rem;
  color: #9fb6c4;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.conditions dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 850;
}

.conditions__notice {
  display: flex;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  margin-top: 1.25rem;
  border: 1px solid rgb(255 213 90 / 32%);
  border-radius: var(--radius-small);
  background: rgb(255 213 90 / 10%);
  color: #e7eef2;
  gap: 0.8rem;
}

.conditions__notice > span {
  display: grid;
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-weight: 950;
}

.conditions__notice p {
  margin: 0;
  font-size: 0.88rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  gap: 0.75rem;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding-inline: 1rem;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.source-links a:hover {
  border-color: var(--sun);
  background: rgb(255 255 255 / 7%);
}

.term-grid {
  display: grid;
  gap: 1rem;
}

.term-card {
  position: relative;
  min-height: 100%;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.term-card--featured {
  border: 2px solid var(--ink);
  box-shadow: 6px 7px 0 var(--ink);
}

.term-card__label {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: var(--sun);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.term-card__icon {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.35rem;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 1.05rem;
  background: var(--coral-light);
  font-size: 0.85rem;
  font-weight: 950;
  box-shadow: 3px 3px 0 var(--ink);
}

.term-card__icon--sky {
  background: var(--sky);
  font-size: 1.4rem;
}

.term-card__icon--mint {
  background: var(--mint);
  font-size: 1.2rem;
}

.term-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.term-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section--redeem {
  background:
    linear-gradient(135deg, rgb(223 244 255 / 76%), rgb(222 247 238 / 65%)),
    var(--paper);
}

.redeem-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.check-list {
  display: grid;
  margin: 1.5rem 0 0;
}

.booking-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 9px 11px 0 var(--ink);
  transform: rotate(1deg);
}

.booking-card__bar {
  display: flex;
  align-items: center;
  min-height: 2.7rem;
  padding-inline: 1rem;
  border-bottom: 2px solid var(--ink);
  background: var(--cream-deep);
  gap: 0.45rem;
}

.booking-card__bar span {
  width: 0.65rem;
  height: 0.65rem;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

.booking-card__bar span:first-child {
  background: var(--coral);
}

.booking-card__bar span:nth-child(2) {
  background: var(--sun);
}

.booking-card__bar span:last-child {
  background: #79ddd2;
}

.booking-card__body {
  padding: clamp(1.4rem, 5vw, 2.2rem);
}

.booking-card__step {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.booking-card h3 {
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

.booking-card__field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding-inline: 1rem;
  border: 2px solid var(--ink);
  border-radius: 0.85rem;
  background: var(--cream);
  gap: 0.8rem;
}

.booking-card__field span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.booking-card__field strong {
  padding: 0.3rem 0.55rem;
  border-radius: 0.5rem;
  background: var(--sun);
  white-space: nowrap;
}

.booking-card__body > p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.redeem-example {
  grid-column: 1 / -1;
  margin: clamp(1rem, 2vw, 1.75rem) 0 0;
}

.redeem-example__image {
  display: block;
  width: 100%;
  padding: clamp(0.45rem, 1.5vw, 0.8rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  color: inherit;
  cursor: zoom-in;
  font: inherit;
}

.redeem-example__image img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 0.4rem);
}

.redeem-example figcaption {
  max-width: 58rem;
  margin: 0.9rem auto 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.redeem-image-modal {
  width: min(calc(100% - 1.5rem), 52rem);
  max-width: none;
  max-height: calc(100dvh - 1.5rem);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  overflow: visible;
}

.redeem-image-modal::backdrop {
  background: rgb(15 35 52 / 72%);
  backdrop-filter: blur(4px);
}

.redeem-image-modal__content {
  padding: clamp(0.7rem, 2vw, 1rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 10px 12px 0 rgb(0 0 0 / 24%);
}

.redeem-image-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 0.1rem 0.8rem;
  gap: 1rem;
}

.redeem-image-modal__header h3 {
  margin: 0;
  font-size: clamp(1rem, 3vw, 1.25rem);
}

.redeem-image-modal__close {
  display: grid;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.redeem-image-modal__close:hover {
  background: var(--coral-light);
}

.redeem-image-modal__content > img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 0.5rem);
  background: var(--paper);
}

.section--countries {
  background: var(--cream);
}

.country-card {
  display: grid;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius-large);
  background: var(--paper);
  gap: 1.5rem;
  box-shadow: 8px 9px 0 var(--ink);
}

.country-card__icon {
  display: grid;
  width: 6rem;
  height: 6rem;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background:
    linear-gradient(180deg, var(--coral) 0 33%, var(--paper) 33% 66%, #79ddd2 66%);
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--ink);
}

.country-card h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
}

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

.faq-layout {
  display: grid;
  gap: 2.5rem;
}

.faq-intro {
  align-self: start;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  position: relative;
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 150ms ease;
}

.faq-list summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > p {
  max-width: 44rem;
  padding: 0 2.8rem 1.25rem 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.section--transparency {
  background: var(--cream);
}

.transparency-card {
  display: grid;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--paper);
  gap: 1.3rem;
  box-shadow: var(--shadow);
}

.transparency-card__badge {
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 1.35rem;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 1.8rem;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-3deg);
}

.transparency-card h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
}

.transparency-card .review-note {
  margin-top: 1rem;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 800;
}

.section--final {
  padding-top: 0;
  background: var(--cream);
}

.final-card {
  display: grid;
  align-items: center;
  padding: clamp(1.6rem, 5vw, 3rem);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 95% 10%, rgb(255 213 90 / 65%), transparent 16rem),
    var(--coral-light);
  gap: 1.8rem;
  box-shadow: 9px 10px 0 var(--ink);
}

.final-card h2 {
  font-size: clamp(1.9rem, 6vw, 3.15rem);
}

.site-footer {
  padding: 3.5rem 0 1.5rem;
  background: var(--navy);
  color: var(--paper);
}

.footer-top {
  display: grid;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  gap: 2rem;
}

.brand--footer {
  color: var(--paper);
}

.brand--footer .brand__copy span {
  color: #b9cbd5;
}

.brand--footer .brand__ticket {
  stroke: var(--paper);
}

.brand--footer .brand__wave {
  stroke: var(--paper);
}

.brand--footer .brand__icon text {
  fill: var(--ink);
}

.footer-description {
  max-width: 29rem;
  margin: 1rem 0 0;
  color: #b9cbd5;
  font-size: 0.87rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 750;
}

.footer-nav a {
  color: #e8f0f4;
  text-decoration-color: rgb(255 255 255 / 30%);
  text-underline-offset: 0.25em;
}

.footer-nav a:hover {
  color: var(--sun);
}

.footer-bottom {
  display: grid;
  padding-top: 1.4rem;
  color: #9fb4c0;
  gap: 0.55rem;
  font-size: 0.69rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-contact {
  color: inherit;
  text-decoration-color: rgb(159 180 192 / 45%);
  text-underline-offset: 0.2em;
}

.footer-contact:hover {
  color: #d9e5eb;
}

.legal-shell {
  min-height: 65vh;
  padding-block: clamp(3.5rem, 9vw, 7rem);
  background: var(--paper);
}

.legal-content {
  max-width: 52rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 850;
  text-underline-offset: 0.2em;
}

.legal-content h1 {
  margin-bottom: 1.7rem;
  font-size: clamp(2.7rem, 10vw, 4.7rem);
  font-weight: 950;
}

.legal-content h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: clamp(1.35rem, 4vw, 1.7rem);
}

.legal-content p {
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--teal-dark);
}

@media (min-width: 36rem) {
  .notice-bar__inner span:nth-child(n + 2) {
    display: inline;
  }

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

  .conditions > div:nth-child(odd) {
    border-right: 1px solid rgb(255 255 255 / 12%);
  }

  .conditions > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .country-card,
  .transparency-card {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }
}

@media (min-width: 48rem) {
  .main-nav {
    display: flex;
  }

  .header-link {
    display: none;
  }

  .fact-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps,
  .term-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step-card,
  .term-card {
    padding: 1.6rem;
  }

  .redeem-grid,
  .final-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .faq-layout {
    grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(3rem, 8vw, 6rem);
  }

  .faq-intro {
    position: sticky;
    top: 7rem;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-bottom {
    grid-template-columns: auto 1fr;
    justify-content: space-between;
    text-align: right;
  }
}

@media (min-width: 64rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(27rem, 1.02fr);
    gap: 2rem;
  }

  .hero__visual {
    width: 108%;
    max-width: none;
    margin-left: -2%;
  }

  .section--navy::after {
    position: absolute;
    right: -6rem;
    bottom: -7rem;
    width: 22rem;
    height: 22rem;
    border: 2px dashed rgb(255 255 255 / 10%);
    border-radius: 50%;
    content: "";
  }
}

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

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