:root {
  --bg: #ffffff;
  --text: #0f1720;
  --muted: rgba(15, 23, 32, 0.64);
  --line: rgba(15, 23, 32, 0.08);
  --soft: rgba(15, 23, 32, 0.03);
  --black: #111111;
  --brand-blue: #00ffff;
  --brand-violet: #591e86;
  --brand-magenta: #fd3db5;
  --brand-soft: #f3e8f8;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(10, 14, 18, 0.08);
  --shadow-strong: 0 30px 80px rgba(10, 14, 18, 0.16);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main,
section,
.container {
  max-width: 100%;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.text-link {
  color: var(--muted);
  font-size: 15px;
  transition: color 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  cursor: pointer;
  white-space: nowrap;
  max-width: 100%;
}

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

.button-primary {
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
}

.button-primary:hover {
  background: #222222;
}

.button-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(15, 23, 32, 0.12);
}

.button-secondary:hover {
  color: var(--text);
  border-color: rgba(15, 23, 32, 0.2);
}

.button-ghost {
  background: var(--white);
  color: var(--black);
}

.hero {
  padding: 72px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 100%;
}

.hero h1,
.section-title,
.form-title,
.cta h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.96;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(54px, 9vw, 108px);
  max-width: 10ch;
}

.hero p {
  margin: 20px 0 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--muted);
  max-width: 22ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.phone-wrap {
  position: relative;
  min-width: 0;
}

.phone-glow {
  position: absolute;
  inset: 14% -8% auto;
  height: 72%;
  background: radial-gradient(circle at center, rgba(255, 196, 208, 0.45), transparent 60%);
  filter: blur(30px);
  z-index: 0;
}

.wallet-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 26px;
  border-radius: 34px;
  background: #111111;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.wallet-top,
.wallet-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wallet-top img {
  height: 28px;
  filter: brightness(0) invert(1);
}

.wallet-label,
.wallet-bottom span:first-child,
.mini-label,
.footer {
  color: rgba(255, 255, 255, 0.65);
}

.stamp-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.stamp {
  aspect-ratio: 1;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

.stamp.filled {
  background: var(--white);
  border-color: var(--white);
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--soft);
}

.section-title {
  font-size: clamp(40px, 6vw, 72px);
  text-align: center;
}

.section-copy {
  margin: 20px auto 0;
  max-width: 740px;
  text-align: center;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.4;
  color: var(--muted);
}

.mini-card {
  width: min(100%, 560px);
  margin: 50px auto 0;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mini-wallet {
  border-radius: 24px;
  padding: 24px;
  background: #111111;
  color: var(--white);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 16px;
}

.mini-stamp {
  aspect-ratio: 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mini-stamp.filled {
  background: var(--white);
}

.mini-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(15, 23, 32, 0.5);
  margin-top: 18px;
  font-size: 15px;
}

.reward-card {
  width: min(100%, 520px);
  margin: 56px auto 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reward-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 28px;
}

.reward-stamp {
  aspect-ratio: 1;
  border-radius: 16px;
  border: 2px solid rgba(15, 23, 32, 0.08);
  background: var(--black);
}

.reward-banner {
  border-radius: 18px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 18px 20px;
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 70px;
}

.step {
  text-align: center;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 22px;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 600;
}

.step h3,
.benefit {
  margin: 0;
  letter-spacing: -0.04em;
}

.step h3 {
  font-size: 30px;
}

.step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.benefit {
  text-align: center;
  font-size: clamp(30px, 3vw, 42px);
}

.cta {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-magenta) 100%);
  color: var(--white);
}

.cta h2 {
  text-align: center;
  font-size: clamp(42px, 7vw, 84px);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.cta .button-secondary {
  color: #7ee7ff;
}

.cta .button-secondary:hover {
  color: #ffffff;
}

.site-footer {
  padding: 28px 0 34px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-shell {
  padding: 72px 0 100px;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 40px;
  align-items: start;
}

.form-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}

#selected-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

#selected-plan[hidden] {
  display: none;
}

.back-link:hover {
  color: var(--text);
}

.form-title {
  font-size: clamp(46px, 6.5vw, 78px);
}

