:root {
  --ink: #1c1730;
  --muted: #635b78;
  --paper: #fffafd;
  --paper-strong: #fbf7ff;
  --surface: #ffffff;
  --line: #e8dff2;
  --purple: #8a4df3;
  --purple-dark: #5522b8;
  --purple-soft: #f2eaff;
  --mint: #dff9ef;
  --yellow: #fff1be;
  --shadow: 0 18px 55px rgba(63, 32, 105, 0.13);
  --soft-shadow: 0 10px 30px rgba(63, 32, 105, 0.08);
  --promo-height: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0, var(--paper-strong) 460px, var(--paper) 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

.granit-page {
  isolation: isolate;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(138, 77, 243, 0.12), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(13, 159, 117, 0.1), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(255, 241, 190, 0.34), transparent 42%),
    linear-gradient(180deg, #ffffff 0, var(--paper-strong) 460px, var(--paper) 100%);
}

.backdrop-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(138, 77, 243, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 77, 243, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35) 55%, transparent);
}

.backdrop-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.72;
}

.backdrop-orb-a {
  top: 8%;
  left: -6%;
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  background: rgba(138, 77, 243, 0.22);
  animation: backdrop-float-a 18s ease-in-out infinite;
}

.backdrop-orb-b {
  top: 34%;
  right: -8%;
  width: min(360px, 42vw);
  height: min(360px, 42vw);
  background: rgba(13, 159, 117, 0.16);
  animation: backdrop-float-b 22s ease-in-out infinite;
}

.backdrop-orb-c {
  bottom: 8%;
  left: 28%;
  width: min(520px, 56vw);
  height: min(520px, 56vw);
  background: rgba(255, 241, 190, 0.42);
  animation: backdrop-float-c 26s ease-in-out infinite;
}

@keyframes backdrop-float-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(28px, 18px, 0);
  }
}

@keyframes backdrop-float-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-24px, 26px, 0);
  }
}

@keyframes backdrop-float-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, -22px, 0);
  }
}

body.has-promo {
  padding-top: var(--promo-height);
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(138, 77, 243, 0.45);
  outline-offset: 3px;
}

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

[id] {
  scroll-margin-top: 112px;
}

.has-promo [id] {
  scroll-margin-top: 172px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(232, 223, 242, 0.8);
  background: rgba(255, 250, 253, 0.9);
  backdrop-filter: blur(16px);
}

.has-promo .site-header {
  top: var(--promo-height);
}

.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--promo-height);
  color: white;
  background: #5522b8;
  box-shadow: 0 10px 28px rgba(42, 20, 94, 0.24);
}

