/* Base tokens */
:root {
  --ink: #02010a;
  --deep: #04052e;
  --indigo: #140152;
  --royal: #22007c;
  --electric: #0d00a4;
  --text: #f4f2ff;
  --glow: rgba(13, 0, 164, 0.4);
}

* {
  box-sizing: border-box;
}

.app {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Segoe UI Variable", "Roboto", "Helvetica Neue", "Noto Sans",
    "Liberation Sans", "Ubuntu", "Cantarell", "Fira Sans", system-ui, sans-serif;
  background: var(--ink);
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.panel {
  width: min(760px, 92vw);
  border-radius: 28px;
  padding: 48px;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Components */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(4, 5, 46, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 20px;
}

.accent {
  color: #c9c2ff;
}

.bar {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--royal);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ghost {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

/* Utilities */
.u-title {
  margin: 0 0 16px;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Segoe UI Variable", "Helvetica Neue", "Noto Serif", "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.8vw, 3.8rem);
  font-weight: 400;
}

p {
  margin: 0 0 18px;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.6;
  max-width: 34rem;
}

p:last-of-type {
  margin-bottom: 0;
}

.u-stack-16 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.u-stack-24 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.u-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.u-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--royal);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.u-button--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.9);
}

a {
  color: #c9c2ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 194, 255, 0.35);
}

a:hover {
  border-bottom-color: rgba(201, 194, 255, 0.8);
}

@media (max-width: 600px) {
  .panel {
    padding: 36px 28px;
  }

  .bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
