/* ============================================
   SARAMPASS.COM - Y2K Chrome Identity Theater
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --void-black: #0A0E1A;
    --chrome-silver: #C0D7FF;
    --liquid-mercury: #8A9CC5;
    --scan-pulse: #00E5FF;
    --verification-green: #39FF8E;
    --warm-saram: #FF6B4A;
    --panel-surface: #141929;
    --titanium-edge: #2A3352;
    --dark-text: #1A1F35;
    --muted-periwinkle: #7B8CB8;
    --deep-blue-1: #1A2240;
    --deep-blue-2: #253060;

    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;

    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-overshoot: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--void-black);
    color: var(--chrome-silver);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---- Progress Bar ---- */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--scan-pulse), var(--verification-green), var(--scan-pulse));
    z-index: 1000;
    transition: width 0.1s linear;
}

/* ---- Scan Line ---- */
#scan-line {
    position: fixed;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--chrome-silver) 20%, white 50%, var(--chrome-silver) 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(192, 215, 255, 0.6), 0 0 60px rgba(0, 229, 255, 0.3);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}

#scan-line.active {
    animation: scanDown 800ms ease-out forwards;
}

@keyframes scanDown {
    0% { top: -2px; opacity: 1; }
    100% { top: 100vh; opacity: 0; }
}

#scan-line-reverse {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--verification-green) 20%, white 50%, var(--verification-green) 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(57, 255, 142, 0.6), 0 0 60px rgba(57, 255, 142, 0.3);
    opacity: 0;
    pointer-events: none;
}

#scan-line-reverse.active {
    animation: scanUp 800ms ease-out forwards;
}

@keyframes scanUp {
    0% { bottom: 0; opacity: 1; }
    100% { bottom: 100vh; opacity: 0; }
}

/* ---- Sections ---- */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    will-change: clip-path;
    clip-path: inset(0 0 0 0);
}

/* ---- Guilloche Patterns ---- */
.guilloche-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.guilloche-1 {
    background:
        repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(192,215,255,0.3) 1deg, transparent 2deg) center/600px 600px no-repeat;
}

.guilloche-2 {
    background:
        repeating-radial-gradient(circle at 50% 50%, transparent, transparent 18px, rgba(0,229,255,0.2) 19px, transparent 20px);
}

.guilloche-3 {
    background:
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(192,215,255,0.15) 31px, transparent 32px),
        repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(192,215,255,0.15) 31px, transparent 32px);
}

.guilloche-4 {
    background:
        repeating-conic-gradient(from 45deg at 50% 50%, transparent 0deg, rgba(57,255,142,0.2) 1.5deg, transparent 3deg) center/500px 500px no-repeat;
}

.guilloche-5 {
    background:
        repeating-radial-gradient(circle at 50% 50%, transparent, transparent 25px, rgba(57,255,142,0.15) 26px, transparent 27px);
}

/* ---- Data Particles ---- */
.data-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--chrome-silver);
    border-radius: 50%;
    opacity: 0.2;
    transition: opacity 0.6s var(--ease-smooth);
}

.particle.bright {
    opacity: 0.5;
}

/* ---- Chrome Reflection Bands ---- */
.chrome-bands {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.chrome-band {
    position: absolute;
    left: -20%;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(192,215,255,0.06) 30%, rgba(192,215,255,0.12) 50%, rgba(192,215,255,0.06) 70%, transparent 100%);
}

.chrome-band-1 {
    top: 25%;
    animation: drift 8s linear infinite;
    opacity: 0.8;
}

.chrome-band-2 {
    top: 50%;
    animation: drift 13s linear infinite;
    opacity: 0.5;
}

.chrome-band-3 {
    top: 75%;
    animation: drift 21s linear infinite;
    opacity: 0.6;
}

@keyframes drift {
    0% { transform: translateX(-20%); }
    100% { transform: translateX(180%); }
}

