/* ── Design tokens ───────────────────────────────────────────── */
:root {
  --go-bright:    #b9ff10;
  --go-dark:      #380202;
  --go-dark-text: #131c00;
  --go-field-bg:  #f0ffcd;
  --go-shadow:    1px 2px 1px rgba(19, 28, 0, 0.30);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Base ────────────────────────────────────────────────────── */
html, body {
  height: 100%;
}

body {
  background-color: var(--go-bright);
  font-family: 'proxima-nova', 'Nunito', 'Inter', system-ui, sans-serif;
  color: #000;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Page wrapper ────────────────────────────────────────────── */
.page {
  min-height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 64px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--go-bright);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 19px;
  padding-bottom: 21px;
  padding-left: max(64px, calc((100% - 1280px) / 2 + 64px));
  padding-right: max(64px, calc((100% - 1280px) / 2 + 64px));
}

.nav__logo img {
  width: 125px;
  height: 35px;
  display: block;
}

.nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 204px;
  height: 48px;
  background: var(--go-dark-text);
  border: 1px solid var(--go-dark);
  border-radius: 10px;
  box-shadow: var(--go-shadow);
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--go-bright);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.nav__btn:hover {
  box-shadow: 3px 6px 12px rgba(19,28,0,0.25);
  transform: translateY(-1px);
}

.nav__btn:active {
  box-shadow: 1px 2px 2px rgba(19,28,0,0.2);
  transform: translateY(0);
}

/* ── Main content area ───────────────────────────────────────── */
.main-content {
  flex: 1;
  width: 100%;
}

/* ── Page title ──────────────────────────────────────────────── */
.page-title {
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 900;
  font-size: 75px;
  line-height: 60px;
  text-transform: uppercase;
  color: var(--go-dark);
  padding: 80px 0 40px;
}

/* ── Policy / legal page content ─────────────────────────────── */
.policy-content {
  width: 100%;
  max-width: 860px;
  padding-bottom: 80px;
}

.policy-meta {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 16px;
  color: var(--go-dark);
  opacity: 0.7;
  margin-bottom: 48px;
}

.policy-section {
  margin-bottom: 96px;
}

.policy-heading {
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--go-dark);
  margin-bottom: 16px;
}

.policy-subheading {
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--go-dark);
  margin: 24px 0 10px;
}

.policy-body {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 17px;
  line-height: 26px;
  color: var(--go-dark);
  margin-bottom: 16px;
}

.policy-list {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 17px;
  line-height: 26px;
  color: var(--go-dark);
  padding-left: 24px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-list a {
  color: var(--go-dark);
  text-decoration: underline;
}

.policy-list a:hover {
  opacity: 0.7;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  width: 100%;
  margin-top: 160px;
  padding: 0;
}

.footer-logo {
  margin-bottom: 8px;
}

.legal {
  font-size: 12px;
  line-height: 16px;
  color: var(--go-dark);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--go-dark);
  margin: 24px 0 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}

.footer-links a {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 16px;
  color: var(--go-dark);
  text-decoration: none;
  margin-right: 12px;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.lime-page .footer-links a:hover {
  color: #FF1041;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.social-icon {
  display: block;
  line-height: 0;
}

/* ── Lead Block ──────────────────────────────────────────────── */
.lead-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 621px;
  padding: 91px 0;
  gap: 40px;
}

.lead-caption {
  flex: 0 1 569px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lead-headline {
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 40px;
  color: #380202;
  text-transform: uppercase;
  text-align: center;
  max-width: 569px;
}

.lead-sub {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 26px;
  line-height: 26px;
  color: #000;
  text-align: center;
  max-width: 388px;
}

.btn-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 235px;
  height: 48px;
  background: var(--go-bright);
  border: 1px solid var(--go-dark);
  border-radius: 10px;
  box-shadow: var(--go-shadow);
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--go-dark-text);
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.btn-join:hover {
  box-shadow: 3px 6px 12px rgba(19,28,0,0.25);
  transform: translateY(-1px);
}

