* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
background-color: #1e262f;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
color: #f0f4f8;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.dashboard {
max-width: 1440px;
margin: 0 auto;
padding: 2rem 2rem;
}

.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 4rem;
padding-bottom: 1rem;
border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-container {
flex-shrink: 0;
background: rgba(255,255,255,0.02);
border-radius: 12px;
padding: 6px 12px 6px 0;
}

.status-bar {
display: flex;
align-items: center;
gap: 0.75rem;
background: rgba(60, 190, 242, 0.04);
padding: 0.5rem 1.25rem;
border-radius: 100px;
border: 1px solid rgba(60, 190, 242, 0.15);
font-size: 0.9rem;
font-weight: 450;
letter-spacing: 0.2px;
color: rgba(255,255,255,0.9);
}

.status-indicator {
width: 8px;
height: 8px;
background-color: #3cbef2;
border-radius: 50%;
box-shadow: 0 0 12px rgba(60, 190, 242, 0.8);
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.1); }
100% { opacity: 1; transform: scale(1); }
}

.hero {
margin-bottom: 5rem;
max-width: 900px;
}

.hero h1 {
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 350;
letter-spacing: -0.02em;
line-height: 1.1;
color: #ffffff;
}

.accent {
color: #3cbef2;
font-weight: 480;
position: relative;
display: inline-block;
}

.accent::after {
content: '';
position: absolute;
bottom: 6px;
left: 0;
width: 100%;
height: 8px;
background: rgba(60, 190, 242, 0.15);
border-radius: 4px;
z-index: -1;
}

.subtitle {
color: #a0b3c9;
font-size: 1.25rem;
margin-top: 1.25rem;
max-width: 700px;
font-weight: 350;
}

.section-title {
font-size: 1.8rem;
font-weight: 380;
margin-bottom: 2.5rem;
position: relative;
display: inline-block;
color: #ffffff;
letter-spacing: -0.3px;
}

.section-title::before {
content: '▍▍';
color: #3cbef2;
margin-right: 12px;
font-weight: 300;
letter-spacing: -2px;
opacity: 0.9;
}

.launchpad {
margin-bottom: 6rem;
}

.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.8rem;
margin-bottom: 1.8rem;
}

.link-card {
background: #252f39;
border: 1px solid #333f4a;
border-radius: 24px;
padding: 1.8rem;
transition: all 0.2s ease;
cursor: pointer;
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.link-card:hover {
border-color: #3cbef2;
transform: translateY(-3px);
box-shadow: 0 16px 30px -10px rgba(60, 190, 242, 0.25);
background: #2a3540;
}

.card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
font-size: 0.85rem;
color: #9aabbc;
}

.card-status {
width: 8px;
height: 8px;
background-color: #3cbef2;
border-radius: 50%;
display: inline-block;
box-shadow: 0 0 12px #3cbef2;
}

.link-latency {
color: #3cbef2;
font-family: 'JetBrains Mono', 'Fira Code', monospace;
font-size: 0.85rem;
background: rgba(60, 190, 242, 0.1);
padding: 0.2rem 0.6rem;
border-radius: 30px;
}

.link-url {
word-break: break-all;
font-family: 'JetBrains Mono', 'Fira Code', monospace;
font-size: 0.95rem;
margin: 1.2rem 0;
padding: 1rem;
background: #1a2128;
border-radius: 16px;
border: 1px solid #35424f;
transition: all 0.15s ease;
color: #cbd5e1;
line-height: 1.4;
}

.link-url:hover {
border-color: #3cbef2;
background: #1f2933;
color: #ffffff;
}

.copy-btn {
background: transparent;
border: 1px solid #3cbef2;
color: #3cbef2;
padding: 0.7rem 1rem;
border-radius: 40px;
font-size: 0.9rem;
font-weight: 520;
cursor: pointer;
transition: all 0.2s ease;
width: 100%;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 1.2px;
background: rgba(60, 190, 242, 0.02);
}