/* ---- Chrome Panel Base ---- */
.chrome-panel {
    background: linear-gradient(135deg, var(--panel-surface) 0%, var(--deep-blue-1) 40%, var(--deep-blue-2) 70%, var(--panel-surface) 100%);
    border-radius: 20px;
    border: 1px solid var(--titanium-edge);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 8px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(192, 215, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.chrome-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0,229,255,0.0), rgba(57,255,142,0.0), rgba(255,107,74,0.0));
    transition: background 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.chrome-panel:hover::after {
    background: linear-gradient(105deg, rgba(0,229,255,0.08), rgba(57,255,142,0.05), rgba(255,107,74,0.05));
}

.chrome-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.chrome-reflection::before,
.chrome-reflection::after {
    content: '';
    position: absolute;
    left: -20%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(192,215,255,0.08) 30%, rgba(192,215,255,0.15) 50%, rgba(192,215,255,0.08) 70%, transparent 100%);
}

.chrome-reflection::before {
    top: 30%;
    animation: drift 10s linear infinite;
}

.chrome-reflection::after {
    top: 70%;
    animation: drift 16s linear infinite;
}

/* ============================================
   SECTION 1: APPROACH (HERO)
   ============================================ */
#section-approach {
    background: var(--void-black);
    z-index: 5;
    flex-direction: column;
}

/* Fingerprint */
#fingerprint-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vmax;
    height: 150vmax;
    transform: translate(-50%, -50%);
    animation: fingerprintRotate 720s linear infinite;
    z-index: 0;
    pointer-events: none;
}

#fingerprint-svg {
    width: 100%;
    height: 100%;
}

@keyframes fingerprintRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: var(--font-mono);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(192, 215, 255, 0.3);
    line-height: 1.1;
    color: var(--chrome-silver);
}

.hero-title .letter {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease, filter 0.8s ease, font-family 0.6s ease;
}

.hero-title .letter.revealed {
    opacity: 1;
    filter: blur(0);
    font-family: var(--font-display);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.6rem);
    letter-spacing: 0.05em;
    color: var(--liquid-mercury);
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease 1.5s, transform 0.8s ease 1.5s;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Holographic Seal */
.holo-seal {
    position: absolute;
    bottom: 8vh;
    right: 8vw;
    width: 200px;
    height: 200px;
    z-index: 3;
    animation: sealPulse 4s ease-in-out infinite alternate;
}

.holo-seal-large {
    position: relative;
    bottom: auto;
    right: auto;
    width: 300px;
    height: 300px;
    margin-top: 4rem;
    animation: sealRotate 20s linear infinite;
}

@keyframes sealPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes sealRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.seal-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.seal-ring-1 {
    width: 100%;
    height: 100%;
    border: 1px solid var(--scan-pulse);
    opacity: 0.4;
    background: conic-gradient(
        from 0deg,
        rgba(0,229,255,0.1),
        rgba(57,255,142,0.08),
        rgba(255,107,74,0.06),
        rgba(192,215,255,0.1),
        rgba(0,229,255,0.1)
    );
    mix-blend-mode: screen;
}

.seal-ring-2 {
    width: 85%;
    height: 85%;
    border: 1px solid var(--verification-green);
    opacity: 0.3;
}

.seal-ring-3 {
    width: 70%;
    height: 70%;
    border: 1px solid var(--warm-saram);
    opacity: 0.25;
}

.seal-ring-4 {
    width: 55%;
    height: 55%;
    border: 1px solid var(--chrome-silver);
    opacity: 0.2;
}

.seal-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--chrome-silver);
    mix-blend-mode: screen;
    opacity: 0.7;
}

.holo-seal-large .seal-text {
    font-size: 1rem;
}

/* ============================================
   SECTION 2: SCAN
   ============================================ */
#section-scan {
    background: var(--void-black);
    z-index: 4;
}

.scanner-container {
    position: relative;
    width: 400px;
    height: 400px;
    z-index: 2;
}

.scanner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: transform 0.8s var(--ease-overshoot), opacity 0.6s ease;
}

.scanner-ring.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.scanner-ring-1 {
    width: 400px;
    height: 400px;
    border: 1px solid var(--scan-pulse);
    opacity: 0.15;
}

.scanner-ring-2 {
    width: 320px;
    height: 320px;
    border: 1px solid var(--chrome-silver);
    opacity: 0.1;
}

