:root {
    --bg-dark: #0a0a0a;
    --bg-card: #161616;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-primary: #3b82f6;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.05em;
}

.highlight {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid transparent;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.large {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    max-width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 100%;
    overflow: hidden;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 100%;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Terminal */
.terminal-window {
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    font-family: var(--font-mono);
    max-width: 100%;
    width: 100%;
}

.terminal-header {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.terminal-body {
    padding: 20px;
    color: #e0e0e0;
    font-size: 0.9rem;
    overflow-x: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.code-line {
    margin-bottom: 10px;
}

.prompt {
    color: var(--accent-primary);
    margin-right: 8px;
}

.code-output {
    color: var(--text-secondary);
    white-space: pre;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    text-align: left;
    font-family: var(--font-mono);
    word-wrap: normal;
    overflow-wrap: normal;
    line-height: 1.4;
}

/* Features */
.features {
    padding: 100px 0;
    background: #0f0f0f;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Technology Section */
.technology {
    padding: 100px 0;
}

.architecture-diagram {
    margin: 0 auto 4rem;
    text-align: center;
    max-width: 1000px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.arch-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-list {
    list-style: none;
    margin-top: 2rem;
}

.tech-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.tech-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.tech-list strong {
    color: var(--text-primary);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    background: #050505;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.2s;
}

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

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Block Explorer */
.explorer {
    padding: 100px 0;
    background: #0f0f0f;
}

.explorer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.blocks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.block-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.block-card:hover {
    border-color: var(--accent-primary);
    transform: translateX(5px);
}

.block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.block-height {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.block-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.block-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.block-detail {
    display: flex;
    flex-direction: column;
}

.block-detail-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.block-detail-value {
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    word-break: break-all;
}

.block-hash {
    font-size: 0.85rem;
    color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--glass-border);
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }

    .hero-text {
        order: 1;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-visual {
        order: 2;
        max-width: 100%;
        overflow: hidden;
    }

    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-sub {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        max-width: 100%;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        box-sizing: border-box;
    }

    /* Terminal */
    .terminal-window {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .terminal-body {
        font-size: 0.7rem;
        padding: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
        box-sizing: border-box;
    }

    .code-output {
        font-size: 0.65rem;
        white-space: pre-wrap;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    .code-line {
        font-size: 0.7rem;
        word-break: break-all;
    }

    /* Override large button class on mobile */
    .large {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* Sections */
    .features,
    .technology,
    .explorer {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Grid Layouts */
    .grid {
        grid-template-columns: 1fr;
    }

    .tech-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Block Explorer */
    .explorer-stats {
        grid-template-columns: 1fr;
    }

    .block-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .block-info {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    /* Touch Targets */
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card {
        padding: 1.5rem;
    }
}

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

    .hero {
        padding-top: 90px;
        padding-bottom: 30px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .terminal-body {
        font-size: 0.65rem;
        padding: 10px;
    }

    .code-output {
        font-size: 0.6rem;
    }

    .code-line {
        font-size: 0.65rem;
    }

    .hero-actions a {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .block-detail-value {
        font-size: 0.8rem;
    }
}

/* Glow Effect */
.glow-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* ========== sSOQ INTEGRATION STYLES ========== */

/* Scam Alert Banner */
.scam-alert {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 60px;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.4s ease-out;
}

.scam-alert.hidden {
    display: none;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.alert-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.alert-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.alert-text code {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 13px;
}

.alert-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.alert-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.alert-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* sSOQ Section */
.ssoq {
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ssoq-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.ssoq-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ssoq h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ssoq-tagline {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
}

.ssoq-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
    max-width: 850px;
    margin: 0 auto;
}

.ssoq-subtitle strong {
    color: var(--text-primary);
}

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

.ssoq-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.ssoq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--accent-secondary);
}

.ssoq-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.ssoq-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.ssoq-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
}

.ssoq-cta {
    background: var(--bg-card);
    border: 2px solid var(--accent-secondary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.ssoq-contract {
    margin-bottom: 32px;
}

.contract-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.contract-value code {
    background: rgba(139, 92, 246, 0.1);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    color: var(--accent-secondary);
    font-family: var(--font-mono);
}

.contract-warning {
    font-size: 12px;
    color: #ff6b6b;
    font-style: italic;
}

.copy-btn {
    background: var(--accent-secondary);
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: opacity 0.2s ease;
}

.copy-btn:hover {
    opacity: 0.8;
}

.ssoq-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.ssoq-disclaimer-box {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.ssoq-disclaimer {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: left;
}

.ssoq-disclaimer strong {
    color: #ff6b6b;
}

.forward-looking-notice {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
    font-style: italic;
}

/* Legal Footer */
.footer-legal {
    border-top: 1px solid var(--glass-border);
    padding: 40px;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.legal-disclaimers,
.intellectual-property {
    margin-bottom: 32px;
}

.legal-disclaimers h4,
.intellectual-property h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
    display: inline-block;
}

.legal-disclaimers p,
.intellectual-property p {
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-disclaimers strong {
    color: #ff6b6b;
    opacity: 1;
}

.intellectual-property a {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-primary);
}

.intellectual-property a:hover {
    border-bottom-style: solid;
}

/* Mobile Responsiveness for sSOQ */
@media (max-width: 768px) {
    .alert-content {
        flex-direction: column;
        text-align: center;
    }

    .alert-icon {
        font-size: 32px;
    }

    .ssoq {
        padding: 60px 0;
    }

    .ssoq h2 {
        font-size: 36px;
    }

    .ssoq-tagline {
        font-size: 20px;
    }

    .ssoq-actions {
        flex-direction: column;
    }

    .ssoq-actions .btn-primary,
    .ssoq-actions .btn-secondary {
        width: 100%;
    }
}
/* sSOQ Disclaimer Grid */
.ssoq-disclaimer-box h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.disclaimer-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid #ff6b6b;
}

.disclaimer-item strong {
    display: block;
    color: #ff6b6b;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimer-item p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Legal Footer Grid */
.footer-legal h4 {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

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

.legal-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    border-top: 2px solid var(--accent-primary);
}

.legal-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-item p {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.legal-footer-meta {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    text-align: center;
}

.legal-footer-meta p {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    opacity: 0.7;
}

/* Copy button refinement */
.copy-btn {
    background: var(--accent-secondary);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: white;
    transition: opacity 0.2s ease;
}

/* Contract section spacing */
.ssoq-contract {
    margin: 40px 0;
}

/* Actions spacing */
.ssoq-actions {
    margin-bottom: 40px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
}