.btn-join:active {
  background: var(--go-dark-text);
  color: var(--go-bright);
  box-shadow: var(--go-shadow);
  transform: translateY(0);
}

/* ── Rate Checker Card ───────────────────────────────────────── */
.rate-checker {
  flex: 0 0 391px;
}

.rate-disclaimer {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: var(--go-dark-text);
  text-align: left;
  margin-top: 8px;
  opacity: 0.6;
}

.rate-card {
  background: var(--go-field-bg);
  border-radius: 12px;
  box-shadow: 3px 3px 10px 0px rgba(64, 92, 0, 0.5);
  width: 391px;
  height: 507px;
  position: relative;
  overflow: hidden;
}

.rate-card-header {
  padding: 21px 42px 0 34px;
}

.rate-card-title {
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--go-dark-text);
}

.rate-card-body {
  background: #fff;
  border-radius: 12px;
  position: absolute;
  top: 113px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 29px 35px 26px 34px;
  display: flex;
  flex-direction: column;
}

.btn-go-pay {
  display: block;
  width: 100%;
  margin-top: auto;
  height: 42px;
  background: var(--go-bright);
  border: none;
  border-radius: 10px;
  box-shadow: 1px 2px 1px rgba(19, 28, 0, 0.6);
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 900;
  font-size: 32px;
  text-decoration: none;
  line-height: 42px;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}

.btn-go-pay:hover {
  background: #f7cd59;
  box-shadow: 1px 3px 2px 1px rgba(19, 28, 0, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
  color: #000;
}

.btn-go-pay:active {
  transform: translateY(0);
  box-shadow: 1px 2px 1px rgba(19, 28, 0, 0.6);
}

.rate-section { }

.rate-section + .rate-section {
  margin-top: 34px;
}

.rate-field-label {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 16px;
  line-height: 16px;
  color: var(--go-dark-text);
  display: block;
  margin-bottom: 2px;
}

.rate-field {
  background: #e7ebe3;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px 0 12px;
}

.rate-amount {
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 900;
  font-size: 25px;
  line-height: 20px;
  text-transform: uppercase;
  color: #000;
}

.currency-btn {
  background: #fff;
  height: 32px;
  width: 77px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 6px 5px 7px;
  flex-shrink: 0;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.currency-btn:hover {
  box-shadow: 3px 6px 12px rgba(19,28,0,0.25);
  transform: translateY(-1px);
}

.currency-btn:active {
  box-shadow: 1px 2px 2px rgba(19,28,0,0.2);
  transform: translateY(0);
}

.currency-btn .flag {
  width: 28px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.currency-btn .currency-code {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--go-dark-text);
  text-align: center;
  flex: 1;
}

.rate-breakdown {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.rate-breakdown-labels,
.rate-breakdown-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
}

.rate-breakdown-labels span,
.rate-breakdown-values span {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 16px;
  line-height: 16px;
  color: var(--go-dark-text);
  display: block;
}

.rate-breakdown-values .total {
  font-weight: 700;
}

/* ── Rate Calculator inputs ─────────────────────────────────── */
.rate-input {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 900;
  font-size: 25px;
  line-height: 20px;
  color: #000;
  flex: 1;
  min-width: 0;
  width: 0;
}

.rate-input::-webkit-outer-spin-button,
.rate-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.rate-input[type=number] { -moz-appearance: textfield; }

.currency-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  height: 32px;
  border-radius: 4px;
  padding: 5px 8px 5px 7px;
  flex-shrink: 0;
  cursor: pointer;
}

.currency-select-wrap .flag {
  width: 28px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.select-caret {
  font-size: 9px;
  color: var(--go-dark-text);
  line-height: 1;
}

.currency-overlay-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* ── Text Row ───────────────────────────────────────────────── */
.text-row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
  padding: 64px 0;
}

.text-block {
  flex: 1 0 0;
  min-width: 324px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}

.text-block h3 {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 26px;
  color: #380202;
}

.text-block p {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: #380202;
}

/* ── Feature Block ───────────────────────────────────────────── */
.feature-block {
  /* full-bleed: break out of any max-width container to viewport edges */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: #10b9ff;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.feature-block__headline {
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 900;
  font-size: 75px;
  line-height: 60px;
  text-transform: uppercase;
  color: #380202;
  text-align: center;
  max-width: 1150px;
}

.feature-block__sub {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 26px;
  line-height: 26px;
  color: #000;
  text-align: center;
  max-width: 1152px;
}

.feature-block__img-wrap {
  width: 100%;
  max-width: 1152px;
  height: 390px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.feature-block__img-wrap img {
  width: 100%;
  height: 165%;
  object-fit: cover;
  object-position: center 14%;
  position: absolute;
  top: -14%;
  left: 0;
  will-change: transform;
}

/* ── Feature Block 2 (red) ───────────────────────────────────── */
.feature-block-2 {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: #ff1041;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.feature-block-2__img-wrap {
  width: 100%;
  max-width: 1152px;
  height: 533px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.feature-block-2__img-wrap img {
  position: absolute;
  width: 135.42%;
  height: 163.36%;
  left: -17.71%;
  top: -43.12%;
  object-fit: cover;
  will-change: transform;
}

.feature-block-2__details {
  width: 100%;
  max-width: 1150px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.feature-block-2__headline {
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 900;
  font-size: 60px;
  line-height: 48px;
  text-transform: uppercase;
  color: #fff;
  max-width: 1150px;
}

/* ── City cycle animation ── */
#cityCycle {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: #b9ff10;
}

#cityCycle.is-leaving {
  opacity: 0;
  transform: translateY(-12px);
}

#cityCycle.is-entering {
  opacity: 0;
  transform: translateY(12px);
}

#destCycle {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: #b9ff10;
}