.scanner-ring-3 {
    width: 240px;
    height: 240px;
    border: 1px solid var(--scan-pulse);
    opacity: 0.2;
}

.scanner-ring-4 {
    width: 160px;
    height: 160px;
    border: 1px solid var(--verification-green);
    opacity: 0.15;
}

.scanner-ring-5 {
    width: 80px;
    height: 80px;
    border: 1px solid var(--warm-saram);
    opacity: 0.1;
}

.scanner-ring.active {
    animation: ringPulse 3s ease-in-out infinite alternate;
}

@keyframes ringPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.05); }
}

.scanner-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    text-align: center;
    z-index: 3;
}

.scanner-text {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--chrome-silver);
    line-height: 1.8;
    opacity: 0.85;
}

/* Orbit Panels */
.orbit-panel {
    position: absolute;
    width: 280px;
    padding: 1.8rem;
    z-index: 3;
    transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
    opacity: 0;
    transition: opacity 0.6s var(--ease-smooth), transform 0.8s var(--ease-overshoot);
}

.orbit-panel.visible {
    opacity: 1;
}

.orbit-panel-top {
    top: 5%;
    left: 50%;
    margin-left: -140px;
    transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) translateY(-60px);
}

.orbit-panel-top.visible {
    transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) translateY(0);
}

.orbit-panel-right {
    top: 50%;
    right: 5%;
    margin-top: -80px;
    transform: perspective(1200px) rotateY(-5deg) rotateX(1deg) translateX(60px);
}

.orbit-panel-right.visible {
    transform: perspective(1200px) rotateY(-5deg) rotateX(1deg) translateX(0);
}

.orbit-panel-bottom {
    bottom: 5%;
    left: 50%;
    margin-left: -140px;
    transform: perspective(1200px) rotateY(2deg) rotateX(-3deg) translateY(60px);
}

.orbit-panel-bottom.visible {
    transform: perspective(1200px) rotateY(2deg) rotateX(-3deg) translateY(0);
}

.orbit-panel-left {
    top: 50%;
    left: 5%;
    margin-top: -80px;
    transform: perspective(1200px) rotateY(5deg) rotateX(1deg) translateX(-60px);
}

.orbit-panel-left.visible {
    transform: perspective(1200px) rotateY(5deg) rotateX(1deg) translateX(0);
}

.panel-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    letter-spacing: 0.05em;
    color: var(--chrome-silver);
    margin-bottom: 0.8rem;
}

.panel-body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--liquid-mercury);
    line-height: 1.7;
}

.mrz-strip {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--muted-periwinkle);
    margin-top: 1.2rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(42, 51, 82, 0.5);
    word-break: break-all;
}

/* ============================================
   SECTION 3: PROCESS
   ============================================ */
#section-process {
    background: var(--void-black);
    z-index: 3;
    flex-direction: column;
}

.process-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
}

.process-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.viz-block {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.viz-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--liquid-mercury);
    margin-bottom: 1.2rem;
}

.bar-chart,
.dot-matrix,
.waveform {
    width: 100%;
    height: auto;
}

.bar-chart .bar {
    transition: y 0.8s var(--ease-overshoot), height 0.8s var(--ease-overshoot);
}

.dot-matrix .dot-group circle {
    transition: opacity 0.5s ease;
}

.dot-matrix.active .dot-group circle {
    opacity: 0.8;
}

.dot-matrix .dot-lines line {
    transition: opacity 0.5s ease, stroke-dashoffset 1.2s ease;
}

.dot-matrix.active .dot-lines line {
    opacity: 0.6;
    stroke-dashoffset: 0;
}

.waveform .wave-path,
.waveform .wave-path-2 {
    transition: stroke-dashoffset 1.5s ease;
}

.waveform.active .wave-path,
.waveform.active .wave-path-2 {
    stroke-dashoffset: 0;
}

.process-meta {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.meta-item {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--liquid-mercury);
    opacity: 0.6;
}

/* ============================================
   SECTION 4: VERIFY
   ============================================ */
#section-verify {
    background: var(--void-black);
    z-index: 2;
}

