/* Walletna — coming soon page
   Uses brand tokens from ../brand/tokens.css (values inlined here for a
   dependency-free static deploy — keep in sync if the palette changes). */

:root {
  --wn-clay: #B35431;
  --wn-clay-hover: #9C4728;
  --wn-ink: #2B1F17;
  --wn-ink-muted: #8A6F5C;
  --wn-sand: #F0E4D0;
  --wn-linen: #FAF5ED;
  --wn-white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--wn-linen);
  color: var(--wn-ink);
  font-family: 'Cairo', 'Almarai', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.card {
  width: 100%;
  max-width: 560px;
  background: var(--wn-white);
  border: 1px solid var(--wn-sand);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 24px 60px -24px rgba(43, 31, 23, 0.18);
}

.lockup {
  width: 220px;
  max-width: 70%;
  height: auto;
  margin-bottom: 20px;
}

.tagline {
  margin: 0 0 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--wn-ink-muted);
}

.soon {
  margin: 0 0 16px;
  font-size: 34px;
  font-weight: 800;
  color: var(--wn-clay);
  letter-spacing: -0.01em;
}

.pitch {
  margin: 0 auto 32px;
  max-width: 420px;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--wn-ink);
}

.notify-form {
  margin: 0 0 28px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.form-row {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.form-row input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--wn-sand);
  background: var(--wn-linen);
  color: var(--wn-ink);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease;
}

.form-row input[type="email"]::placeholder {
  color: var(--wn-ink-muted);
}

.form-row input[type="email"]:focus {
  border-color: var(--wn-clay);
}

.form-row button {
  flex-shrink: 0;
  padding: 13px 22px;
  border: none;
  border-radius: 12px;
  background: var(--wn-clay);
  color: var(--wn-white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.form-row button:hover {
  background: var(--wn-clay-hover);
}

.form-note {
  min-height: 20px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.form-note.success {
  color: #2E7D5B;
}

.form-note.error {
  color: #C0392B;
}

.english {
  margin: 0;
  font-size: 13px;
  color: var(--wn-ink-muted);
  direction: ltr;
}

.footer {
  margin-top: 28px;
  font-size: 13px;
  color: var(--wn-ink-muted);
  direction: ltr;
}

@media (max-width: 420px) {
  .card {
    padding: 36px 22px;
  }

  .form-row {
    flex-direction: column;
  }

  .soon {
    font-size: 28px;
  }
}
