.send-body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.topnav--minimal .chip {
  font-size: 11px;
  padding: 6px 11px;
}
.send-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 30px 0 60px;
}
.container--narrow {
  width: 100%;
}

.send-card {
  padding: 30px 22px 26px;
  animation: rise-in 0.55s var(--ease-out) both;
}

.profile-block {
  text-align: center;
  margin-bottom: 26px;
}
.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink-950);
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(200, 255, 61, 0.12), 0 0 30px rgba(200, 255, 61, 0.25);
}
.profile-name {
  font-size: 21px;
  margin-bottom: 6px;
}
.profile-tagline {
  color: var(--text-mid);
  font-size: 14px;
  max-width: 34ch;
  margin: 0 auto;
}
.profile-meta {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-low);
  letter-spacing: 0.02em;
}

.compose-box {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--ink-900);
  padding: 16px 16px 10px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.compose-box:focus-within {
  border-color: var(--acid);
  box-shadow: 0 0 0 4px rgba(200, 255, 61, 0.1);
}
.compose-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  resize: vertical;
  min-height: 110px;
  color: var(--text-hi);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}
.compose-textarea::placeholder {
  color: var(--text-low);
}
.compose-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
}
.char-counter {
  font-size: 11.5px;
  color: var(--text-low);
  transition: color 0.2s;
}
.char-counter.is-near-limit {
  color: var(--amber);
}
.char-counter.is-at-limit {
  color: var(--coral);
}

.picker-block {
  margin-top: 20px;
}
.picker-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.picker-label__optional {
  text-transform: none;
  font-weight: 500;
  color: var(--text-low);
  letter-spacing: 0;
}
.vibe-row, .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vibe-chip {
  font-size: 19px;
  padding: 8px 13px;
  line-height: 1;
}
.tag-chip {
  font-size: 13px;
}

.send-btn {
  margin-top: 26px;
  position: relative;
}
.send-btn__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(18, 33, 10, 0.35);
  border-top-color: var(--acid-ink);
  animation: spin 0.7s linear infinite;
}
.send-btn.is-sending .send-btn__label {
  opacity: 0.55;
}
.send-btn.is-sending .send-btn__spinner {
  display: inline-block;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.send-disclaimer {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-low);
}

/* Send-away animation: the whole card launches upward and dissolves */
.send-card.is-launching {
  animation: launch-away 0.6s var(--ease-out) forwards;
}
@keyframes launch-away {
  0% { transform: translateY(0) scale(1); opacity: 1; filter: blur(0); }
  100% { transform: translateY(-46px) scale(0.92); opacity: 0; filter: blur(6px); }
}

/* Sent state ---------------------------------------------------------- */
.sent-wrap {
  text-align: center;
}
.sent-check {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--acid-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px rgba(200, 255, 61, 0.1), 0 0 40px rgba(200, 255, 61, 0.35);
}
.sent-check svg {
  width: 28px;
  height: 28px;
}
.sent-headline {
  font-size: 26px;
  margin-bottom: 10px;
}
.sent-sub {
  color: var(--text-mid);
  font-size: 14.5px;
  max-width: 38ch;
  margin: 0 auto 28px;
  line-height: 1.55;
}

.ticket {
  background: var(--paper);
  color: var(--paper-ink);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  text-align: left;
  position: relative;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
  animation: pop-in 0.55s var(--ease-spring) 0.15s both;
  background-image:
    radial-gradient(circle at 100% 50%, transparent 9px, var(--paper) 10px),
    radial-gradient(circle at 0% 50%, transparent 9px, var(--paper) 10px);
}
.ticket__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.6;
}
.ticket__row .mono {
  font-size: 10.5px;
  letter-spacing: 0.08em;
}
.ticket__code {
  font-size: 24px;
  font-weight: 700;
  margin: 14px 0 18px;
  letter-spacing: 0.02em;
  word-break: break-all;
}
.ticket__perf {
  border-top: 1.5px dashed rgba(28, 26, 18, 0.3);
  margin: 0 -22px 18px;
}
.ticket__note {
  font-size: 12.5px;
  line-height: 1.55;
  opacity: 0.75;
  margin-bottom: 18px;
}
.ticket .btn--primary {
  box-shadow: none;
  background: var(--paper-ink);
  color: var(--paper);
}
.ticket .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.4);
}
.ticket .btn--ghost {
  border-color: rgba(28, 26, 18, 0.3);
  color: var(--paper-ink);
}
.ticket .btn--ghost:hover:not(:disabled) {
  border-color: var(--paper-ink);
  color: var(--paper-ink);
}
.ticket .btn--ghost:disabled {
  opacity: 0.55;
}
.notify-status {
  margin-top: 10px;
  font-size: 11px;
  text-align: center;
  color: rgba(28, 26, 18, 0.6);
}

.send-another {
  margin-top: 16px;
}

.signup-nudge {
  display: block;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px dashed var(--line-strong);
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.signup-nudge strong {
  color: var(--acid);
}
.signup-nudge:hover {
  border-color: var(--acid);
  color: var(--text-hi);
}