.id-card {
    width: 100%;
    max-width: 640px;
    padding: 2.5rem;
    z-index: 2;
    transform: perspective(1200px) rotateY(calc(var(--rotateY, 0) * 1deg)) rotateX(calc(var(--rotateX, 0) * 1deg));
    transition: box-shadow 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 229, 255, 0.12);
    cursor: default;
}

.id-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--titanium-edge);
}

.id-card-domain {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: 0.15em;
    color: var(--chrome-silver);
    text-shadow: 0 0 20px rgba(192, 215, 255, 0.2);
}

.id-card-holo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(0,229,255,0.2),
        rgba(57,255,142,0.15),
        rgba(255,107,74,0.1),
        rgba(192,215,255,0.2),
        rgba(0,229,255,0.2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sealRotate 20s linear infinite;
}

.mini-seal {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(192, 215, 255, 0.2);
}

.id-card-body {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.id-card-photo {
    width: 160px;
    height: 160px;
    min-width: 160px;
    border-radius: 50%;
    border: 1px solid var(--titanium-edge);
    background: radial-gradient(circle at center, rgba(20, 25, 41, 0.8), var(--panel-surface));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.id-fingerprint {
    width: 140px;
    height: 140px;
    animation: fingerprintRotate 120s linear infinite;
}

.id-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.id-field {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.id-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--liquid-mercury);
    min-width: 70px;
    opacity: 0.6;
}

.id-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--chrome-silver);
}

.id-status {
    color: var(--verification-green);
    text-shadow: 0 0 10px rgba(57, 255, 142, 0.3);
}

.id-card-mrz {
    padding-top: 1.2rem;
    border-top: 1px solid var(--titanium-edge);
}

.mrz-line {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--titanium-edge);
    line-height: 1.8;
    word-break: break-all;
}

/* ============================================
   SECTION 5: PASS
   ============================================ */
#section-pass {
    background: linear-gradient(180deg, var(--void-black) 0%, rgba(10, 14, 26, 0.95) 60%, rgba(57, 255, 142, 0.03) 100%);
    z-index: 1;
    flex-direction: column;
}

.pass-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.verified-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--verification-green);
    text-shadow: 0 0 40px rgba(57, 255, 142, 0.4), 0 0 80px rgba(57, 255, 142, 0.15);
    margin-bottom: 2rem;
}

.v-letter {
    display: inline-block;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s var(--ease-smooth), transform 0.5s var(--ease-overshoot);
}

.v-letter.revealed {
    opacity: 1;
    transform: scale(1);
}

.pass-text {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.03em;
    line-height: 2.2;
    color: var(--chrome-silver);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.pass-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.pass-line {
    display: block;
}

.pass-text em {
    color: var(--warm-saram);
    font-style: italic;
}

/* ---- Dark text for light context ---- */
.dark-text {
    color: #1A1F35;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .scanner-container {
        width: 300px;
        height: 300px;
    }

    .scanner-ring-1 { width: 300px; height: 300px; }
    .scanner-ring-2 { width: 240px; height: 240px; }
    .scanner-ring-3 { width: 180px; height: 180px; }
    .scanner-ring-4 { width: 120px; height: 120px; }
    .scanner-ring-5 { width: 60px; height: 60px; }

    .scanner-core {
        width: 200px;
    }

    .orbit-panel {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 1rem auto;
        width: 90%;
        max-width: 320px;
        transform: none;
    }

    .orbit-panel.visible {
        transform: none;
    }

    #section-scan {
        flex-direction: column;
        padding: 5vh 5vw;
        gap: 2rem;
    }

    .id-card-body {
        flex-direction: column;
        align-items: center;
    }

    .id-card-info {
        width: 100%;
    }

    .holo-seal {
        bottom: 4vh;
        right: 4vw;
        width: 120px;
        height: 120px;
    }

    .process-row {
        flex-direction: column;
        align-items: center;
    }

    .process-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .holo-seal-large {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

    .verified-title {
        font-size: clamp(2rem, 12vw, 4rem);
    }

    .id-card {
        padding: 1.5rem;
    }

    .orbit-panel {
        padding: 1.2rem;
    }
}
