/* CSS Variables - Light Mode with Dark Purple Accent */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --bg-card: #ffffff;
    --bg-card-hover: #fafafa;
    --text-primary: #374151;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --accent: #4c1d95;
    --accent-hover: #5b21b6;
    --accent-light: rgba(76, 29, 149, 0.06);
    --border-color: #e5e7eb;
    --border-subtle: #f3f4f6;
    --gradient-accent: linear-gradient(135deg, #4c1d95 0%, #6b21a8 100%);
    --gradient-dark: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    --glow-accent: rgba(76, 29, 149, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Banner */
.top-banner {
    background: var(--gradient-accent);
    padding: 10px 0;
    text-align: center;
}

.banner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.banner-divider {
    opacity: 0.5;
}

.banner-arrow {
    width: 16px;
    height: 16px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent);
}

.btn-launch {
    background: var(--accent);
    color: var(--bg-primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-launch:hover {
    background: var(--accent-hover);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: #18181b;
    min-height: 85vh;
}


.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
    color: #ffffff;
}

.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    background: transparent;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #f5f5f5;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--bg-tertiary);
    border-color: var(--text-muted);
}


/* Section Label */
.section-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.problem-content {
    max-width: 900px;
}

.problem-title {
    font-size: clamp(24px, 3.5vw, 34px);
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 28px;
}

.problem-intro {
    margin-bottom: 40px;
    padding: 24px;
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
}

.problem-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.problem-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.problem-conclusion {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: var(--bg-primary);
}

.solution-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 14px;
}

.solution-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.solution-breakthrough {
    margin-bottom: 48px;
    padding: 28px;
    background: var(--accent-light);
    border-radius: 12px;
    border: 1px solid rgba(76, 29, 149, 0.15);
}

.solution-breakthrough p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--text-muted);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Issuance Section */
.issuance {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.issuance-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 14px;
}

.issuance-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.65;
    margin-bottom: 56px;
}

.issuance-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 20px;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 0 16px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 16px;
}

.step h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin-top: 24px;
    flex-shrink: 0;
}

.erc1155-callout {
    margin-top: 64px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.erc1155-callout h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.erc1155-callout p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Assets Section */
.assets {
    padding: 100px 0;
    background: var(--bg-primary);
}

.assets-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 48px;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.asset-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: block;
}

.asset-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.asset-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--bg-primary);
}

.asset-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.asset-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.asset-considerations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.asset-considerations span {
    font-size: 12px;
    padding: 6px 12px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: 6px;
    font-weight: 500;
}

/* Markets Section */
.markets {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.markets-content {
    max-width: 800px;
}

.markets-title {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 20px;
}

.markets-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.markets-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.market-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.market-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

.ownership-recognition {
    margin-top: 48px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.ownership-recognition h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.ownership-recognition p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Token Section */
.token {
    padding: 100px 0;
    background: var(--bg-primary);
}

.token-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 14px;
}

.token-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.65;
    margin-bottom: 40px;
}

.token-architecture {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.token-type {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.token-type h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.token-type p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.token-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.token-card:hover {
    border-color: var(--text-muted);
}

.token-card.featured {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
    grid-column: span 2;
}

.token-card.featured .token-number {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-primary);
}

.token-card.featured h3 {
    color: var(--bg-primary);
}

.token-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.token-number {
    width: 36px;
    height: 36px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.token-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.token-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #18181b;
    color: #f5f5f5;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.cta .btn-primary:hover {
    background: var(--bg-tertiary);
}

.cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--bg-primary);
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Section Title (generic) */
.section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.testimonial-wrapper {
    max-width: 800px;
}

.testimonial-card {
    margin-bottom: 40px;
}

.testimonial-quote {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 32px;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
}

