:root {
  --navy: 220 55% 14%;
  --saffron: 28 96% 54%;
  --gold: 42 82% 52%;
  --india-green: 145 58% 26%;
  --background: 40 40% 98%;
  --foreground: 220 55% 12%;
  --muted: 40 25% 94%;
  --muted-foreground: 220 15% 40%;
  --border: 35 20% 88%;
  --radius: 0.75rem;
  --max: 80rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

.font-display {
  font-family: Fraunces, Georgia, serif;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Ticker */
.ticker {
  background: hsl(var(--navy));
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticker-label {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--gold));
}

.marquee {
  flex: 1;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: marquee 40s linear infinite;
}

.ticker .marquee-track {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  align-items: center;
  gap: 1.75rem;
}

.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.tick-pair {
  font-weight: 600;
}

.tick-quotes {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.tick-quotes > span {
  display: grid;
  grid-template-columns: 1.05em max-content;
  column-gap: 0.4rem;
  align-items: baseline;
}

.tick-side {
  color: hsl(var(--gold));
  font-weight: 700;
}

.ticker .dot {
  margin-left: 0.35rem;
}

.ticker-note {
  margin: 0.28rem auto 0.1rem;
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.dot {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  margin-left: 2rem;
  border-radius: 999px;
  background: hsl(var(--gold));
  vertical-align: middle;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid hsl(var(--border) / 0.7);
  background: hsl(var(--background) / 0.85);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(220px, 48vw);
  object-fit: contain;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.nav a:hover {
  color: hsl(var(--saffron));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 2rem;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.98);
}

.btn-navy {
  min-height: 44px;
  padding: 0 1.25rem;
  background: hsl(var(--navy));
  color: #fff;
  font-size: 0.9rem;
}

.btn-saffron {
  background: hsl(var(--saffron));
  color: #fff;
  box-shadow: 0 12px 24px hsl(var(--saffron) / 0.25);
}

.btn-outline {
  border: 1px solid hsl(var(--navy));
  color: hsl(var(--navy));
  background: transparent;
}

.btn-outline:hover {
  background: hsl(var(--navy));
  color: #fff;
}

.call-label-full {
  display: none;
}

/* Hero — content sits under the header, not vertically centered in the viewport */
.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  background: hsl(var(--navy));
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, hsl(var(--navy)) 0%, hsl(var(--navy) / 0.85) 45%, hsl(var(--navy) / 0.25) 100%);
}

.hero-glow {
  pointer-events: none;
  position: absolute;
  right: -6rem;
  top: 25%;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: hsl(var(--saffron) / 0.2);
  filter: blur(64px);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  min-height: 0;
  padding: 0.85rem 0 2.5rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: hsl(var(--gold));
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1.75rem 0 0;
  max-width: 16ch;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.accent-word {
  position: relative;
  display: inline-block;
  margin-left: 0.4rem;
  color: hsl(var(--saffron));
}

.accent-word svg {
  position: absolute;
  left: 0;
  bottom: -0.7rem;
  width: 100%;
}

.hero-lead {
  margin: 2.25rem 0 0;
  max-width: 44rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  margin-top: 2.5rem;
}

.hero-tagline {
  margin: 2.5rem 0 0;
  font-size: 1.25rem;
  font-style: italic;
  color: hsl(var(--gold));
}

/* Hero rate calculator — same spot as WSFx overlay */
.rate-calc {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 390px;
  color: #111;
  scroll-margin-top: 5.5rem;
}

.rate-calc-card {
  background: #fff;
  border: 1px solid #adadad;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.rate-calc-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  background: #f3f3f3;
  border-bottom: 1px solid #adadad;
}

.rate-tab {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  margin: 0;
  padding: 0.55rem 0.35rem;
  background: #f3f3f3;
  border: 0;
  border-right: 1px solid #adadad;
  color: #6a7282;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.rate-tab:last-child {
  border-right: 0;
}

.rate-tab.is-active {
  background: #fff;
  color: #111;
  box-shadow: inset 0 -2px 0 #111;
}

.rate-calc-body {
  padding: 0.85rem 1.15rem 1.1rem;
}

.rate-panel[hidden] {
  display: none;
}

.rate-radios {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 0.85rem;
}

.rate-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
}

.rate-radio input {
  accent-color: #111;
  width: 1rem;
  height: 1rem;
}

.rate-field {
  margin: 0 0 0.85rem;
  padding: 0.15rem 0.7rem 0.35rem;
  border: 1.5px solid #adadad;
  border-radius: 6px;
  min-width: 0;
}

.rate-field legend {
  padding: 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #444;
}

.rate-static,
.rate-ccy {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  min-height: 2.1rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.rate-ccy-select {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.1rem;
}

.rate-ccy-select select,
.rate-field > select,
.rate-field input {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  outline: none;
  min-height: 2.1rem;
}

.rate-ccy-select select,
.rate-field > select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 1.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23111' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
}

.rate-field input::placeholder {
  color: #9aa0a6;
  font-weight: 500;
}

.rate-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.rate-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.rate-pair .rate-field:last-child legend {
  color: transparent;
}

.rate-quote {
  margin: 0.15rem 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #111;
}

.rate-hint {
  margin: 0.15rem 0 0.35rem;
  font-size: 0.72rem;
  color: #666;
}

.rate-note {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  color: #888;
}

.rate-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  background: #e11d2e;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.rate-cta:hover {
  background: #c41826;
}