#destCycle.is-leaving {
  opacity: 0;
  transform: translateY(-12px);
}

#destCycle.is-entering {
  opacity: 0;
  transform: translateY(12px);
}

.feature-block-2__sub {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 26px;
  line-height: 26px;
  color: #fff;
  max-width: 662px;
}

/* ── Bold Message ────────────────────────────────────────────── */
.bold-message {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  padding: 200px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B9FF10;
}

.bold-message__text {
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 32px;
  color: #380202;
  text-align: center;
  max-width: 680px;
  text-transform: uppercase;
}

.inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border-radius: 4px;
  height: 32px;
  padding: 5px 6px 5px 7px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  white-space: nowrap;
}

.inline-badge--gbp  { transform: rotate(1deg);  }
.inline-badge--dest { transform: rotate(-2deg); }

/* shared cycling badge base */
.currency-cycle,
.country-cycle {
  display: inline-block;
  position: relative;
  height: 0;
  overflow: visible;
  vertical-align: middle;
  top: 0;
}

.currency-cycle { width: 108px; }
.country-cycle  { width: 162px; margin-left: -16px; margin-right: -18px; }

.currency-cycle .inline-badge,
.country-cycle  .inline-badge {
  position: absolute;
  top: -26px;
  height: 42px;
  padding: 6px 9px 6px 8px;
  gap: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

/* currency: left-aligned */
.currency-cycle .inline-badge {
  left: 0;
  transform: translateY(10px) rotate(1deg);
}
.currency-cycle .inline-badge.is-active {
  opacity: 1;
  transform: translateY(0) rotate(1deg);
  pointer-events: auto;
}
.currency-cycle .inline-badge.is-leaving {
  opacity: 0;
  transform: translateY(-10px) rotate(1deg);
}

/* country: centred within its slot */
.country-cycle .inline-badge {
  left: 50%;
  transform: translateX(-50%) translateY(10px) rotate(1deg);
}
.country-cycle .inline-badge.is-active {
  opacity: 1;
  transform: translateX(-50%) translateY(0) rotate(1deg);
  pointer-events: auto;
}
.country-cycle .inline-badge.is-leaving {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px) rotate(1deg);
}

