
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #070708;
    --bg-card: rgba(16, 16, 20, 0.6);
    --border-color: rgba(212, 175, 55, 0.12);
    --border-hover: rgba(212, 175, 55, 0.3);

    --gold: #D4AF37;
    --gold-bright: #F5D76E;
    --gold-glow: rgba(212, 175, 55, 0.2);
    --teal: #00F2FE;
    --teal-glow: rgba(0, 242, 254, 0.15);

    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 900px;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B0B0D;
}
::-webkit-scrollbar-thumb {
    background: #252528;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(7, 7, 8, 0.7);
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(7, 7, 8, 0.9);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.logo span {
    color: var(--gold);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 16px;
    color: #000;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

nav a:hover {
    color: var(--gold);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    z-index: -1;
    transition: var(--transition);
}

.header-cta:hover {
    color: #000;
}

.header-cta:hover::before {
    width: 100%;
}

.hero {
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold-bright);
    text-transform: uppercase;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 30%, #e0e0e0 70%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

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

.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.algo-terminal-card {
    width: 100%;
    max-width: 440px;
    background: rgba(14, 14, 18, 0.85);
    border: 1px solid var(--border-hover);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.algo-terminal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--teal), transparent);
}

.algo-terminal-card:hover {
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(212, 175, 55, 0.2);
}

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

.terminal-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-beacon {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
    animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.status-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.terminal-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-bright);
    border: 1px solid rgba(212, 175, 55, 0.25);
    letter-spacing: 0.06em;
}

.terminal-symbol-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.terminal-symbol {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}

.symbol-tag {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold);
    line-height: 1;
}

.terminal-timeframe {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.terminal-price-box {
    text-align: right;
    flex-shrink: 0;
}

.terminal-price {
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--gold-bright);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.terminal-change {
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}
.terminal-change.positive { color: #10B981; }

.terminal-chart-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.terminal-chart-wrapper canvas {
    width: 100% !important;
    display: block;
}

.chart-signal-pulse {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    color: #10B981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 2px 8px;
    border-radius: 20px;
    animation: signalFade 2.5s infinite;
}

@keyframes signalFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.terminal-log {
    background: rgba(7, 7, 9, 0.6);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.log-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.log-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.log-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-family: monospace;
    color: var(--text-secondary);
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.log-row.new-entry {
    animation: newRowFlash 0.6s ease;
}

@keyframes newRowFlash {
    0% { background: rgba(212, 175, 55, 0.25); transform: scale(1.02); }
    100% { background: rgba(255, 255, 255, 0.02); transform: scale(1); }
}

.log-type {
    font-weight: 700;
    color: #10B981;
}

.log-profit {
    font-weight: 700;
    color: var(--gold-bright);
}

.terminal-footer {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.spec-chip {
    font-size: 11px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.spec-chip i {
    color: var(--gold);
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-val.gold-text {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

section {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 40%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.explainer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.explainer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, var(--teal) 100%);
}

.explainer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.explainer-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.explainer-header p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 850px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.explainer-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.explainer-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px 20px;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.explainer-step:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.02);
    transform: translateY(-4px);
}

.explainer-step .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}

.explainer-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

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

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.01);
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: grid;
    place-items: center;
    color: var(--gold);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.chart-container-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 40px;
}

.chart-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.chart-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.chart-tab:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.08);
}

.chart-tab.active {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    color: var(--gold-bright);
}

.chart-wrapper {
    height: 420px;
    position: relative;
    width: 100%;
}

.chart-panel {
    display: none;
}

.chart-panel.active {
    display: block;
}

.charts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.metrics-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-name {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.anchor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.anchor-card {
    background: rgba(16, 16, 20, 0.7);
    border: 1px solid var(--border-color);
    padding: 28px 24px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.anchor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: var(--transition);
}

.anchor-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

.anchor-card:hover::before {
    transform: scaleX(1);
}

.anchor-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.anchor-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.25);
    line-height: 1;
}

.anchor-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: grid;
    place-items: center;
    color: var(--gold-bright);
    font-size: 18px;
}

.anchor-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.anchor-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.anchor-tag {
    font-size: 11px;
    font-weight: 600;
    color: #10B981;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}

.anchor-tag.gold {
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.25);
}