.rate-extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-top: 0.7rem;
}

.rate-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: #1d4ed8;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.rate-link:hover {
  color: #1e3a8a;
}

.rate-tax {
  margin: 0.65rem 0 0;
  font-size: 0.65rem;
  line-height: 1.45;
  color: #888;
}

.band {
  background: hsl(var(--navy));
  color: #fff;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  padding: 0.75rem 0;
}

.band .marquee-track {
  gap: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Stats */
.stats {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid hsl(var(--border));
}

.stat {
  padding: 1.75rem;
  border-right: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.stat:nth-child(2n) {
  border-right: 0;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  color: hsl(var(--navy));
}

.stat p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-muted {
  background: hsl(var(--muted) / 0.5);
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.section-navy {
  background: hsl(var(--navy));
  color: #fff;
}

.kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: hsl(var(--saffron));
}

.section-navy .kicker {
  color: hsl(var(--gold));
}

h2 {
  margin: 1rem 0 0;
  max-width: 20ch;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: hsl(var(--navy));
}

.section-navy h2 {
  color: #fff;
}

/* Promises */
.promises {
  margin-top: 3.5rem;
  border-top: 1px solid hsl(var(--border));
}

.promise {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--navy));
  color: hsl(var(--gold));
}

.promise h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--navy));
}

.promise p {
  margin: 0;
  max-width: 40rem;
  color: hsl(var(--muted-foreground));
}

/* Why */
.why-grid,
.visit-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.photo-stack {
  position: relative;
}

.photo-main {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(16, 29, 55, 0.15);
}

.photo-inset {
  display: none;
  position: absolute;
  right: -1rem;
  bottom: -2.5rem;
  width: 14rem;
  border: 4px solid hsl(var(--background));
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(16, 29, 55, 0.25);
}

.lede {
  margin: 1.5rem 0 0;
  color: hsl(var(--muted-foreground));
}

.checklist {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.checklist svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: hsl(var(--saffron));
}

.checklist strong {
  display: block;
}

.checklist span {
  display: block;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

/* Visit */
.visit-list {
  margin-top: 2.5rem;
}

.visit-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
}

.visit-row svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: hsl(var(--navy));
}

.visit-row strong {
  display: block;
}

.visit-row a,
.visit-row p {
  margin: 0;
  color: hsl(var(--muted-foreground));
}