.currency-cycle .inline-badge .flag,
.country-cycle  .inline-badge .flag {
  width: 34px;
  height: 26px;
}

.currency-cycle .inline-badge .badge-label,
.country-cycle  .inline-badge .badge-label {
  font-size: 15px;
}

.inline-badge .flag {
  width: 28px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.inline-badge .badge-label {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: var(--go-dark-text);
  text-align: center;
}

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mini Banner ─────────────────────────────────────────────── */
.mini-banner {
  width: 100%;
  padding: 40px 0;
}

.mini-banner__img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
}

.mini-banner__img-wrap img.parallax-img {
  position: absolute;
  width: 114.76%;
  height: 263.97%;
  left: -3.76%;
  top: calc(-9.63% - 150px);
  object-fit: cover;
  will-change: transform;
}

.mini-banner__overlay {
  position: absolute;
  bottom: 28px;
  left: 38px;
  z-index: 2;
}

.mini-banner__headline {
  font-family: 'proxima-soft', 'proxima-nova', system-ui, sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 32px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.mini-banner__sub-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-banner__icon {
  width: 28px;
  height: 27px;
  flex-shrink: 0;
}

.mini-banner__sub {
  font-family: 'proxima-nova', system-ui, sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: #fff;
}

/* ── 2-column: hide 3rd text block when it can't fit ────────── */
@media (max-width: 1100px) and (min-width: 601px) {
  .text-row li:nth-child(3) {
    display: none;
  }

}

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .page {
    padding: 60px 22px 60px;
  }

  .bold-message {
    display: none;
  }

  .nav {
    padding-left: 22px;
    padding-right: 22px;
  }

  .nav__btn {
    width: 160px;
    font-size: 18px;
  }

  .footer {
    margin-top: 96px;
    padding: 0;
  }

  .lead-block {
    flex-direction: column;
    padding: 48px 0;
    gap: 64px;
    min-height: unset;
  }

  .lead-caption {
    flex: 0 0 auto;
  }

  .text-row {
    flex-direction: column;
    gap: 32px;
    padding: 14px 0 64px;
  }

  .text-block {
    min-width: unset;
  }

  /* show 3rd item again when stacked */
  .text-row li:nth-child(3) {
    display: flex;
  }

  .feature-block {
    padding: 48px 22px;
  }

  .feature-block-2 {
    padding: 48px 22px;
  }

  .mini-banner {
    padding: 40px 0 40px;
  }

  .mini-banner__headline {
    font-size: 28px;
    line-height: 24px;
  }

  .mini-banner__sub {
    font-size: 16px;
  }

  .mini-banner__img-wrap img.parallax-img {
    width: 100%;
    height: 140%;
    left: 0;
    top: -20%;
    object-fit: cover;
    object-position: 65% center;
  }

  .feature-block-2__img-wrap {
    height: 260px;
  }

  .feature-block-2__headline {
    font-size: 42px;
    line-height: 38px;
  }

  .feature-block-2__sub {
    font-size: 20px;
    line-height: 22px;
  }

  .feature-block__headline {
    font-size: 52px;
    line-height: 46px;
  }

  .feature-block__sub {
    font-size: 20px;
    line-height: 22px;
  }

  .feature-block__img-wrap {
    height: 220px;
  }

  .lead-headline {
    font-size: 36px;
    line-height: 30px;
  }

  .page-title {
    font-size: 36px;
    line-height: 30px;
  }

  .lead-sub {
    font-size: 20px;
  }

  .rate-checker,
  .rate-card {
    width: 100%;
    max-width: 391px;
  }
}