.simple-contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.simple-contact-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 12px auto 0;
    text-align: center;
}

.simple-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.contact-card-box {
    background: rgba(16, 16, 20, 0.8);
    border: 1px solid var(--border-color);
    padding: 32px 28px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.contact-card-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: var(--transition);
}

.contact-card-box:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.1);
}

.contact-card-box:hover::before {
    transform: scaleX(1);
}

.contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 24px;
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.contact-icon.email {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-bright);
}

.contact-type-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.contact-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    word-break: break-all;
}

.contact-action-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.contact-card-box:hover .contact-action-btn {
    gap: 12px;
    color: var(--gold);
}

@media (max-width: 768px) {
    .simple-contact-grid {
        grid-template-columns: 1fr;
    }
}
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-status {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-status.success {
    color: #10B981;
}

.form-status.error {
    color: #EF4444;
}

.disclosures {
    background: #030304;
    padding: 64px 0;
    font-size: 12px;
    color: var(--text-muted);
}

.disclosures-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.disclosures-text p:last-child {
    margin-bottom: 0;
}

footer {
    background: #000000;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

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

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

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

@keyframes heartbeat {
    0%, 100% { transform: scale(1);   opacity: 0.5; }
    50%       { transform: scale(1.15); opacity: 0.85; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.ticker-bar {
    background: rgba(212, 175, 55, 0.04);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    gap: 48px;
    animation: ticker-scroll 30s linear infinite;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    text-transform: uppercase;
}
.ticker-item .ticker-name { color: var(--gold); }
.ticker-item .ticker-up   { color: #10B981; }
.ticker-item .ticker-down { color: #EF4444; }

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stat-card, .anchor-card, .feature-item, .explainer-step {
    position: relative;
    overflow: hidden;
}
.stat-card::after,
.anchor-card::after,
.feature-item::after,
.explainer-step::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 60%;
    height: 220%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(212, 175, 55, 0.07) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: none;
    opacity: 0;
    pointer-events: none;
}
.stat-card:hover::after,
.anchor-card:hover::after,
.feature-item:hover::after,
.explainer-step:hover::after {
    animation: shimmer-sweep 0.6s ease forwards;
}
@keyframes shimmer-sweep {
    0%   { left: -60%; opacity: 1; }
    100% { left: 120%;  opacity: 0; }
}

.btn-primary {
    animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%,100% { box-shadow: 0 4px 20px rgba(212,175,55,0.15); }
    50%      { box-shadow: 0 4px 32px rgba(212,175,55,0.40); }
}

.stat-val {
    transition: transform 0.3s ease;
}
.stat-card:hover .stat-val {
    transform: scale(1.06);
}

.section-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    border-radius: 2px;
    margin: 12px auto 0;
    animation: line-grow 1s ease forwards;
    transform-origin: left;
}
@keyframes line-grow {
    from { width: 0; }
    to   { width: 48px; }
}

.cursor-spotlight {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: transform 0.08s linear;
}

.hero-title span.underline-anim {
    position: relative;
    display: inline-block;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
}
.hero-title span.underline-anim::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    border-radius: 2px;
    animation: underline-reveal 1.5s 0.8s ease forwards;
}
@keyframes underline-reveal {
    to { width: 100%; }
}

.badge {
    animation: badge-drop 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes badge-drop {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.chart-container-card {
    animation: none; 
}

.gold-ring:nth-child(1) { animation-duration: 18s; }
.gold-ring:nth-child(2) { animation-duration: 26s; animation-direction: reverse; }
.gold-ring:nth-child(3) { animation-duration: 12s; }

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .badge {
        align-self: center;
    }

    .hero-description {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .explainer-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .charts-row {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 640px) {
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-card {
        padding: 12px 10px;
    }

    .stat-val {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

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

    .explainer-steps {
        grid-template-columns: 1fr;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nav-wrapper {
        justify-content: center;
        height: auto;
        padding: 16px 0;
    }

    nav ul {
        display: none; 
    }

    .header-cta {
        display: none; 
    }
    
    .chart-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .disclosures {
        padding: 32px 0;
    }

    footer {
        padding: 24px 0;
    }
}