.promo-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: var(--promo-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

/* Revolut-specific promo banner theme (dark) */
.revolut-page .promo-banner {
  background: linear-gradient(90deg, #0d0d0d 0%, #1f1f1f 100%);
  color: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.revolut-page .promo-banner .promo-inner {
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
}

.revolut-page .promo-banner a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
}

.revolut-page .promo-banner .code {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

/* Raiffeisen-specific promo banner theme (yellow/gold) */
.raiffeisen-page .promo-banner {
  background: linear-gradient(90deg, #d4a52f 0%, #e8b84e 100%);
  color: #3d2817;
  box-shadow: 0 12px 36px rgba(212, 165, 47, 0.25);
}

.raiffeisen-page .promo-banner .promo-inner {
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
}

.raiffeisen-page .promo-banner a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  font-weight: 700;
}

.raiffeisen-page .promo-banner a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.raiffeisen-page .promo-banner strong {
  color: #3d2817;
}

.raiffeisen-page .promo-banner span {
  color: rgba(61, 40, 23, 0.8);
}

.raiffeisen-page .gradient-text {
  background: linear-gradient(100deg, #d4a52f 0%, #e8b84e 46%, #c49020 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.raiffeisen-page .gradient-text.alt {
  background: linear-gradient(100deg, #e8b84e 0%, #f5d368 46%, #d4a52f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-inner strong,
.promo-inner span {
  min-width: 0;
}

.promo-inner a {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 850;
}

.promo-inner .code {
  color: #211030;
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--purple), #31c48d);
  box-shadow: 0 8px 24px rgba(138, 77, 243, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.nav-toggle svg {
  display: block;
}

.nav-links a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  background: var(--purple-soft);
  color: var(--purple-dark);
}

.nav-links a.button {
  color: white;
  background: var(--purple-dark);
  border: 1px solid var(--purple-dark);
  box-shadow: 0 10px 22px rgba(85, 34, 184, 0.18);
}

.nav-links a.button:hover {
  color: white;
  background: #42178f;
  border-color: #42178f;
}

.button {
  border: 1px solid transparent;
  color: white;
  background: var(--purple-dark);
  box-shadow: 0 14px 30px rgba(85, 34, 184, 0.22);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--purple-dark);
  background: white;
  border-color: var(--line);
  box-shadow: none;
}

.button.small {
  min-height: 36px;
  padding: 9px 12px;
  font-size: 0.92rem;
}

button.button {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 750;
  line-height: 1.25;
}

.code-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 13px;
  border: 1px solid rgba(138, 77, 243, 0.2);
  border-radius: 8px;
  color: var(--purple-dark);
  background: white;
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(138, 77, 243, 0.12);
}

.code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0;
  color: #211030;
  background: var(--yellow);
  border: 1px solid #ead575;
  padding: 3px 7px;
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    repeating-linear-gradient(90deg, rgba(138, 77, 243, 0.07) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(242, 234, 255, 0.28));
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
}

.hero-glow-a {
  top: 12%;
  left: 10%;
  width: 240px;
  height: 240px;
  background: rgba(138, 77, 243, 0.22);
}

.hero-glow-b {
  top: 18%;
  right: 12%;
  width: 220px;
  height: 220px;
  background: rgba(13, 159, 117, 0.16);
}

.hero-glow-c {
  bottom: 8%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translateX(-50%);
  background: rgba(255, 241, 190, 0.34);
}

.hero-frame {
  position: absolute;
  inset: 32px max(16px, calc((100% - 1120px) / 2)) 32px;
  border: 1px solid rgba(138, 77, 243, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.58)),
    linear-gradient(90deg, rgba(223, 249, 239, 0.48), rgba(255, 241, 190, 0.28));
  box-shadow: var(--soft-shadow);
}

.hero::before {
  content: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  place-items: center;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple-dark);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-inline: auto;
  max-width: 820px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.h1-lead,
.h1-tail {
  display: block;
  line-height: 1.08;
}

.h1-tail {
  max-width: 18ch;
}

.hero-code-spotlight {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  width: min(100%, 420px);
  padding: 18px 24px 20px;
  border-radius: 22px;
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 224, 0.96)) padding-box,
    linear-gradient(120deg, #5522b8, #8a4df3 42%, #0d9f75 100%) border-box;
  box-shadow:
    0 18px 44px rgba(85, 34, 184, 0.16),
    0 0 0 1px rgba(138, 77, 243, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  animation: hero-code-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-code-caption {
  color: var(--purple-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-code-value {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.18em;
  color: #211030;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  background: linear-gradient(100deg, #5522b8 0%, #8a4df3 48%, #0d9f75 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-code-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.hero-code-shine::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 42%;
  height: 320%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: hero-code-shine 4.8s ease-in-out infinite;
}

@keyframes hero-code-enter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-code-shine {
  0%,
  100% {
    transform: translateX(-140%) rotate(24deg);
  }

  45% {
    transform: translateX(320%) rotate(24deg);
  }
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.28rem;
}

.lead {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-updated {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 0;
  padding: 9px 16px 9px 12px;
  max-width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(138, 77, 243, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 234, 255, 0.92) 52%, rgba(223, 249, 239, 0.9));
  box-shadow: var(--soft-shadow);
  color: var(--muted);
  font-size: 0.92rem;
  animation: updated-enter 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--purple-dark);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-indicator {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.live-dot {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #0d9f75;
  box-shadow: 0 0 0 1px rgba(13, 159, 117, 0.18);
  animation: live-dot-glow 2.4s ease-in-out infinite;
}

.live-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(13, 159, 117, 0.55);
  animation: live-pulse 2.4s ease-out infinite;
}

.updated-separator {
  color: rgba(99, 91, 120, 0.45);
  font-weight: 700;
}

.updated-text {
  color: var(--muted);
}

.hero-updated time {
  font-weight: 700;
  color: var(--ink);
}

@keyframes live-pulse {
  0% {
    transform: scale(0.82);
    opacity: 0.95;
  }

  70% {
    transform: scale(2.1);
    opacity: 0;
  }

  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

@keyframes live-dot-glow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(13, 159, 117, 0.18), 0 0 0 0 rgba(13, 159, 117, 0.28);
  }

  50% {
    box-shadow: 0 0 0 1px rgba(13, 159, 117, 0.24), 0 0 10px 2px rgba(13, 159, 117, 0.22);
  }
}

@keyframes updated-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-updated {
    animation: none;
  }

  .live-dot,
  .live-ring {
    animation: none;
  }

  .hero-code-spotlight,
  .hero-code-shine::after,
  .backdrop-orb {
    animation: none;
  }
}

.gradient-text {
  color: var(--purple-dark);
  background: linear-gradient(100deg, #5522b8 0%, #8a4df3 46%, #0d9f75 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text.alt {
  background-image: linear-gradient(100deg, #0d9f75 0%, #8a4df3 52%, #5522b8 100%);
}

.landing-page {
  --ink: #241f16;
  --muted: #6b6250;
  --paper: #fffaf0;
  --paper-strong: #fff7e6;
  --line: #eadfca;
  --purple: #b88a2c;
  --purple-dark: #72551c;
  --purple-soft: #fff4d8;
  --mint: #eef8ea;
  --yellow: #f7dfa1;
  --shadow: 0 18px 50px rgba(74, 57, 22, 0.1);
  --soft-shadow: 0 10px 28px rgba(74, 57, 22, 0.08);
  background: linear-gradient(180deg, #fffdf8 0, #fff8e9 420px, #fffaf0 100%);
}

.landing-page .site-header {
  border-bottom-color: rgba(234, 223, 202, 0.86);
  background: rgba(255, 253, 248, 0.92);
}

.landing-page .brand-mark {
  color: #241f16;
  background: linear-gradient(135deg, #f7dfa1, #b88a2c 58%, #8fbf84);
  box-shadow: 0 8px 22px rgba(184, 138, 44, 0.18);
}

.landing-page .button,
.landing-page .nav-links a.button {
  color: #241f16;
  background: linear-gradient(135deg, #f7dfa1, #d8b865);
  border-color: #d8b865;
  box-shadow: 0 12px 26px rgba(184, 138, 44, 0.16);
}

.landing-page .button:hover,
.landing-page .nav-links a.button:hover {
  color: #241f16;
  background: linear-gradient(135deg, #fbe8b7, #caa34a);
  border-color: #caa34a;
}

.landing-page .button.secondary {
  color: #72551c;
  background: #fffdf8;
  border-color: #eadfca;
  box-shadow: none;
}

.landing-page .nav-links a:hover {
  color: #72551c;
  background: #fff4d8;
}

.landing-page .hero {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 244, 216, 0.34)), repeating-linear-gradient(90deg, rgba(184, 138, 44, 0.07) 0 1px, transparent 1px 96px), #fff7e6;
}

.landing-page .hero::before {
  border-color: rgba(184, 138, 44, 0.16);
  background: radial-gradient(circle at 18% 22%, rgba(247, 223, 161, 0.24), transparent 34%), linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 250, 240, 0.7)), linear-gradient(90deg, rgba(238, 248, 234, 0.48), rgba(255, 244, 216, 0.46));
}

.landing-page .gradient-text {
  color: #72551c;
  background-image: linear-gradient(100deg, #72551c 0%, #b88a2c 48%, #4f8e5a 100%);
}

.landing-page .tag,
.landing-page .code {
  color: #604916;
  background: #fff4d8;
  border-color: #eadfca;
}

.landing-page .offer-meta {
  background: linear-gradient(180deg, #fffdf8, #fff5dc);
}

.landing-page .offer-meta strong,
.landing-page .eyebrow {
  color: #72551c;
}

.landing-page .highlight-band {
  color: #241f16;
  background: linear-gradient(135deg, #f7dfa1, #d8b865 50%, #9fcf95);
}

.landing-page .highlight-band p,
.landing-page .highlight-band .eyebrow {
  color: rgba(36, 31, 22, 0.74);
}

.landing-redesign .site-header {
  background: rgba(255, 253, 248, 0.84);
}

.landing-redesign .clean-hero {
  min-height: 650px;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 250, 240, 0.86)),
    linear-gradient(115deg, rgba(247, 223, 161, 0.24), transparent 44%),
    #fffaf0;
}

.landing-redesign .clean-hero::before {
  inset: 36px max(18px, calc((100% - 1120px) / 2)) 42px;
  border: 1px solid rgba(184, 138, 44, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), transparent 38%, rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(90deg, rgba(184, 138, 44, 0.08) 0 1px, transparent 1px 116px);
  box-shadow: none;
}

.landing-redesign .clean-hero::after {
  content: "";
  position: absolute;
  inset: auto max(24px, calc((100% - 1120px) / 2)) 40px;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(184, 138, 44, 0.42), transparent);
}

.landing-redesign .hero-inner {
  z-index: 1;
  padding: 108px 0 86px;
}

.landing-redesign .hero-copy {
  max-width: 880px;
}

.landing-redesign h1 {
  max-width: 850px;
  color: #211b12;
  font-size: 4.35rem;
}

.landing-redesign .lead {
  max-width: 740px;
  color: #63563d;
}

.hero-summary {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-summary span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(184, 138, 44, 0.18);
  border-radius: 8px;
  color: #6b6250;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.hero-summary strong {
  color: #72551c;
  font-size: 1.25rem;
}

.clean-offer-list {
  display: grid;
  gap: 14px;
}

.clean-offer {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(180px, 240px) auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.featured-offer {
  padding: 30px 24px;
  border-color: rgba(138, 77, 243, 0.28);
  background:
    linear-gradient(90deg, rgba(242, 234, 255, 0.92), rgba(255, 255, 255, 0.88) 54%),
    #ffffff;
  box-shadow: 0 18px 44px rgba(85, 34, 184, 0.12);
}

.revolut-offer {
  border-color: #dedede;
}

.raiffeisen-offer {
  border-color: #e8c862;
  background:
    linear-gradient(90deg, rgba(255, 249, 220, 0.88), rgba(255, 255, 255, 0.86) 54%),
    #ffffff;
}

.offer-rank {
  color: #b88a2c;
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1;
}

.clean-offer h3 {
  font-size: 1.75rem;
}

.clean-offer p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--muted);
}

.clean-offer-value {
  display: grid;
  gap: 5px;
}

.clean-offer-value strong {
  color: var(--purple-dark);
  font-size: 1.45rem;
  line-height: 1.05;
}

.clean-offer-value span {
  color: var(--muted);
  font-weight: 700;
}

.revolut-offer .tag {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
}

.revolut-offer .clean-offer-value strong {
  color: #111111;
}

.raiffeisen-offer .tag {
  color: #3d2817;
  background: #fff3ae;
  border-color: #e8c862;
}

.raiffeisen-offer .clean-offer-value strong {
  color: #3d2817;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.decision-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.decision-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 6px;
  color: #72551c;
  background: #fff4d8;
  font-size: 0.82rem;
  font-weight: 850;
}

.decision-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.section {
  position: relative;
  padding: 76px 0;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}

.section.tint {
  background:
    linear-gradient(180deg, rgba(242, 234, 255, 0.92), rgba(242, 234, 255, 0.72)),
    var(--purple-soft);
}

.section.tint::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(138, 77, 243, 0.08), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(13, 159, 117, 0.06), transparent 24%);
}

.section.mint {
  background:
    linear-gradient(180deg, rgba(223, 249, 239, 0.92), rgba(223, 249, 239, 0.72)),
    var(--mint);
}

.section.mint::before {
  background:
    radial-gradient(circle at 84% 16%, rgba(13, 159, 117, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(138, 77, 243, 0.04) 1px, transparent 1px);
  background-size: auto, 88px 100%;
}

.granit-page .section:not(.tint):not(.mint) {
  background: rgba(255, 255, 255, 0.42);
}

.granit-page .section:not(.tint):not(.mint)::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(138, 77, 243, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 100%);
}

.container {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.offer-list,
.keyword-grid,
.faq-grid,
.package-grid,
.steps,
.referral-steps,
.facts-grid,
.bonus-grid,
.timeline,
.wallet-grid {
  display: grid;
  gap: 18px;
}

.offer-list {
  grid-template-columns: 1fr;
}

.keyword-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.facts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.granit-bonus-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.wallet-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

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

.referral-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.card,
.article-card,
.offer-card,
.keyword-card,
.faq-card,
.package-card,
.fact,
.step,
.referral-step,
.notice,
.compare-row,
.bonus-card,
.timeline-step,
.wallet-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--purple-soft);
}

.article-body,
.offer-card,
.keyword-card,
.faq-card,
.package-card,
.fact,
.step,
.referral-step,
.notice,
.bonus-card,
.timeline-step,
.wallet-card {
  padding: 22px;
}

.article-body p,
.offer-card p,
.keyword-card p,
.faq-card p,
.package-card p,
.fact p,
.step p,
.referral-step p,
.notice p,
.bonus-card p,
.timeline-step p,
.wallet-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.offer-card h3 {
  font-size: 1.55rem;
}

.offer-meta {
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.offer-meta strong {
  color: var(--purple-dark);
  font-size: 1.55rem;
  line-height: 1.1;
}

.offer-meta span {
  color: var(--muted);
}

.keyword-card,
.faq-card {
  padding: 22px;
}

.keyword-card h3,
.faq-card h3 {
  font-size: 1.12rem;
}

.notice.compact {
  margin-top: 18px;
  box-shadow: none;
}

.notice.compact p {
  margin: 0;
}

.copy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: center;
  margin: 32px 0 30px;
  padding: 30px;
  border: 1px solid rgba(138, 77, 243, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 234, 255, 0.9) 58%, rgba(223, 249, 239, 0.6)), var(--surface);
  box-shadow: var(--soft-shadow);
}

