
:root {
  --orange: #ff6b00;
  --orange-bright: #ff8a1f;
  --ink: #f7f7f5;
  --muted: #aaa9a6;
  --line: rgba(255, 255, 255, .11);
  --background: #080808;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--background);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.topbar {
  display: flex;
  justify-content: space-between;
  min-height: 86px;
  align-items: center;
  padding: 18px max(24px, calc((100vw - 1100px) / 2));
  background: rgba(8, 8, 8, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.topbar a {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.topbar strong {
  color: var(--orange);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--orange-bright), var(--orange));
  box-shadow: 0 8px 24px rgba(255, 107, 0, .25);
  color: #0b0b0b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.portal-label {
  color: #8d8c89;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

main {
  position: relative;
  width: min(100% - 32px, 650px);
  margin: 0 auto;
  padding: 64px 0 48px;
}

.flare {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.flare-one {
  top: 45px;
  right: -250px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 107, 0, .2), transparent 68%);
}

.flare-two {
  bottom: 20px;
  left: -310px;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, rgba(255, 107, 0, .1), transparent 67%);
}

.payment-card {
  padding: 34px 34px 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 35%),
    #121212;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .5);
  overflow: hidden;
}

.intro {
  text-align: center;
}

h1 {
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.eyebrow {
  color: var(--orange-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.intro > p {
  margin: 10px 0 30px;
  color: var(--muted);
  font-size: 15px;
}

.methods {
  border-top: 1px solid var(--line);
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 179px;
  gap: 20px;
  align-items: center;
  min-height: 105px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

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

.badge {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 9px;
  background: #050505;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.badge.paypal {
  background: #0b58a8;
  font-style: italic;
}

.badge.venmo {
  background: #168bd2;
  font-style: italic;
}

.badge.zelle {
  background: #6d2caf;
}

.method h2 {
  margin: 0 0 5px;
  font-size: 16px;
}

.method p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.pay-button {
  display: block;
  width: 100%;
  padding: 13px 15px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  box-shadow: 0 8px 20px rgba(255, 107, 0, .16);
  color: #090909;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.pay-button:hover {
  box-shadow: 0 11px 26px rgba(255, 107, 0, .28);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.pay-button:focus-visible,
.qr-link:focus-visible,
.topbar a:focus-visible {
  outline: 3px solid rgba(255, 107, 0, .4);
  outline-offset: 3px;
}

.recipient {
  padding: 12px 10px;
  width: 100%;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  box-shadow: 0 8px 20px rgba(255, 107, 0, .16);
  color: #090909;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.divider {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 29px 0 20px;
  color: #7a7d82;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.qr-link {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 9px;
  border: 3px solid var(--orange);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(255, 107, 0, .2);
  line-height: 0;
}

.qr-link img {
  display: block;
  width: 148px;
  height: 148px;
  image-rendering: crisp-edges;
}

.payment-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.square-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  color: #777673;
  font-size: 13px;
}

.secure-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px var(--orange);
}

@media (max-width: 580px) {
  .topbar {
    min-height: 72px;
    padding: 14px 18px;
  }

  .portal-label {
    display: none;
  }

  main {
    width: min(100% - 20px, 650px);
    padding: 28px 0 34px;
  }

  .payment-card {
    padding: 27px 20px 23px;
  }

  h1 {
    font-size: 30px;
  }

  .method {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0;
  }

  .pay-button {
    width: 100%;
  }

  .recipient {
    padding: 13px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pay-button {
    transition: none;
  }
}