.copy-btn:hover {
background: #3cbef2;
color: #1a232c;
border-color: #3cbef2;
}

.card-meta {
display: flex;
gap: 1.5rem;
font-size: 0.8rem;
color: #6f859c;
font-family: 'JetBrains Mono', monospace;
}

.mirror-note {
background: #1f2933;
padding: 1rem 1.5rem;
border-radius: 60px;
border-left: 4px solid #3cbef2;
font-size: 0.95rem;
color: #d1ddeb;
display: flex;
align-items: center;
gap: 1rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.note-icon {
color: #3cbef2;
font-size: 1.3rem;
font-weight: 300;
}

.verifier {
margin-bottom: 6rem;
}

.verifier-card {
background: #252f39;
border-radius: 32px;
padding: 2.5rem;
border: 1px solid #333f4a;
max-width: 700px;
box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.verifier-description {
color: #b6c7dd;
margin-bottom: 2rem;
font-size: 1.1rem;
font-weight: 350;
}

.input-group {
display: flex;
gap: 0.8rem;
flex-wrap: wrap;
}

#linkInput {
flex: 1;
min-width: 250px;
background: #1a2128;
border: 1px solid #3f4d5b;
border-radius: 60px;
padding: 1rem 1.5rem;
color: #ffffff;
font-size: 1rem;
outline: none;
transition: all 0.15s ease;
font-family: 'JetBrains Mono', monospace;
}

#linkInput:focus {
border-color: #3cbef2;
box-shadow: 0 0 0 3px rgba(60, 190, 242, 0.15);
background: #1e2730;
}

#linkInput::placeholder {
color: #5d738b;
font-family: 'Inter', sans-serif;
font-size: 0.95rem;
}

.verify-btn {
background: #3cbef2;
border: none;
color: #0e1a24;
padding: 1rem 2.8rem;
border-radius: 60px;
font-weight: 620;
cursor: pointer;
transition: all 0.15s ease;
white-space: nowrap;
text-transform: uppercase;
letter-spacing: 1.2px;
font-size: 0.9rem;
box-shadow: 0 4px 12px rgba(60, 190, 242, 0.25);
}

.verify-btn:hover {
background: #50c5f5;
transform: scale(1.01);
box-shadow: 0 6px 16px rgba(60, 190, 242, 0.35);
}

.verify-btn:active {
transform: scale(0.98);
}

.validation-result {
margin-top: 2rem;
padding: 1.2rem 1.5rem;
border-radius: 20px;
font-size: 1rem;
font-family: 'JetBrains Mono', monospace;
font-weight: 450;
transition: all 0.2s;
}

.validation-result.success {
background: rgba(60, 190, 242, 0.1);
border: 1px solid #3cbef2;
color: #b0e6ff;
}

.validation-result.error {
background: rgba(255, 100, 100, 0.08);
border: 1px solid #ff6b6b;
color: #ffb5b5;
}

.intelligence {
margin-bottom: 6rem;
}

.intel-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
gap: 2rem;
margin-bottom: 2.5rem;
}

.intel-card {
background: #252f39;
border-radius: 28px;
padding: 2.2rem;
border: 1px solid #333f4a;
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
transition: border 0.15s;
}

.intel-card:hover {
border-color: #3a4b5a;
}

.intel-card h3 {
font-size: 1.5rem;
font-weight: 420;
margin-bottom: 1.2rem;
color: #3cbef2;
letter-spacing: -0.3px;
line-height: 1.3;
}

.intel-card p {
color: #c0d0e5;
margin-bottom: 1.5rem;
font-size: 0.95rem;
line-height: 1.6;
}

.stat-row {
display: flex;
justify-content: space-between;
padding: 0.7rem 0;
border-bottom: 1px dashed #364553;
}

.stat-label {
color: #8fa3bc;
font-size: 0.9rem;
}

