﻿/* Ensure HTML hidden attribute always wins over any display rule */
[hidden] { display: none !important; }

:root {
  --text: #081022;
  --muted: #556074;
  --surface: #ffffff;
  --border: #d6deeb;
  --accent: #17b4ff;
  --deep: #071024;
  --radius: 16px;
  --shadow: 0 14px 34px rgba(3, 14, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% -4%, #eaf4ff, #f6f9ff 35%, #f4f7fb 70%);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: 0.6rem;
  top: -45px;
  background: #0b1731;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  z-index: 999;
}

.skip-link:focus {
  top: 0.6rem;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.announcement {
  text-align: center;
  padding: 0.45rem 1rem;
  background: linear-gradient(90deg, #0b1731, #12254f);
  color: #b8cef8;
  font-size: 0.86rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 247, 251, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(137, 157, 194, 0.22);
}

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

.wordmark {
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-man,
.brand-pay {
  color: var(--text);
}

.brand-x {
  color: var(--accent);
  display: inline-block;
  transform: translateY(-1px);
  font-size: 0.95em;
}

.brand-reg {
  font-size: 0.46em;
  vertical-align: super;
  margin-left: 0.08rem;
  color: inherit;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.15rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  font-size: 1.2rem;
  padding: 0.3rem 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #0c1e41, #163262);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 9px 18px rgba(12, 31, 66, 0.24);
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(12, 31, 66, 0.24);
}

.btn-sm {
  padding: 0.55rem 1rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10% -20% auto;
  height: 430px;
  pointer-events: none;
  background: radial-gradient(circle at 75% 34%, rgba(23, 180, 255, 0.2), transparent 42%),
    radial-gradient(circle at 16% 22%, rgba(7, 26, 65, 0.11), transparent 47%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #355686;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 0.55rem;
  font-size: clamp(2rem, 5.8vw, 3.4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.45rem);
  margin-top: 0.55rem;
}

.hero-copy p {
  max-width: 58ch;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.2rem 0;
}

.micro-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.micro-cues span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.66rem;
  font-size: 0.85rem;
  color: #3f526e;
  background: #ffffffd6;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone {
  width: 295px;
  border-radius: 42px;
  background: #101728;
  padding: 0.7rem;
  box-shadow: 0 22px 42px rgba(6, 17, 42, 0.29);
}

.phone-notch {
  width: 32%;
  height: 16px;
  background: #1f2b46;
  border-radius: 0 0 12px 12px;
  margin-inline: auto;
}

.phone-screen {
  min-height: 500px;
  border-radius: 34px;
  padding: 1rem;
  background: linear-gradient(160deg, #02060f, #060b18 45%, #070f20);
}

.payment-card,
.stacked-tile {
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.stacked-tile {
  margin-top: 0.7rem;
  border: 1px solid #d7e4f6;
  font-size: 0.9rem;
  color: #2d4261;
}

.tiny {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #4f6385;
}

.qr-grid {
  width: 100%;
  aspect-ratio: 1;
  margin: 0.8rem 0;
  border-radius: 12px;
  border: 8px solid #0e1628;
  background-image: linear-gradient(90deg, #0f1d35 16%, transparent 16%), linear-gradient(#0f1d35 16%, transparent 16%);
  background-size: 20px 20px;
  background-position: center;
}

.payment-meta {
  display: flex;
  justify-content: space-between;
  color: #203353;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.payment-card button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 0.65rem;
  background: linear-gradient(135deg, #0f9de6, #2ec7ff);
  color: #042542;
  font-weight: 700;
}

.settlement-chip {
  margin-top: 0.9rem;
  border-radius: 999px;
  text-align: center;
  padding: 0.45rem;
  font-size: 0.8rem;
  background: rgba(16, 37, 72, 0.9);
  color: #d6e5ff;
}

.quick-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.quick-card {
  text-decoration: none;
  color: inherit;
  background: #ffffffde;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
  transition: transform 160ms ease;
}

.quick-card:hover,
.quick-card:focus-visible {
  transform: translateY(-2px);
}

.quick-card p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.value-band {
  margin: 1rem auto 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.value-band article,
.card,
.steps article,
.interest-form,
.faq-list details {
  background: #ffffffd4;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-band article,
.steps article,
.showcase-card {
  padding: 1.15rem;
}

.value-band p,
.steps p,
.split-grid p,
.tech-box p,
.identity-grid p {
  color: var(--muted);
  margin: 0.3rem 0 0;
}

.section {
  padding: 4.1rem 0;
}

.section-heading {
  margin-bottom: 1.3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.steps span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #0e2248;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.section-split {
  background: linear-gradient(180deg, transparent, #edf3fc 30%, #edf3fc 68%, transparent);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

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

.checklist li {
  margin: 0.45rem 0;
  padding-left: 1.3rem;
  position: relative;
}

.checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  top: 0.56rem;
  left: 0;
}

.tech-section {
  padding-top: 2.2rem;
}

.tech-box {
  text-align: center;
  border-radius: 24px;
  padding: 2rem;
  background: linear-gradient(145deg, #0b1731, #102447);
  color: #ebf2ff;
  box-shadow: 0 18px 48px rgba(4, 10, 24, 0.35);
}

.tech-box .eyebrow,
.tech-box p {
  color: #b7c7e6;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.triskele {
  justify-self: center;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at center, #fff 32%, #d8e8ff 35%, #b8d0f2 68%, #8ba8d2);
  box-shadow: var(--shadow);
}

.triskele::before,
.triskele::after {
  content: "";
  position: absolute;
  inset: 27%;
  border-radius: 40% 60% 58% 42%;
  border: 12px solid #0f274d;
  transform: rotate(25deg);
}

.triskele::after {
  transform: rotate(-95deg);
}

.waitlist {
  background: linear-gradient(180deg, #f6faff, #eef4ff);
}

.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.interest-form {
  padding: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.interest-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
}

input,
select,
textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #b8dcff;
  border-color: #7fbaee;
}

.hidden {
  display: none !important;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: #274667;
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  padding: 0.95rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  margin-top: 2rem;
  background: #050b1a;
  color: #d2ddf3;
  padding: 3rem 0 2rem;
}

.site-footer .brand-man,
.site-footer .brand-pay {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.site-footer a {
  color: #d2ddf3;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid #22314d;
  color: #9eb1d5;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .quick-split,
  .split-grid,
  .waitlist-grid,
  .identity-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .value-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 3.3rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 74px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffffee;
    backdrop-filter: blur(10px);
    padding: 0.8rem;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

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

@media (max-width: 620px) {
  .steps,
  .value-band {
    grid-template-columns: 1fr;
  }

  .phone {
    width: min(86vw, 300px);
  }

  .hero-cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.app-preview {
  min-height: 410px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at 50% 20%, rgba(21, 181, 255, 0.08), transparent 42%), #02060f;
  padding: 1.25rem 1rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.app-wordmark {
  margin: 0;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.app-wordmark .brand-man,
.app-wordmark .brand-pay {
  color: #fff;
}

.tap-zone {
  display: grid;
  place-items: center;
}

.tap-oval {
  width: 185px;
  height: 120px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  position: relative;
}

.tap-wave {
  position: absolute;
  border: 6px solid transparent;
  border-right-color: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  left: 36px;
  top: 44px;
}

.tap-wave-2 { transform: scale(1.45); left: 46px; }
.tap-wave-3 { transform: scale(1.9); left: 56px; }

.tap-card {
  position: absolute;
  right: 22px;
  top: 38px;
  width: 44px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  transform: rotate(13deg);
}

/* ============================================================
   PHONE PANEL — username registration
   ============================================================ */

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Live badge above the phone */
.phone-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(23, 180, 255, 0.10);
  border: 1px solid rgba(23, 180, 255, 0.28);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #17b4ff;
  margin-bottom: 10px;
  width: max-content;
}

.live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #17b4ff;
  flex-shrink: 0;
  animation: livePulse 2s ease-out infinite;
}

@keyframes livePulse {
  0%  { box-shadow: 0 0 0 0 rgba(23, 180, 255, 0.55); }
  60% { box-shadow: 0 0 0 6px rgba(23, 180, 255, 0); }
  100%{ box-shadow: 0 0 0 0 rgba(23, 180, 255, 0); }
}

/* App bar inside phone screen */
.phone-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.phone-brand {
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.pb-man, .pb-pay { color: #d6e5ff; }
.pb-x            { color: #17b4ff; }

.phone-status-tag {
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(23,180,255,0.12);
  border: 1px solid rgba(23,180,255,0.28);
  color: #17b4ff;
  border-radius: 999px;
  padding: 3px 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Registration form */
.phone-register {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-register-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #e8f0ff;
  line-height: 1.3;
}

.phone-register-sub {
  margin: 0 0 4px;
  font-size: 0.76rem;
  color: #7a90b8;
  line-height: 1.4;
}

/* @username input row */
.phone-input-row {
  position: relative;
  display: flex;
  align-items: center;
}

.phone-at {
  position: absolute;
  left: 11px;
  font-weight: 700;
  font-size: 1rem;
  color: #17b4ff;
  pointer-events: none;
  z-index: 1;
}

.phone-input-row input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 11px 10px 27px;
  color: #e8f0ff;
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.phone-input-row input::placeholder { color: #3d5278; }

.phone-input-row input:focus {
  border-color: rgba(23,180,255,0.55);
  box-shadow: 0 0 0 3px rgba(23,180,255,0.09);
}

/* Availability status */
.phone-avail {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  min-height: 18px;
  color: #5cb8d6;
  transition: color 0.2s;
}

.phone-avail.is-available { color: #4dd6a0; }
.phone-avail.is-taken     { color: #f2c14e; }
.phone-avail.is-error     { color: #ff8a80; }

/* Email input */
.phone-email-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 9px 11px;
  color: #c2cee8;
  font-size: 0.82rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.phone-email-input::placeholder { color: #3d5278; font-size: 0.76rem; }
.phone-email-input:focus { border-color: rgba(23,180,255,0.40); }

/* Claim button */
.phone-claim-btn {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 11px;
  background: linear-gradient(135deg, #0c8ed4, #17b4ff);
  color: #021828;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s;
  box-shadow: 0 6px 18px rgba(23,180,255,0.28);
}

.phone-claim-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(23,180,255,0.38);
}

.phone-claim-btn:disabled,
.phone-claim-btn.is-loading {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
.phone-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 8px 0 4px;
  animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.phone-success-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(77, 214, 160, 0.15);
  border: 2px solid rgba(77, 214, 160, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #4dd6a0;
  margin-bottom: 4px;
}

.phone-success-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #e8f0ff;
  letter-spacing: -0.02em;
}

.phone-success-sub {
  margin: 0;
  font-size: 0.76rem;
  color: #7a90b8;
  line-height: 1.45;
}

.phone-success-badge {
  display: inline-flex;
  border: 1px solid rgba(77,214,160,0.35);
  background: rgba(77,214,160,0.08);
  color: #4dd6a0;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Ticker of recent joins */
.phone-ticker-wrap {
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
}

.phone-ticker-label {
  margin: 0 0 7px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #3d5278;
}

.phone-ticker {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 88px;
  overflow: hidden;
}

.phone-tick-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  font-size: 0.75rem;
  opacity: 0;
  animation: tickerIn 0.35s ease forwards;
}

@keyframes tickerIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

@keyframes tickerOut {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateY(-6px); }
}

.phone-tick-item.is-leaving {
  animation: tickerOut 0.28s ease forwards;
}

.phone-tick-handle {
  font-weight: 600;
  color: #c2cee8;
}

.phone-tick-time {
  font-size: 0.68rem;
  color: #3d5278;
}

/* App-balance (existing rule completed) */
.app-balance {
  margin: 0;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #f0f4ff;
}

/* ============================================================
   CLAIM MODAL
   ============================================================ */
.claim-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.claim-modal[hidden] { display: none !important; }

.claim-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 36, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: backdropIn 0.25s ease both;
}

@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.claim-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.claim-modal-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, #3b82f6);
  margin-bottom: 0.5rem;
}

.claim-modal-handle {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #071024;
  margin-bottom: 0.75rem;
  word-break: break-all;
}

.claim-modal-sub {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.claim-modal-field {
  margin-bottom: 0.5rem;
}

.claim-modal-field input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-family: inherit;
  color: #071024;
  background: #f9fafb;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.claim-modal-field input:focus {
  border-color: var(--accent, #3b82f6);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.claim-modal-error {
  min-height: 1.2em;
  font-size: 0.82rem;
  color: #dc2626;
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
}

.claim-modal-btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  margin-top: 0.25rem;
  border-radius: 0.6rem;
}

.claim-modal-btn.is-loading {
  opacity: 0.7;
  cursor: wait;
}

.claim-modal-abandon {
  display: block;
  width: 100%;
  margin-top: 0.9rem;
  background: none;
  border: none;
  font-size: 0.8rem;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.25rem;
  font-family: inherit;
  transition: color 0.15s;
}

.claim-modal-abandon:hover { color: #6b7280; }

/* Success state inside modal */
.claim-modal-tick {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #d1fae5;
  color: #059669;
  font-size: 1.6rem;
  line-height: 3.5rem;
  margin: 0 auto 1.25rem;
}

.claim-modal-success-msg {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.6;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 480px) {
  .claim-modal-box {
    padding: 2rem 1.25rem 1.5rem;
    border-radius: 1rem;
  }
}