.author-title {
    color: var(--text-muted);
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-progress {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    border-radius: 1px;
    margin-right: 24px;
}

.progress-bar {
    width: 33%;
    height: 100%;
    background: var(--accent);
    border-radius: 1px;
}

.testimonial-nav {
    display: flex;
    gap: 8px;
}

/* Chain Section */
.chain {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.chain .container {
    position: relative;
    z-index: 1;
}

.chain-content {
    max-width: 700px;
}

.chain-title {
    font-size: clamp(24px, 3.5vw, 34px);
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 28px;
}

.chain-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
}

.chain-lines {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.chain-lines .line {
    width: 300px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
}

.chain-lines .line:nth-child(2) {
    width: 400px;
    margin-left: 50px;
}

.chain-lines .line:nth-child(3) {
    width: 250px;
    margin-left: 100px;
}

.chain-lines .line:nth-child(4) {
    width: 350px;
    margin-left: 25px;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--text-muted);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: var(--bg-primary);
}

.partners-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partners-text {
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Insights Section */
.insights {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.insights-header {
    margin-bottom: 48px;
}

.insights-tabs {
    display: flex;
    gap: 24px;
}

.tab-btn {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--text-secondary);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    display: block;
}

.insight-card:hover {
    border-color: var(--text-muted);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.insight-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: block;
}

.insight-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
}

.insights-footer {
    text-align: center;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: var(--bg-primary);
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.newsletter-form {
    margin-bottom: 32px;
}

.input-wrapper {
    display: flex;
    gap: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.input-wrapper .btn-primary {
    padding: 12px 24px;
}

.input-wrapper .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.newsletter-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--accent-light);
    color: var(--accent);
    border-color: var(--accent);
}

.social-link.small {
    width: 32px;
    height: 32px;
}

/* Footer */
footer {
    background: #18181b;
    color: #e5e5e5;
    padding: 80px 0 40px;
}

.footer-main {
    margin-bottom: 60px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--bg-primary);
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-bottom: 40px;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 900px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-left span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-left a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-left a:hover {
    color: var(--bg-primary);
}

.footer-right {
    display: flex;
    gap: 12px;
}

.footer-right .social-link {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.footer-right .social-link:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .token-card.featured {
        grid-column: span 1;
    }
    
    .hero {
        min-height: 80vh;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-right {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-video {
        order: -1;
    }
    
    .hero-canvas {
        width: 100vw;
        height: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
    }

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

    .problem-title {
        font-size: 28px;
    }

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

    .issuance-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

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

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

    .token-card.featured {
        grid-column: span 1;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        text-align: center;
    }

    .testimonial-quote {
        font-size: 24px;
    }

    .chain-title {
        font-size: 24px;
    }

    .chain-visual {
        display: none;
    }

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

    .insights-tabs {
        flex-direction: column;
        gap: 8px;
    }

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

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

    .input-wrapper .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
    }

    .footer-left {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .problem-title,
    .solution-title,
    .issuance-title,
    .assets-title,
    .markets-title,
    .token-title,
    .cta-title,
    .content-title {
        font-size: 24px;
    }

    .newsletter-title {
        font-size: 24px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-hero-title {
        font-size: 28px;
    }
}

/* ==========================================
   COOKIE NOTICE
   ========================================== */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #18181b;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-notice.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-notice-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-notice p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.cookie-notice-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    transition: color 0.2s;
    white-space: nowrap;
}

.cookie-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.cookie-accept {
    background: var(--accent);
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-accept:hover {
    background: var(--accent-hover);
}

@media (max-width: 768px) {
    .cookie-notice-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-notice-actions {
        justify-content: center;
    }
}

/* ==========================================
   INNER PAGE STYLES
   ========================================== */

/* Active Nav Link */
.nav-link.active {
    color: var(--accent);
}

/* Page Hero (compact hero for inner pages) */
.page-hero {
    padding: 80px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.page-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 800px;
}

.page-hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
}

.content-section.bg-white {
    background: var(--bg-primary);
}

.content-section.bg-gray {
    background: var(--bg-secondary);
}

.content-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 14px;
}

.content-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.65;
    margin-bottom: 48px;
}

.content-intro {
    margin-bottom: 48px;
    padding: 24px;
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
}

.content-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
}

/* Pillar Grid (How It Works overview) */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: var(--text-muted);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.pillar-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Flow (Issuance steps - vertical) */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 48px;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-color);
}

.process-step:last-child {
    border-bottom: none;
}

.process-step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.process-step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Callout Box */
.callout-box {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.callout-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.callout-box p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Feature Grid (Operations) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--text-muted);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Distribution Grid */
.distribution-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.distribution-feature {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.distribution-feature:last-child {
    border-bottom: none;
}

.distribution-feature svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.distribution-feature h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.distribution-feature p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Jurisdiction Grid */
.jurisdiction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.jurisdiction-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.jurisdiction-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.jurisdiction-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.jurisdiction-list {
    list-style: none;
    padding: 0;
}

.jurisdiction-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.jurisdiction-list li:last-child {
    border-bottom: none;
}

.jurisdiction-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 14px;
}

/* Glossary Grid */
.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.glossary-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
}

.glossary-item h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent);
}

.glossary-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   ASSET CLASSES PAGE STYLES
   ========================================== */

/* Asset Detail Layout */
.asset-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}

.asset-detail-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.asset-detail-header .section-label {
    margin-bottom: 8px;
}

.asset-detail-header .content-title {
    margin-bottom: 0;
}

.asset-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    margin-top: 32px;
}

.detail-block {
    margin-bottom: 32px;
}

.detail-block:last-child {
    margin-bottom: 0;
}

.detail-block h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.detail-block p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Detail Sidebar */
.detail-specs {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}

.detail-specs h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

.detail-examples {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
}

.detail-examples h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.detail-examples ul {
    list-style: none;
    padding: 0;
}