.visit-row a:hover {
  color: hsl(var(--saffron));
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.visit-photo {
  width: 100%;
  min-height: 22rem;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(16, 29, 55, 0.15);
}

/* Footer */
.site-footer {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.6);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

.footer-copy {
  max-width: 24rem;
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.footer-tag {
  margin: 1rem 0 0;
  font-style: italic;
  color: hsl(var(--navy));
}

.footer-col h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--navy));
}

.footer-col ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-col li + li,
.footer-col p + p {
  margin-top: 0.5rem;
}

.footer-col a,
.footer-col p {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.footer-col a:hover {
  color: hsl(var(--saffron));
}

.footer-legal {
  border-top: 1px solid hsl(var(--border));
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.footer-legal-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.footer-legal-inner p {
  margin: 0;
  max-width: 42rem;
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-legal-nav a {
  color: hsl(var(--navy));
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-legal-nav a:hover {
  color: hsl(var(--saffron));
}

.legal-page {
  padding: 2rem 0 4rem;
  max-width: 46rem;
}

.legal-page h1 {
  margin: 0 0 1.25rem;
}

.legal-page h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  color: hsl(var(--navy));
}

.legal-page p,
.legal-page li {
  color: hsl(var(--muted-foreground));
}

.legal-page a {
  color: hsl(var(--navy));
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-page a:hover {
  color: hsl(var(--saffron));
}

.legal-nav {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

@media (min-width: 640px) {
  .ticker-label {
    display: flex;
  }

  .call-label-full {
    display: inline;
  }

  .call-label-short {
    display: none;
  }

  .photo-inset {
    display: block;
  }
}

@media (min-width: 768px) {
  .brand-logo {
    height: 56px;
    max-width: 280px;
  }

  .nav {
    display: flex;
  }

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

  .stat {
    border-bottom: 0;
  }

  .stat:nth-child(2n) {
    border-right: 1px solid hsl(var(--border));
  }

  .stat:last-child {
    border-right: 0;
  }

  .promise {
    grid-template-columns: 4rem 18rem 1fr;
    align-items: start;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1023px) {
  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero-inner {
    padding-top: 0.75rem;
    padding-bottom: 2.25rem;
    gap: 1.35rem;
  }

  .rate-calc {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: start;
    gap: 3rem;
    padding: 1.1rem 0 3rem;
  }

  .rate-calc {
    justify-self: end;
  }

  .why-grid,
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
  }
}

@media (min-width: 1280px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 4.5rem;
  }
}

/* Lead popups — Order Now / Better Rate / Rate Alert */
.lkn-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lkn-modal[hidden] {
  display: none;
}

.lkn-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.lkn-modal-dialog {
  position: relative;
  width: min(440px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: #fff;
  color: #111;
  border-radius: 8px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.lkn-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  border: 0;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #444;
  cursor: pointer;
}

.lkn-modal-dialog h3 {
  margin: 0 2rem 0.85rem 0;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
}

.lkn-modal-copy {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
}

.lkn-label {
  display: block;
  margin: 0.7rem 0 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.lkn-label span {
  color: #e11d2e;
}

.lkn-input {
  width: 100%;
  min-height: 44px;
  padding: 0.45rem 0.7rem;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  font: inherit;
  font-size: 0.95rem;
}

.lkn-consent {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 1rem 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #333;
}

.lkn-consent a {
  color: #1d4ed8;
  text-decoration: underline;
}

.lkn-error {
  margin: 0.4rem 0 0;
  color: #dc2f02;
  font-size: 0.78rem;
}

.lkn-proceed {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 0.35rem;
  border: 0;
  border-radius: 4px;
  background: #e11d2e;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.lkn-proceed:hover {
  background: #c41826;
}

.lkn-proceed-navy {
  background: hsl(var(--navy));
}

.lkn-proceed-navy:hover {
  background: #111;
}

.lkn-modal-actions {
  display: grid;
  gap: 0.6rem;
}

.lkn-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.lkn-pills label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 0.78rem;
  cursor: pointer;
}

.lkn-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

body.lkn-modal-open {
  overflow: hidden;
}