.stat-value {
color: #3cbef2;
font-family: 'JetBrains Mono', monospace;
font-weight: 500;
background: rgba(60, 190, 242, 0.08);
padding: 0.2rem 0.8rem;
border-radius: 30px;
}

.feature-tags {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
margin-top: 1.2rem;
}

.feature-tags span {
background: rgba(60, 190, 242, 0.08);
border: 1px solid #3a4f60;
padding: 0.3rem 1.1rem;
border-radius: 40px;
font-size: 0.8rem;
color: #b4d8ff;
font-weight: 450;
}

.intel-expand {
background: #1f2933;
border-radius: 28px;
padding: 2.8rem;
margin: 2.5rem 0;
border: 1px solid #3c4f5e;
box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.intel-expand h3 {
font-size: 1.8rem;
font-weight: 380;
margin-bottom: 2.5rem;
color: #ffffff;
letter-spacing: -0.5px;
}

.category-matrix {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2.5rem;
}

.category-col h4 {
color: #3cbef2;
font-weight: 450;
margin-bottom: 1.2rem;
font-size: 1.25rem;
letter-spacing: -0.2px;
}

.category-col ul {
list-style: none;
}

.category-col li {
padding: 0.5rem 0;
color: #b9cde8;
font-size: 0.9rem;
position: relative;
padding-left: 1.5rem;
border-bottom: 1px dashed #2e3d4b;
}

.category-col li:last-child {
border-bottom: none;
}

.category-col li::before {
content: '▶';
color: #3cbef2;
position: absolute;
left: 0;
font-size: 0.7rem;
opacity: 0.8;
}

.seo-keywords {
margin: 5rem 0 2.5rem;
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
justify-content: center;
}

.seo-keywords span {
font-size: 0.7rem;
color: #5e7892;
background: #1d2a33;
padding: 0.25rem 1.2rem;
border-radius: 60px;
border: 1px solid #2d3e4d;
text-transform: lowercase;
}

.disclaimer {
margin: 5rem 0 4rem;
}

.disclaimer-content {
background: #1d272f;
border-radius: 24px;
padding: 2.2rem;
border: 1px solid #3f4750;
box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.disclaimer-content h4 {
color: #ffaeae;
margin-bottom: 1rem;
font-weight: 420;
letter-spacing: 0.3px;
font-size: 1.1rem;
}

.disclaimer-content p {
color: #9fb0c7;
font-size: 0.9rem;
line-height: 1.7;
}

.footer {
margin-top: 5rem;
padding-top: 2.5rem;
border-top: 1px solid #29353f;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1.5rem;
color: #6e87a2;
font-size: 0.9rem;
}

.footer-links {
display: flex;
gap: 2.2rem;
}

.security-report {
color: #3cbef2;
text-decoration: none;
border-bottom: 1px dotted #3cbef2;
font-size: 0.9rem;
padding-bottom: 2px;
transition: opacity 0.15s;
}

.security-report:hover {
opacity: 0.8;
}

@media (max-width: 800px) {
.dashboard {
padding: 1.5rem;
}

.header {
flex-direction: column;
align-items: flex-start;
gap: 1.2rem;
}

.hero h1 {
font-size: 2.5rem;
}

.card-grid {
grid-template-columns: 1fr;
}

.intel-grid {
grid-template-columns: 1fr;
}

.category-matrix {
grid-template-columns: 1fr;
gap: 2rem;
}

.input-group {
flex-direction: column;
}

.verify-btn {
width: 100%;
}

.mirror-note {
flex-direction: column;
align-items: flex-start;
border-radius: 24px;
}

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

.footer-links {
flex-wrap: wrap;
gap: 1.2rem;
}
}

@media (max-width: 480px) {
.dashboard {
padding: 1rem;
}

.verifier-card {
padding: 1.8rem;
}

.intel-card {
padding: 1.8rem;
}

.intel-expand {
padding: 1.8rem;
}

.section-title {
font-size: 1.5rem;
}

.hero h1 {
font-size: 2rem;
}
}