.detail-examples li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.detail-examples li:last-child {
    border-bottom: none;
}

.detail-examples li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 14px;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th {
    background: var(--bg-secondary);
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

/* ==========================================
   TOKEN PAGE STYLES
   ========================================== */

/* Token Overview Grid */
.token-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.token-overview-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    position: relative;
}

.token-overview-card.asset-token {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.token-overview-card.asset-token .token-overview-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-primary);
}

.token-overview-card.asset-token h3 {
    color: var(--bg-primary);
}

.token-overview-card.asset-token p {
    color: rgba(255, 255, 255, 0.85);
}

.token-overview-card.asset-token .token-feature-list li {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.token-overview-card.asset-token .token-feature-list li::before {
    background: var(--bg-primary);
}

.token-overview-card.utility-token {
    background: var(--bg-card);
}

.token-overview-badge {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding: 6px 14px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 6px;
    margin-bottom: 20px;
}

.token-overview-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.token-overview-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.token-feature-list {
    list-style: none;
    padding: 0;
}

.token-feature-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.token-feature-list li:last-child {
    border-bottom: none;
}

.token-feature-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 16px;
}

/* Token Functions Grid */
.token-functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.token-function-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.token-function-card:hover {
    border-color: var(--text-muted);
}

.token-function-card.featured {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
    grid-column: span 2;
}

.token-function-card.featured .token-function-number {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-primary);
}

.token-function-card.featured h3 {
    color: var(--bg-primary);
}

.token-function-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.token-function-card.featured .detail-label {
    color: rgba(255, 255, 255, 0.6);
}

.token-function-card.featured .function-detail span:not(.detail-label) {
    color: var(--bg-primary);
}

.token-function-card.featured .token-function-details {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.token-function-number {
    width: 36px;
    height: 36px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.token-function-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.token-function-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.token-function-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.function-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.detail-label {
    color: var(--text-muted);
    font-weight: 500;
}

.function-detail span:not(.detail-label) {
    font-weight: 600;
    color: var(--text-primary);
}

/* Tokenomics Grid */
.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.tokenomics-allocation h3,
.tokenomics-details h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
}

.allocation-bars {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.allocation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.allocation-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.allocation-pct {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
}

.allocation-bar {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.allocation-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.allocation-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

.econ-principle {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.econ-principle:last-child {
    border-bottom: none;
}

.econ-principle h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.econ-principle p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Demand Grid */
.demand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.demand-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.demand-card:hover {
    border-color: var(--text-muted);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.demand-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.demand-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.demand-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

/* Mission Content */
.mission-content {
    max-width: 900px;
}

.mission-statement {
    margin-bottom: 64px;
}

.mission-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--accent);
}

.mission-statement p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.mission-statement p:last-child {
    margin-bottom: 0;
}

.mission-values h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.value-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
}

.value-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stack Grid */
.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.stack-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.stack-item:hover {
    border-color: var(--text-muted);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.stack-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
}

.stack-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stack-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--text-muted);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.team-avatar {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--bg-primary);
}

.team-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-cta {
    text-align: center;
    padding: 48px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.team-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 24px;
}

/* ==========================================
   CONTACT FORM STYLES
   ========================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(76, 29, 149, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
}

.contact-message {
    margin-top: 16px;
    font-size: 14px;
    text-align: center;
}

.contact-message.success {
    color: #16a34a;
}

.contact-message.error {
    color: #dc2626;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 16px;
}

.contact-info-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-card a:hover {
    color: var(--accent-hover);
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-social-links a {
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-social-links a:hover {
    color: var(--accent-hover);
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: row;
    }

    .contact-info-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-info {
        flex-direction: column;
    }
}

/* ==========================================
   RESOURCES PAGE STYLES
   ========================================== */

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.resource-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.resource-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.resource-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.resource-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.resource-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.resource-link-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.resource-link-text svg {
    flex-shrink: 0;
}

/* Community Grid */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.community-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.community-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.community-card svg {
    color: var(--text-secondary);
    margin-bottom: 20px;
    transition: color 0.2s;
}

.community-card:hover svg {
    color: var(--accent);
}

.community-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.community-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   INNER PAGE RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .token-function-card.featured {
        grid-column: span 1;
    }

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

    .asset-detail-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 48px;
    }

    .page-hero-title {
        font-size: 28px;
    }

    .content-section {
        padding: 64px 0;
    }

    .pillar-grid,
    .feature-grid,
    .jurisdiction-grid,
    .glossary-grid,
    .token-overview-grid,
    .token-functions-grid,
    .demand-grid,
    .values-grid,
    .stack-grid,
    .team-grid,
    .resources-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .resource-card {
        flex-direction: column;
    }

    .token-function-card.featured {
        grid-column: span 1;
    }

    .asset-detail-header {
        flex-direction: column;
    }

    .asset-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .distribution-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }
}
