/* Whitepaper layout */
.wp-layout { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; max-width: 1400px; padding: 56px 24px; width: 100%; }
@media (max-width: 900px) { .wp-layout { grid-template-columns: 1fr; gap: 16px; } .wp-sidebar { position: static; margin-bottom: 12px; } }
.wp-sidebar { position: sticky; top: 40px; align-self: start; padding: 16px; border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; background: rgba(255,255,255,0.04); backdrop-filter: blur(6px); }
.wp-title { font-family: 'Cinzel', 'Playfair Display', Georgia, serif; font-weight: 700; font-size: clamp(28px, 4.6vw, 56px); margin: 0 0 8px 0; text-align: left; }
.wp-sub { font-family: 'Great Vibes', 'Playfair Display', Georgia, serif; font-size: clamp(18px, 2.4vw, 28px); color: #d9e1ff; margin: 0 0 12px 0; text-align: left; }
.wp-nav { display: grid; gap: 10px; }
.wp-link { display: block; padding: 8px 10px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); color: #fff; text-decoration: none; font-family: 'Playfair Display', Georgia, serif; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.wp-link:hover { border-color: rgba(255,255,255,0.26); background: rgba(255,255,255,0.06); transform: translateX(2px); }
.wp-content { color: #fff; padding-left: 0; }
.wp-section { max-width: 1100px; margin: 12px auto 36px auto; text-align: left; }
.wp-section h2 { font-family: 'Cinzel', 'Playfair Display', Georgia, serif; margin: 0 0 14px 0; letter-spacing: 0.4px; }
.wp-section p { font-family: 'Playfair Display', Georgia, serif; font-size: 16px; color: #e6ecff; line-height: 1.9; margin: 0; }
.wp-list { font-family: 'Playfair Display', Georgia, serif; color: #e6ecff; line-height: 1.9; margin: 6px 0 10px 0; padding-left: 18px; }
.wp-list li { margin: 0 0 2px 0; }
.wp-table { width: 100%; max-width: 720px; border-collapse: collapse; margin: 10px 0 14px 0; }
.wp-table th, .wp-table td { border: 1px solid rgba(255,255,255,0.12); padding: 8px 10px; text-align: left; font-family: 'Playfair Display', Georgia, serif; color: #e6ecff; }
.wp-table th { background: rgba(255,255,255,0.06); }

/* Desktop fixed sidebar */
@media (min-width: 901px) {
	.wp { overflow-x: hidden; }
	.wp .hero { overflow: visible; }
	.wp-sidebar { position: fixed !important; top: 40px; left: 24px; width: 320px; z-index: 999; height: calc(100vh - 80px); overflow:auto; }
	.wp-sidebar::-webkit-scrollbar { width: 8px; }
	.wp-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 8px; }
	.wp-layout { grid-template-columns: 1fr; padding-left: calc(320px + 56px); }
}
/* Base reset and theme */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	color: #ffffff;
	background: #000000;
	letter-spacing: 0.2px;
}

:root {
	--bg: #0a0b0f;
	--bg-elev: #0f1118;
	--fg: #e6ecff;
	--muted: #9aa6b2;
	--primary: #7aa2ff;
	--accent: #7c5cff;
	--halo-outer: rgba(124, 92, 255, 0.25);
	--halo-inner: rgba(122, 162, 255, 0.45);
	--grid: rgba(255,255,255,0.05);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap; /* added line */
	border: 0;
}

/* Hero layout */
.hero {
	position: relative;
	min-height: 100vh;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: #000000;
}

/* Page fade-in */
.page-fade { opacity: 0; transform: translateY(8px); transition: opacity .6s ease, transform .6s ease; }
body.is-ready .page-fade { opacity: 1; transform: translateY(0); }
.reduce-motion .page-fade { transition: none; opacity: 1; transform: none; }
/* For whitepaper: prevent transform on ancestor so fixed sidebar is viewport-fixed */
.wp .page-fade { transform: none !important; }
body.is-ready .wp .page-fade { transform: none !important; }

/* Expand overlay */
.expand-overlay {
    position: fixed;
	inset: 0;
	background: #000000;
	z-index: 3;
	display: grid;
	place-items: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s step-end;
}
.expand-overlay.is-open {
	visibility: visible;
	opacity: 1;
	transition: opacity .6s ease, visibility 0s linear;
}
.expand-overlay.is-open.will-close {
	opacity: 0;
}
.expand-image {
	max-width: none;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	clip-path: circle(0% at 50% 50%);
	opacity: 0;
	transition: clip-path 1.2s ease-in-out, opacity .6s ease;
}
.expand-overlay.is-open .expand-image {
	clip-path: circle(150% at 50% 50%);
	opacity: 1;
}

.reduce-motion .expand-image { transition: none; clip-path: none; }

/* Fullscreen background video */
.bg-video-wrap {
    position: fixed; /* body-level background */
    inset: 0;
    z-index: 0; /* base layer */
    overflow: hidden;
    pointer-events: none;
}
.bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* fill without distortion */
    transform: none;
    min-width: 0;
    min-height: 0;
    filter: saturate(105%) contrast(105%) brightness(85%);
    opacity: 0.5;
}

.reduce-motion .bg-video { display: none; }

/* About page */
.about .scrim {
	position: absolute;
	inset: 0;
	background: radial-gradient(1200px 800px at 50% 60%, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.70) 65%);
	z-index: 1; /* above video */
}
.brand-mark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(32vmin, 360px); height: auto; opacity: 0.26; filter: brightness(1.18) saturate(125%) contrast(112%); z-index: 1; pointer-events: none; }
.about .about-content,
.market-content,
.mechanisms-content,
.products-content,
.roadmap-content,
.contact-content,
.tech-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 56px 24px;
	text-align: center;
	color: #ffffff;
	z-index: 2; /* above scrim */
	transition: opacity .5s ease, transform .5s ease;
}
.about .about-content.is-hidden { opacity: 0; transform: translateY(-8px); pointer-events: none; }
.market-content, .mechanisms-content, .products-content, .roadmap-content, .contact-content, .tech-content { opacity: 0; transform: translateY(8px); pointer-events: none; }
.market-content.is-visible, .mechanisms-content.is-visible, .products-content.is-visible, .roadmap-content.is-visible, .contact-content.is-visible, .tech-content.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.about-title, .market-title, .mechanisms-title, .products-title, .roadmap-title, .contact-title, .tech-title {
	font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: clamp(36px, 6vw, 88px);
	letter-spacing: 1.2px;
	margin: 0 0 12px 0;
}
.about-tagline, .market-tagline, .mechanisms-tagline, .products-tagline, .roadmap-tagline, .contact-tagline, .tech-tagline {
	font-family: 'Great Vibes', 'Playfair Display', Georgia, serif;
	font-size: clamp(22px, 2.6vw, 36px);
	color: #d9e1ff;
	margin: 0 0 18px 0;
}
.about-lead, .market-lead, .mechanisms-lead, .products-lead, .roadmap-lead, .contact-lead, .tech-lead {
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
	font-size: clamp(16px, 1.4vw, 20px);
	line-height: 1.75;
	color: #e6ecff;
	margin: 0 auto 28px auto;
	max-width: 880px;
}