.copy-panel h3 {
  max-width: 700px;
  color: var(--purple-dark);
  font-size: 2.1rem;
}

.copy-panel h3 span {
  white-space: nowrap;
}

.copy-panel p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
}

.copy-hints {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.copy-hints li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.copy-hints li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22a879;
}

.copy-box {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(85, 34, 184, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(85, 34, 184, 0.12);
}

.copy-label {
  color: var(--purple-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copy-box input {
  min-width: 0;
  min-height: 64px;
  border: 1px solid rgba(85, 34, 184, 0.26);
  border-radius: 8px;
  padding: 14px 16px;
  font:
    900 2rem "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  letter-spacing: 0;
  color: var(--purple-dark);
  background: #fffaf0;
  text-align: center;
}

.copy-status {
  grid-column: 1 / -1;
  min-height: 0;
  color: #0d7f5f;
  font-weight: 800;
}

.copy-status:not(:empty) {
  min-height: 20px;
}

.bonus-card strong {
  display: block;
  color: var(--purple-dark);
  font-size: 3.15rem;
  line-height: 1;
}

.bonus-card.emphasis {
  color: var(--ink);
  border-color: rgba(85, 34, 184, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 190, 0.78)), var(--yellow);
}

.bonus-card.emphasis p,
.bonus-card.emphasis .tag {
  color: var(--muted);
}

.bonus-card.emphasis strong {
  color: var(--purple-dark);
}

.bonus-card.emphasis .tag {
  background: white;
  border: 1px solid rgba(85, 34, 184, 0.16);
}

.package-note {
  margin-bottom: 34px;
}

#csomagok .package-grid {
  gap: 28px;
  margin-top: 0;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--store-badge-height, 44px);
  border-radius: 8px;
  text-decoration: none;
}