.form-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.4;
  max-width: 22ch;
}

.form-card,
.preview-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-card {
  padding: 28px;
  margin-bottom: 20px;
}

.preview-card {
  padding: 28px;
}

.preview-card-brand {
  border-color: rgba(15, 23, 32, 0.08);
}

.preview-card-top {
  margin-bottom: 20px;
}

.form-grid>section:last-child {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.form-card,
.preview-card.preview-card-top {
  width: 100%;
  box-sizing: border-box;
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  position: relative;
}

.field label {
  color: var(--muted);
  font-size: 14px;
}

.field input,
.field select {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(15, 23, 32, 0.12);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field select:focus {
  border-color: rgba(89, 30, 134, 0.45);
  box-shadow: 0 0 0 4px rgba(89, 30, 134, 0.10);
  transform: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230f1720' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 48px 0 18px;
  line-height: 56px;
  font-size: 16px;
  display: block;
  vertical-align: middle;
}

.signup-page .field input:focus {
  border-color: rgba(17, 17, 17, 0.4);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
}

.signup-page .field select:focus {
  border-color: rgba(17, 17, 17, 0.4);
  box-shadow: none;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.preview-title {
  margin: 0 0 18px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.preview-wallet {
  border-radius: 26px;
  padding: 26px;
  background: #ffffff;
  color: #111111;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(15, 23, 32, 0.08);
}

.preview-wallet .preview-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-wallet .preview-brand img {
  height: 28px;
}

.preview-wallet .stamp-grid {
  margin: 20px 0;
}

.preview-wallet .stamp {
  border-color: rgba(17, 17, 17, 0.15);
  background: transparent;
}

.preview-wallet .stamp.filled {
  background: rgba(17, 17, 17, 0.92);
  border-color: rgba(17, 17, 17, 0.92);
}

.preview-meta {
  color: rgba(17, 17, 17, 0.64);
  font-size: 14px;
}

.success-box {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 32, 0.05);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.success-box.is-visible {
  display: block;
}

.thanks-shell {
  padding: 96px 0 120px;
}

.thanks-card {
  max-width: 760px;
  text-align: center;
}

.thanks-copy {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.pricing-section {
  padding: 110px 0;
  background: var(--bg);
}

.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  overflow: hidden;
}

.pricing-toggle {
  display: inline-flex;
  align-items: stretch;
  gap: 6px;
  max-width: 100%;
  background: var(--white);
  border-radius: 999px;
  padding: 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-toggle-button {
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  transition: background 180ms ease, color 180ms ease;
  min-width: 0;
  max-width: 100%;
}

.pricing-toggle-button span {
  font-size: 13px;
  opacity: 0.8;
  margin-left: 6px;
}

.pricing-toggle-button.is-active {
  background: #111111;
  color: #ffffff;
}

.pricing-toggle-button.is-active span {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--soft);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: left;
  min-height: 100%;
  max-width: 100%;
}

.pricing-card-featured {
  box-shadow: var(--shadow-strong);
  background: var(--white);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-head h3 {
  margin: 0;
  letter-spacing: -0.04em;
  font-size: 30px;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.card-desc {
  margin: 10px 0 0;
  color: var(--muted);
  min-height: 48px;
}

.price {
  font-size: clamp(42px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin: 22px 0;
}

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

.pricing-features li {
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
}

.pricing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
}

.pricing-card .button {
  margin-top: auto;
  align-self: stretch;
}

@media (max-width: 980px) {

  .hero-grid,
  .form-grid,
  .steps,
  .benefits,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-copy,
  .form-copy,
  .hero p {
    text-align: center;
  }

  .form-top {
    align-items: center;
  }

  .hero p,
  .form-lead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .cta-actions {
    justify-content: center;
  }

  .steps,
  .benefits {
    gap: 42px;
  }

  .pricing-card {
    text-align: center;
  }

  .card-head {
    justify-content: center;
    flex-wrap: wrap;
  }

  .card-desc {
    min-height: auto;
  }

  .pricing-features li {
    padding-left: 0;
  }

  .pricing-features li::before {
    position: static;
    margin-right: 6px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    background: rgba(255, 255, 255, 0.92);
  }

  .nav {
    min-height: 78px;
  }

  .nav-links {
    gap: 10px;
  }

  .button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 14px;
    white-space: normal;
  }

  .hero,
  .section,
  .cta,
  .form-shell,
  .pricing-section {
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 68px);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 10ch;
  }

  .hero p,
  .section-copy {
    font-size: 18px;
  }

  .form-lead {
    font-size: 18px;
  }

  .section-title {
    font-size: clamp(30px, 9vw, 46px);
  }

  .eyebrow {
    font-size: 12px;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 18px;
  }

  .wallet-card,
  .mini-card,
  .reward-card,
  .form-card,
  .preview-card,
  .pricing-card {
    padding: 22px;
  }

  .wallet-card {
    padding: 20px;
  }

  .wallet-top img,
  .preview-wallet .preview-brand img {
    height: 24px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 18px;
  }

  .step h3 {
    font-size: 24px;
  }

  .step p,
  .preview-meta,
  .field label,
  .form-note,
  .site-footer,
  .preview-title,
  .reward-top {
    font-size: 13px;
  }

  .benefit {
    font-size: clamp(24px, 8vw, 34px);
  }

  .preview-wallet {
    min-height: 250px;
    padding: 22px;
  }

  .thanks-shell {
    padding: 72px 0 90px;
  }

  .pricing-toggle {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    gap: 0;
  }

  .pricing-toggle-button {
    flex: 1 1 0;
    min-width: 0;
    width: 0;
    padding: 10px 12px;
  }

  .pricing-toggle-button span {
    display: block;
    margin-left: 0;
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.2;
  }

  .card-head h3 {
    font-size: 26px;
  }

  .price {
    font-size: clamp(34px, 10vw, 46px);
  }

  .site-footer .container {
    overflow-wrap: anywhere;
  }
}

/* Legal pages */
.footer-links-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-sep {
  opacity: 0.55;
}

.legal-shell {
  padding: 72px 0 100px;
}

.legal-wrap {
  max-width: 860px;
}

.legal-card {
  padding: 36px;
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.legal-content h1 {
  margin: 0 0 18px;
  letter-spacing: -0.05em;
  line-height: 0.98;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 64px);
}

.legal-content h2 {
  margin: 36px 0 14px;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
}

.legal-content h3 {
  margin: 24px 0 12px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 600;
  font-size: 20px;
}

.legal-content p,
.legal-content li,
.legal-content td,
.legal-content th {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content li+li {
  margin-top: 8px;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 18px;
}

.legal-content th,
.legal-content td {
  border: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  color: var(--text);
  background: var(--soft);
}

@media (max-width: 720px) {
  .legal-shell {
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .legal-card {
    padding: 22px;
  }

  .legal-content p,
  .legal-content li,
  .legal-content td,
  .legal-content th {
    font-size: 15px;
  }

  .footer-links-wrap {
    gap: 8px;
  }
}


/* Footer layout update */
.footer-links-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.footer-links-main {
  min-width: 0;
}

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

.footer-links-nav a {
  white-space: nowrap;
}

/* Contact page */
.contact-shell {
  padding: 72px 0 100px;
}

.contact-wrap {
  max-width: 860px;
}

.contact-card {
  padding: 36px;
}

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

.contact-panel {
  padding: 24px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.contact-panel h2 {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
}

.contact-panel p {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.contact-note {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 720px) {
  .footer-links-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .footer-links-nav {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .footer-links-nav a {
    white-space: normal;
  }

  .contact-shell {
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .contact-card {
    padding: 22px;
  }

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

  .contact-panel p,
  .contact-note {
    font-size: 15px;
  }
}

/* --- Staff page (MVP only, scoped) --- */

.staff-page .staff-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.staff-page .staff-result {
  margin-top: 20px;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.staff-page .staff-result.is-success {
  border-color: #999;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.staff-page .staff-result.is-error {
  border-color: #d33;
  box-shadow: 0 0 0 2px rgba(211, 51, 51, 0.15);
}

.staff-page .staff-result.is-reward {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.18);
}