@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--color-background: #080808;
--color-foreground: #ffffffde;
--color-muted: #151918;
--color-muted-2: #212827;
--color-muted-foreground: #ffffff4d;
--color-border: #2a3230;
--color-border-subtle: #ffffff08;
--color-primary: #7cff4a;
--color-primary-foreground: #080808;
--color-primary-muted: #7cff4a1a;
--color-primary-border: #7cff4a33;
--color-green: #7cff4a;
--color-red: #fb2c36;
--color-red-muted: #fb2c361a;
--color-red-border: #fb2c3633;
}
body {
background: linear-gradient(to bottom, #0a0a0a, #050505);
color: var(--color-foreground);
font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.min-h-screen {
min-height: 100vh;
}
.home-screen {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 3rem;
padding: 1rem;
position: relative;
isolation: isolate;
overflow: hidden;
}
.home-screen::before,
.home-screen::after {
content: '';
position: fixed;
border-radius: 9999px;
pointer-events: none;
z-index: -1;
animation: background-pulse 4s ease-in-out infinite;
}
.home-screen::before {
top: 15%;
left: 10%;
width: 18rem;
height: 18rem;
background: rgba(124, 255, 74, 0.1);
filter: blur(100px);
}
.home-screen::after {
right: 15%;
bottom: 15%;
width: 25rem;
height: 25rem;
background: rgba(37, 99, 235, 0.05);
filter: blur(120px);
animation-delay: 2s;
}
.home-screen > * {
position: relative;
z-index: 1;
}
.humanity-logo {
display: block;
width: min(300px, 80vw);
height: auto;
}
.verification-card {
width: min(100%, 36rem);
}
.verification-card-surface {
background: rgba(21, 25, 24, 0.82);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.dashboard-shell {
width: min(100%, 42rem);
}
.biometric-status-card {
border-width: 1px;
border-style: solid;
border-radius: 16px;
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 1.25rem;
background: rgba(255, 255, 255, 0.03);
}
.biometric-status-card-valid {
border-color: var(--color-primary-border);
background: linear-gradient(180deg, rgba(124, 255, 74, 0.08), rgba(255, 255, 255, 0.03));
box-shadow: inset 0 1px 0 rgba(124, 255, 74, 0.08);
}
.biometric-status-card-invalid {
border-color: var(--color-red-border);
background: linear-gradient(180deg, rgba(251, 44, 54, 0.08), rgba(255, 255, 255, 0.03));
box-shadow: inset 0 1px 0 rgba(251, 44, 54, 0.08);
}
.status-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 1rem;
}
.status-dot {
width: 0.75rem;
height: 0.75rem;
border-radius: 9999px;
margin-right: 0.75rem;
margin-top: 0.2rem;
flex-shrink: 0;
}
.status-dot-valid {
background: var(--color-green);
box-shadow: 0 0 0 6px rgba(124, 255, 74, 0.12);
}
.status-dot-invalid {
background: var(--color-red);
box-shadow: 0 0 0 6px rgba(251, 44, 54, 0.12);
}
.status-badge {
border-radius: 9999px;
padding: 0.3rem 0.7rem;
font-size: 0.75rem;
line-height: 1rem;
font-weight: 600;
text-transform: uppercase;
}
.status-badge-valid {
background: var(--color-primary-muted);
color: var(--color-green);
}
.status-badge-invalid {
background: var(--color-red-muted);
color: var(--color-red);
}
.biometric-value-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
padding: 1rem;
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 8px;
background: rgba(0, 0, 0, 0.12);
}
.dashboard-meta-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.75rem;
}
.dashboard-meta-card {
padding: 0.9rem 1rem;
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 8px;
background: rgba(255, 255, 255, 0.02);
min-width: 0;
}
.credential-text {
overflow-wrap: anywhere;
word-break: break-word;
}
.verification-copy {
padding: 0.25rem 0;
}
.home-primary-copy {
font-size: 1.375rem;
line-height: 1.9rem;
font-weight: 600;
}
.home-tagline {
margin-top: 0.65rem;
font-size: 0.875rem;
line-height: 1.4rem;
}
.verification-note {
padding: 1rem;
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 8px;
background: rgba(255, 255, 255, 0.025);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
text-align: left;
}
.verification-note > * + * {
margin-top: 0.4rem;
}
.verify-button {
min-width: 14rem;
padding: 0.875rem 2rem;
font-size: 1rem;
line-height: 1.5rem;
border-radius: 18px;
}
.flex {
display: flex;
}
.items-center {
align-items: center;
}
.justify-center {
justify-content: center;
}
.justify-between {
justify-content: space-between;
}
.text-center {
text-align: center;
}
.w-full {
width: 100%;
}
.w-3\/4 {
width: 75%;
}
.max-w-md {
max-width: 28rem;
}
.max-w-lg {
max-width: 32rem;
}
.max-w-5xl {
max-width: 64rem;
}
.p-4 {
padding: 1rem;
}
.p-3 {
padding: 0.75rem;
}
.p-5 {
padding: 1.25rem;
}
.p-6 {
padding: 1.5rem;
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.px-6 {
padding-left: 1.5rem;
padding-right: 1.5rem;
}
.p-8 {
padding: 2rem;
}
.py-2 {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.py-1 {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
}
.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.mb-4 {
margin-bottom: 1rem;
}
.mr-2 {
margin-right: 0.5rem;
}
.space-y-1 > * + * {
margin-top: 0.25rem;
}
.space-y-2 > * + * {
margin-top: 0.5rem;
}
.space-y-3 > * + * {
margin-top: 0.75rem;
}
.space-y-4 > * + * {
margin-top: 1rem;
}
.space-y-5 > * + * {
margin-top: 1.25rem;
}
.space-y-6 > * + * {
margin-top: 1.5rem;
}
.space-y-8 > * + * {
margin-top: 2rem;
}
.gap-2 {
gap: 0.5rem;
}
@media (max-width: 640px) {
.status-header,
.biometric-value-row {
flex-direction: column;
align-items: flex-start;
}
.dashboard-meta-grid {
grid-template-columns: 1fr;
}
}
.text-3xl {
font-size: 1.875rem;
line-height: 1.2;
}
.text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.text-xl {
font-size: 1.25rem;
line-height: 1.75rem;
}
.text-sm {
font-size: 0.875rem;
line-height: 1.25rem;
}
.text-xs {
font-size: 0.75rem;
line-height: 1rem;
}
.font-semibold {
font-weight: 600;
}
.font-medium {
font-weight: 500;
}
.font-mono {
font-family: ui-monospace, 'Courier New', monospace;
}
.tracking-tight {
letter-spacing: -0.025em;
}
.tracking-wider {
letter-spacing: 0.05em;
}
.text-muted-foreground {
color: var(--color-muted-foreground);
}
.text-red-400 {
color: var(--color-red);
}
.text-green-400 {
color: var(--color-green);
}
.text-foreground {
color: var(--color-foreground);
}
.text-primary-foreground {
color: var(--color-primary-foreground);
}
.rounded-md {
border-radius: 0.375rem;
}
.rounded-xl {
border-radius: 0.75rem;
}
.rounded-2xl {
border-radius: 1rem;
}
.rounded-full {
border-radius: 9999px;
}
.border {
border-width: 1px;
border-style: solid;
}
.border-b-2 {
border-bottom-width: 2px;
}
.border-border {
border-color: var(--color-border);
}
.border-red-400\/50 {
border-color: var(--color-red-border);
}
.border-primary {
border-color: var(--color-primary-border);
}
.bg-primary {
background-color: var(--color-primary);
}
.bg-muted {
background-color: var(--color-muted);
}
.bg-muted-2 {
background-color: var(--color-muted-2);
}
.bg-red-400\/10 {
background-color: var(--color-red-muted);
}
.bg-green-400 {
background-color: var(--color-green);
}
.bg-green-500\/20 {
background-color: var(--color-primary-muted);
}
.transition-colors {
transition-property: color, background-color, border-color;
transition-duration: 150ms;
}
.hover\:bg-primary\/90:hover {
background-color: #6ce63e;
}
.hover\:bg-muted:hover {
background-color: var(--color-muted);
}
.hover\:text-foreground:hover {
color: var(--color-foreground);
}
.block {
display: block;
}
.h-8 {
height: 2rem;
}
.w-8 {
width: 2rem;
}
.w-2 {
width: 0.5rem;
}
.h-2 {
height: 0.5rem;
}
.animate-spin {
animation: spin 1s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes background-pulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
button {
cursor: pointer;
border: none;
outline: none;
}
a {
color: inherit;
text-decoration: none;
}