.store-badge img {
  width: auto;
  height: var(--store-badge-height, 44px);
  object-fit: contain;
}

.store-badge.google img {
  height: var(--store-badge-height, 44px);
  margin: 0;
}

.referral-step {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 238px;
  padding: 22px;
}

.referral-step > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: white;
  background: var(--purple-dark);
  font-weight: 900;
}

.referral-step.featured {
  border-color: rgba(85, 34, 184, 0.28);
  background: linear-gradient(180deg, #ffffff, #f7f0ff);
}

.referral-step.featured > span {
  background: #22a879;
}

.timeline-step {
  position: relative;
  min-height: 178px;
}

.timeline-step > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: white;
  background: var(--purple-dark);
  font-weight: 900;
}

.wallet-card ol {
  margin: 16px 0 20px;
  padding-left: 22px;
  color: var(--muted);
}

.wallet-card li + li {
  margin-top: 8px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 6px;
  color: var(--purple-dark);
  background: var(--purple-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.package-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.package-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.price {
  white-space: nowrap;
  color: var(--purple-dark);
  font-weight: 900;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31c48d;
}

.compare {
  display: grid;
  gap: 12px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.compare-row strong {
  font-size: 1.05rem;
}

.muted {
  color: var(--muted);
}

.highlight-band {
  color: white;
  background: linear-gradient(135deg, #5522b8, #8a4df3 48%, #1b9c75);
}

.highlight-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.highlight-band p {
  color: rgba(255, 255, 255, 0.86);
}

.highlight-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.highlight-band .code-pill {
  border-color: rgba(255, 255, 255, 0.25);
}

.source-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

/* ── Revolut page theme ─────────────────────────────────────────── */

.revolut-page {
  --ink: #111111;
  --muted: #666666;
  --paper: #f8f8f8;
  --paper-strong: #f2f2f2;
  --surface: #ffffff;
  --line: #e0e0e0;
  --purple: #2c2c2c;
  --purple-dark: #111111;
  --purple-soft: #f0f0f0;
  --mint: #e6f9f0;
  --yellow: #f5f5f5;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  --soft-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  background: linear-gradient(180deg, #ffffff 0, #f8f8f8 460px, #f5f5f5 100%);
}

.revolut-page .site-header {
  border-bottom-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.revolut-page .brand-mark {
  color: white;
  background: linear-gradient(135deg, #191c21, #454d5c);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.revolut-page .button,
.revolut-page .nav-links a.button {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.revolut-page .button:hover,
.revolut-page .nav-links a.button:hover {
  color: #ffffff;
  background: #333333;
  border-color: #333333;
}

.revolut-page .button.secondary {
  color: #111111;
  background: #ffffff;
  border-color: #e0e0e0;
  box-shadow: none;
}

.revolut-page .nav-links a:hover {
  color: #111111;
  background: #f0f0f0;
}

.revolut-page .hero {
  color: white;
  border-bottom-color: #2a2a2a;
  background: linear-gradient(180deg, #0d0d0d 0%, #1e1e1e 100%);
}

.revolut-page .hero::before {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.revolut-page .hero .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.revolut-page .hero h1 {
  color: white;
}

.revolut-page .hero .lead {
  color: rgba(255, 255, 255, 0.7);
}

.revolut-page .hero .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.revolut-page .hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.revolut-page .gradient-text {
  color: #ffffff;
  background-image: linear-gradient(100deg, #ffffff 0%, #aaaaaa 50%, #d5d5d5 100%);
}

.revolut-page .tag {
  color: #111111;
  background: #eeeeee;
  border: 1px solid #dddddd;
}

.revolut-page .code {
  color: #111111;
  background: #f0f0f0;
  border-color: #d8d8d8;
}

.revolut-page .offer-meta {
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
}

.revolut-page .offer-meta strong,
.revolut-page .eyebrow {
  color: #111111;
}

.revolut-page .bonus-card strong {
  color: #111111;
}

.revolut-page .highlight-band {
  color: #ffffff;
  background: linear-gradient(135deg, #111111, #2e2e2e 48%, #111111);
}

.revolut-page .highlight-band p,
.revolut-page .highlight-band .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.revolut-page .copy-panel {
  border-color: rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(242, 242, 242, 0.92) 58%, rgba(245, 245, 245, 0.8)), var(--surface);
}

.revolut-page .copy-panel h3 {
  color: #111111;
}

.revolut-page .copy-box {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.revolut-page .copy-box input {
  border-color: rgba(0, 0, 0, 0.18);
  color: #111111;
  background: #f8f8f8;
}

.revolut-page .copy-label {
  color: #111111;
}

.revolut-page .referral-step > span {
  background: #111111;
}

.revolut-page .referral-step.featured {
  border-color: rgba(0, 0, 0, 0.18);
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
}

.revolut-page .referral-step.featured > span {
  background: #444444;
}

.revolut-page .timeline-step > span {
  background: #111111;
}

/* ── /Revolut page theme ─────────────────────────────────────────── */

.site-footer {
  padding: 36px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: white;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

@media (max-width: 860px) {
  :root {
    --promo-height: 88px;
  }

  .promo-inner {
    flex-wrap: wrap;
    gap: 6px 12px;
    padding: 10px 0;
    line-height: 1.25;
  }

  .has-promo [id] {
    scroll-margin-top: 204px;
  }

  .promo-inner strong,
  .promo-inner span {
    flex: 1 1 100%;
  }

  .promo-inner a {
    flex: 1 1 100%;
  }

  .revolut-page .promo-banner .promo-inner a {
    flex: 1 1 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-frame {
    inset: 18px 16px;
    border-radius: 14px;
  }

  .hero-code-spotlight {
    width: 100%;
    padding: 16px 18px 18px;
  }

  .hero-code-value {
    letter-spacing: 0.14em;
  }

  .section-head,
  .copy-panel,
  .offer-card,
  .clean-offer,
  .decision-grid,
  .highlight-band .container,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .landing-redesign .clean-hero {
    min-height: auto;
  }

  .landing-redesign .hero-inner {
    padding: 74px 0 70px;
  }

  .landing-redesign h1 {
    font-size: 3.2rem;
  }

  .clean-offer {
    gap: 16px;
    align-items: start;
  }

  .clean-offer .button {
    width: 100%;
  }

  .clean-offer-value {
    padding-top: 2px;
  }

  .keyword-grid,
  .faq-grid,
  .package-grid,
  .facts-grid,
  .steps,
  .referral-steps,
  .bonus-grid,
  .timeline,
  .wallet-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
  }

  .brand {
    flex: 0 0 auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    color: var(--muted);
  }

  .nav.open {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 28px rgba(31, 20, 60, 0.08);
    border-radius: 8px;
    padding: 12px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-inner {
    padding: 68px 0 74px;
  }

  .offer-meta {
    justify-items: stretch;
  }
}

@media (max-width: 520px) {
  :root {
    --promo-height: 104px;
  }

  .container,
  .hero-inner,
  .nav,
  .promo-inner {
    width: min(100% - 24px, 1120px);
  }

  .hero-inner {
    padding: 56px 0 64px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .copy-panel {
    padding: 20px;
  }

  .copy-panel h3 {
    font-size: 1.65rem;
  }

  .copy-box input {
    min-height: 58px;
    font-size: 1.55rem;
  }

  .section {
    padding: 56px 0;
  }

  .article-body,
  .offer-card,
  .clean-offer,
  .keyword-card,
  .faq-card,
  .package-card,
  .fact,
  .step,
  .notice,
  .bonus-card,
  .referral-step,
  .timeline-step,
  .wallet-card {
    padding: 18px;
  }

  .button,
  .code-pill {
    width: 100%;
  }

  .copy-box {
    grid-template-columns: 1fr;
  }

  .copy-box .button {
    width: 100%;
  }

  .app-buttons {
    justify-content: flex-start;
  }

  .store-badge,
  .store-badge img,
  .store-badge.google img {
    width: auto;
    max-height: none;
  }

  #csomagok .package-grid {
    gap: 22px;
  }

  .package-top {
    display: grid;
  }
}