/* Tech showcase */
.tech-wrap { display: grid; grid-template-columns: 360px minmax(320px, 600px); gap: 18px; align-items: start; }
@media (max-width: 900px) { .tech-wrap { grid-template-columns: 1fr; } }
.engine-stack { display: grid; gap: 14px; }
.engine-panel { background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 14px; backdrop-filter: blur(6px); text-align: left; }
.engine-header { display: flex; align-items: center; gap: 8px; font-family: 'Playfair Display', Georgia, serif; color: #e6ecff; margin: 2px 0 8px 0; letter-spacing: 0.2px; }
.status-dot { width: 10px; height: 10px; border-radius: 999px; background: #5cff7a; box-shadow: 0 0 12px rgba(92,255,122,0.6); animation: dot-blink 1.4s ease-in-out infinite; }
.engine-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.metric-badge { border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 10px 12px; background: rgba(255,255,255,0.03); display: grid; gap: 4px; }
.metric-badge span { font-size: 12px; color: #b6c2ff; font-weight: 600; font-family: 'Playfair Display', Georgia, serif; }
.metric-badge strong { font-family: 'Cinzel', 'Playfair Display', Georgia, serif; font-size: 16px; color: #ffffff; letter-spacing: 0.3px; font-weight: 700; }
.oracles-panel { background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 14px; backdrop-filter: blur(6px); text-align: left; }
.oracles-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.heatbar { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.04); overflow: hidden; margin-top: 10px; border: 1px solid rgba(255,255,255,0.12); }
.heatbar > span { display: block; height: 100%; width: 42%; background: linear-gradient(90deg, #7c5cff, #7aa2ff); box-shadow: inset 0 0 18px rgba(124,92,255,0.45); transition: width .6s ease; }
.log-window { background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 12px; backdrop-filter: blur(6px); text-align: left; height: 300px; overflow: auto; }
.log-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.log-list li { font-family: 'Playfair Display', Georgia, serif; font-size: 14px; color: #cfe1ff; white-space: nowrap; letter-spacing: 0.2px; }
.log-window::-webkit-scrollbar { width: 10px; }
.log-window::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); border-radius: 10px; }
.log-window::-webkit-scrollbar-thumb { background: linear-gradient(180deg, rgba(124,92,255,0.35), rgba(122,162,255,0.35)); border-radius: 10px; border: 1px solid rgba(255,255,255,0.18); }
.log-window { scrollbar-width: thin; scrollbar-color: rgba(122,162,255,0.5) rgba(255,255,255,0.05); }
.log-addr { color: #86a9ff; }
.log-product { color: #e8d7ff; }
.log-amount { color: #ffd38a; }
.chip { display: inline-block; padding: 2px 6px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.04); color: #e6ecff; font-size: 11px; margin-left: 6px; font-family: 'Playfair Display', Georgia, serif; }
@keyframes dot-blink { 0%,100% { opacity: 1 } 50% { opacity: .4 } }

/* Contact links */
.contact-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.contact-primary { display: grid; place-items: center; margin: 6px 0 12px 0; }
.contact-link { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.04); color: #fff; text-decoration: none; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.contact-link:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); transform: translateY(-1px); }
.contact-link:active { transform: translateY(0); }
.contact-link svg { width: 18px; height: 18px; filter: drop-shadow(0 4px 12px rgba(255,255,255,0.1)); }

/* Roadmap grid */
.roadmap-grid {
	margin: 24px auto 0 auto;
	max-width: 1000px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.roadmap-card { padding: 18px 16px; border-radius: 16px; background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(6px); text-align: left; }
.roadmap-card h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(18px, 2.2vw, 24px); margin: 0 0 8px 0; }
.roadmap-card ul { margin: 0; padding-left: 18px; color: #d0d9ff; font-family: 'Inter', system-ui; font-size: clamp(14px, 1.2vw, 17px); line-height: 1.6; }

@media (max-width: 860px) {
	.roadmap-grid { grid-template-columns: 1fr; }
}
.about-grid {
	margin: 24px auto 0 auto;
	max-width: 1000px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.about-card {
	background: rgba(0,0,0,0.45);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 18px 16px;
	backdrop-filter: blur(6px);
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 10px;
}
.about-icon {
	width: 56px;
	height: 56px;
	margin: 4px auto 2px auto;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
	border: 1px solid rgba(255,255,255,0.12);
	box-shadow: 0 8px 28px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.06);
	display: grid;
	place-items: center;
}
.about-icon svg { filter: drop-shadow(0 4px 14px rgba(255,255,255,0.12)); }

/* Nav arrows */
.nav-arrows {
	position: absolute;
	left: 0; right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 18px;
	z-index: 10; /* above sections on mobile */
	pointer-events: none;
}
.arrow-btn {
	appearance: none;
	border: 1px solid rgba(255,255,255,0.18);
	background: rgba(0,0,0,0.35);
	color: #fff;
	border-radius: 999px;
	width: 44px; height: 44px;
	display: grid;
	place-items: center;
	backdrop-filter: blur(6px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.35);
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
	pointer-events: auto;
}
.arrow-btn:hover { transform: scale(1.04); border-color: rgba(255,255,255,0.28); }
.arrow-btn:active { transform: scale(0.98); }
.about-card h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 600;
	font-size: clamp(18px, 2.2vw, 24px);
	margin: 0 0 8px 0;
}
.about-card p {
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
	font-size: clamp(14px, 1.3vw, 18px);
	color: #d0d9ff;
	margin: 0;
}

/* Products grid */
.products-scroll {
    margin: 24px auto 0 auto;
    max-width: 1100px;
    max-height: calc(2 * 240px); /* two rows approx, each 240px tall including gaps */
    overflow: auto;
    padding-right: 8px; /* room for custom scrollbar */
}
.products-grid {
    min-width: 720px; /* prevent awkward wrap when scrollbar shows */
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.product-card {
	background: rgba(0,0,0,0.5);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 16px;
	overflow: hidden;
	display: grid;
	grid-template-rows: 120px auto auto;
	text-align: left;
}
.product-thumb { display: none; }
.product-icon {
	display: grid;
	place-items: center;
	width: 100%;
	height: 120px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.product-icon svg { width: 56px; height: 56px; filter: drop-shadow(0 6px 22px rgba(255,255,255,0.12)); }
.product-body { padding: 12px 12px 6px 12px; }
.product-title { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; margin: 0 0 6px 0; }
.product-desc { font-family: 'Inter', system-ui; font-size: 14px; color: #d0d9ff; margin: 0; line-height: 1.6; }
.product-meta { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px 12px 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.product-hash { font-family: 'Inter', monospace; font-size: 12px; color: #b9c4ff; }
.product-price-wrap { display: inline-flex; align-items: center; gap: 6px; }
.product-price { font-family: 'Cinzel', 'Playfair Display', serif; font-size: 16px; }
.price-icon { width: 16px; height: 16px; border-radius: 4px; display: block; }

/* Custom scrollbar for products */
.products-scroll::-webkit-scrollbar { width: 10px; height: 10px; }
.products-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); border-radius: 10px; }
.products-scroll::-webkit-scrollbar-thumb { background: linear-gradient(180deg, rgba(124,92,255,0.35), rgba(122,162,255,0.35)); border-radius: 10px; border: 1px solid rgba(255,255,255,0.18); }
.products-scroll { scrollbar-width: thin; scrollbar-color: rgba(122,162,255,0.5) rgba(255,255,255,0.05); }

@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); min-width: 0; } }
@media (max-width: 860px) { .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

/* Mechanisms layout tweaks (2x2 grid) */
.mechanisms-content .about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 860px) {
	.mechanisms-content .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	.about-grid { grid-template-columns: 1fr; gap: 14px; }
}

.hero-bg { display: none; }

.radial-halo {
	position: absolute;
	top: 50%; left: 50%;
	width: min(80vmin, 720px);
	height: min(80vmin, 720px);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background:
		radial-gradient(closest-side, var(--halo-inner), transparent 65%),
		radial-gradient(closest-side, var(--halo-outer), transparent 70%);
	filter: blur(18px) saturate(120%);
	animation: pulse 6s ease-in-out infinite;
}

.grid {
	position: absolute;
	inset: -10% -10% -10% -10%;
	background-image:
		linear-gradient(var(--grid) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid) 1px, transparent 1px);
	background-size: 64px 64px;
	background-position: center;
	mask-image: radial-gradient(70% 60% at 50% 60%, black, transparent 70%);
	filter: saturate(120%);
}

.noise {
	position: absolute; inset: 0;
	opacity: 0.03;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23n)" opacity="0.6"/></svg>');
	background-size: 200px 200px;
	pointer-events: none;
}

.hero-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	z-index: 2;
	text-align: center;
}

.logo-wrap {
	position: relative;
	display: grid;
	place-items: center;
    z-index: 1;
}

.logo-wrap::before {
	content: "";
	position: absolute;
	inset: -14%;
	border-radius: 50%;
	background: radial-gradient(closest-side at 50% 50%, rgba(122,162,255,0.35), transparent 70%);
	filter: blur(20px);
	z-index: 0;
}


.hero-img {
	width: min(36vmin, 360px);
	height: auto;
	display: block;
	filter: none;
	animation: spin-slow 30s linear infinite;
	will-change: transform;
	position: relative;
	z-index: 1;
}

.headline, .subtitle, .cta-wrap, .btn { display: none; }

.hero--brand-only {
	display: grid;
	place-items: center;
	gap: 6px;
	text-align: center;
}

.brand-name {
	font-family: 'Great Vibes', 'Playfair Display', Georgia, serif;
	font-weight: 400;
	font-size: clamp(40px, 10vw, 120px);
	line-height: 1;
	margin: 0;
	letter-spacing: 1px;
	color: #ffffff;
}

.cta-wrap { display: flex; gap: 14px; }
.btn {
	appearance: none;
	border: 1px solid rgba(122,162,255,0.35);
	background: linear-gradient(180deg, rgba(124,92,255,0.18), rgba(124,92,255,0.10));
	color: var(--fg);
	padding: 12px 18px;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	backdrop-filter: blur(6px);
	transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(122,162,255,0.65); box-shadow: 0 6px 28px rgba(124, 92, 255, 0.25); }
.btn:active { transform: translateY(0); }
.btn.primary { background: linear-gradient(180deg, rgba(122,162,255,0.25), rgba(124,92,255,0.18)); }
.btn.ghost { background: rgba(255,255,255,0.03); }

/* Wallet CTA */
.wallet-cta { display: grid; place-items: center; gap: 10px; margin-top: 6px; }
.btn.wallet { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; }
.btn.wallet {
	border: 1px solid rgba(255,255,255,0.16) !important;
	background: rgba(255,255,255,0.03) !important;
	box-shadow: none !important;
	color: #fff;
}
.btn.wallet:hover {
	border-color: rgba(255,255,255,0.28) !important;
	background: rgba(255,255,255,0.06) !important;
}
.btn.wallet:active { transform: translateY(0); }
.btn.wallet .price-icon { width: 14px; height: 14px; border-radius: 3px; opacity: 0.9; }
.btn.wallet .wallet-label { font-weight: 600; letter-spacing: .2px; }
.wallet-status { font-family: 'Inter', system-ui; font-size: 13px; color: #c9d4ff; min-height: 18px; }

/* Connected address badge */
.wallet-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.16);
	background: rgba(255,255,255,0.04);
	backdrop-filter: blur(6px);
}
.wallet-dot { width: 8px; height: 8px; border-radius: 999px; background: linear-gradient(180deg, #7c5cff, #7aa2ff); box-shadow: 0 0 12px rgba(124,92,255,0.35); }
.wallet-addr { font-family: 'Inter', ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace; letter-spacing: 0.3px; color: #e6ecff; }

/* Animations */
.radial-halo, .grid, .noise { display: none; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Reduced motion */
.reduce-motion .hero-img { animation: none; }
.reduce-motion .radial-halo { animation: none; }
.reduce-motion .logo-wrap::before { animation: none; }

/* Responsive tweaks */
@media (max-width: 640px) {
	.cta-wrap { flex-direction: column; }
	.btn { width: 100%; }
	.arrow-btn { width: 56px; height: 56px; border-width: 1.5px; background: rgba(0,0,0,0.5); box-shadow: 0 10px 26px rgba(0,0,0,0.5); }
	.nav-arrows { padding: 0 10px; top: 65%; }
	.hero { overflow: visible; }
	.about .about-content,
	.market-content,
	.mechanisms-content,
	.products-content,
	.roadmap-content,
	.contact-content,
	.tech-content { padding: 32px 16px; justify-content: flex-start; }
	.about-title, .market-title, .mechanisms-title, .products-title, .roadmap-title, .contact-title, .tech-title { font-size: clamp(24px, 8.5vw, 40px); margin-top: env(safe-area-inset-top, 12px); }
	.brand-mark { opacity: 0.1; }
}


