/* QryptoNox Website Styles — Updated June 2026 */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --accent-red: #dc2626;
    --text-dark: #1f2937;
    --text-mid: #4b5563;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --success: #10b981;
    --radius: 10px;
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text-dark); background: var(--bg-white); line-height: 1.6; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar { background: var(--bg-white); border-bottom: 1px solid var(--border); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 1.4rem; font-weight: 800; color: var(--primary); text-decoration: none; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a { color: var(--text-mid); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }

/* URGENCY BANNER */
.urgency-banner { background: #fef2f2; border-bottom: 1px solid #fecaca; padding: 0.6rem 1rem; text-align: center; font-size: 0.88rem; color: var(--accent-red); font-weight: 500; }
.urgency-banner a { color: var(--accent-red); font-weight: 700; text-decoration: underline; }

/* BUTTONS */
.cta-button { background: var(--primary); color: white; padding: 0.55rem 1.3rem; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; display: inline-block; }
.cta-button:hover { background: var(--primary-dark); transform: translateY(-1px); }
.cta-button-large { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 0.9rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.05rem; display: inline-block; transition: all 0.25s; box-shadow: 0 4px 14px rgba(30,64,175,0.3); }
.cta-button-large:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,64,175,0.4); }
.cta-button-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); padding: 0.85rem 1.8rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1rem; display: inline-block; transition: all 0.2s; }
.cta-button-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.linkedin-button { background: var(--primary); color: white; padding: 0.75rem 1.6rem; border-radius: 6px; text-decoration: none; font-weight: 600; display: inline-block; margin-top: 1rem; transition: all 0.2s; }
.linkedin-button:hover { background: var(--primary-dark); }

/* BADGES */
.hero-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; justify-content: center; }
.badge { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3); padding: 0.3rem 0.85rem; border-radius: 20px; font-size: 0.8rem; font-weight: 500; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 4.5rem 0 3.5rem; text-align: center; }
.hero h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 1.25rem; line-height: 1.2; letter-spacing: -0.5px; }
.hero-subtitle { font-size: 1.1rem; opacity: 0.93; max-width: 780px; margin: 0 auto 2rem; line-height: 1.75; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; }
.hero-stat span { font-size: 0.8rem; opacity: 0.8; }

/* REGULATORY TRIGGERS */
.reg-triggers { padding: 4rem 0; background: var(--bg-light); }
.reg-triggers h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2.5rem; }
.reg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.reg-card { background: white; border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); }
.reg-logo { font-size: 1rem; font-weight: 800; color: var(--primary); background: #eff6ff; display: inline-block; padding: 0.3rem 0.8rem; border-radius: 6px; margin-bottom: 0.75rem; }
.reg-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.reg-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.reg-status { display: inline-block; margin-top: 1rem; font-size: 0.78rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 20px; }
.reg-status.urgent { background: #fef2f2; color: var(--accent-red); }
.reg-status.active { background: #f0fdf4; color: #15803d; }

/* FEATURES */
.features { padding: 4rem 0; background: var(--bg-white); }
.features h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2.5rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.feature-card { background: var(--bg-light); padding: 1.75rem; border-radius: var(--radius); border: 1px solid var(--border); transition: all 0.25s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: #bfdbfe; }
.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--primary); }
.feature-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* COMPARISON TABLE */
.why-choose { padding: 4rem 0; background: var(--bg-light); }
.why-choose h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2.5rem; }
.comparison-table { max-width: 860px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: white; }
.comparison-header { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; background: var(--primary); color: white; font-weight: 600; font-size: 0.9rem; }
.comparison-header > div { padding: 1rem; text-align: center; }
.comparison-row { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.comparison-row:last-child { border-bottom: none; }
.comp-feature { padding: 0.85rem 1rem; font-weight: 500; color: var(--text-dark); background: var(--bg-light); }
.col-them { padding: 0.85rem 1rem; text-align: center; color: var(--text-light); }
.col-us { padding: 0.85rem 1rem; text-align: center; }
.col-us.highlight { color: var(--primary); font-weight: 600; }

/* FOUNDER */
.founder { padding: 4rem 0; background: var(--bg-white); }
.founder h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2.5rem; }
.founder-content { max-width: 860px; margin: 0 auto; }
.founder-text blockquote { background: var(--bg-light); border-left: 4px solid var(--accent); padding: 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; font-size: 1.1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.founder-text blockquote footer { margin-top: 0.75rem; font-style: normal; font-weight: 600; font-size: 0.9rem; color: var(--text-mid); }
.founder-text p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; color: var(--text-mid); }
.three-answers { background: var(--bg-light); padding: 1.5rem; border-radius: var(--radius); margin: 1.5rem 0; }
.three-answers p { margin-bottom: 0.75rem; font-weight: 600; }
.three-answers ul { list-style: none; padding: 0; }
.three-answers li { padding: 0.5rem 0 0.5rem 1.5rem; position: relative; font-size: 0.95rem; color: var(--text-mid); }
.three-answers li:before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

/* HNDL SECTION */
.hndl-section { padding: 4rem 0; background: #0f172a; color: white; }
.hndl-section h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2.5rem; }
.hndl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.hndl-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.75rem; }
.hndl-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.hndl-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; color: #93c5fd; }
.hndl-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.75; }

/* ASSESSMENT FORM */
.assessment-form { padding: 4rem 0; background: var(--bg-light); }
.assessment-form h2 { text-align: center; font-size: 1.9rem; margin-bottom: 0.75rem; }
.section-intro { text-align: center; color: var(--text-light); max-width: 640px; margin: 0 auto 2rem; font-size: 0.95rem; line-height: 1.7; }
.tally-embed-container { max-width: 860px; margin: 0 auto; background: white; padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

/* FAQ */
.faq { padding: 4rem 0; background: var(--bg-white); }
.faq h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2.5rem; }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem; transition: all 0.2s; }
.faq-item:hover { border-color: #bfdbfe; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.faq-item h3 { font-size: 1rem; margin-bottom: 0.6rem; color: var(--primary); }
.faq-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

/* ABOUT PAGE */
.about-hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 4rem 0; text-align: center; }
.about-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.25; }
.mission { padding: 4rem 0; }
.mission-content { max-width: 860px; margin: 0 auto; }
.mission-content p.lead { font-size: 1.2rem; font-weight: 500; color: var(--primary); margin-bottom: 1.5rem; line-height: 1.7; }
.mission-content p { font-size: 1rem; line-height: 1.85; margin-bottom: 1.25rem; color: var(--text-mid); }
.key-features { padding: 4rem 0; background: var(--bg-light); }
.key-features h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2.5rem; }
.features-grid-about { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card-about { background: white; padding: 2rem; border-radius: var(--radius); text-align: center; border: 1px solid var(--border); }
.feature-icon-large { font-size: 3rem; margin-bottom: 1rem; }
.feature-card-about h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--primary); }
.feature-card-about p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* TIMELINE */
.market-context { padding: 4rem 0; background: var(--bg-white); }
.market-context h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2.5rem; }
.timeline-list { max-width: 760px; margin: 0 auto; }
.timeline-item { display: flex; gap: 1.5rem; margin-bottom: 1.25rem; padding: 1.25rem; border-radius: var(--radius); border: 1px solid var(--border); }
.timeline-item.highlighted { background: #eff6ff; border-color: #bfdbfe; }
.timeline-date { min-width: 110px; font-weight: 700; font-size: 0.85rem; color: var(--primary); padding-top: 2px; }
.timeline-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* CONTACT */
.contact-section { padding: 4rem 0; background: var(--bg-light); }
.contact-section h2 { text-align: center; font-size: 1.9rem; margin-bottom: 0.75rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; margin-top: 2.5rem; }
.contact-info h3 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--primary); }
.contact-details p { margin-bottom: 0.75rem; font-size: 0.95rem; }
.contact-details a { color: var(--primary); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.response-time { background: white; padding: 1.25rem; border-radius: var(--radius); margin: 1.25rem 0; }
.response-time p { color: var(--success); font-weight: 500; font-size: 0.9rem; margin-bottom: 0.4rem; }
.legal-info { margin-top: 1rem; padding: 1rem; background: #eff6ff; border-radius: var(--radius); }
.legal-info p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 0.3rem; }

/* FOOTER */
.footer { background: var(--bg-dark); color: white; padding: 3rem 0 1.25rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-info p { margin-bottom: 0.4rem; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.footer-info a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-info a:hover { color: white; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; text-align: center; color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* MOBILE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 1.75rem; }
    .hero-stats { gap: 1.25rem; }
    .features-grid, .reg-grid, .hndl-grid, .features-grid-about { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.8rem; }
    .footer-content, .contact-grid { grid-template-columns: 1fr; }
    .timeline-item { flex-direction: column; gap: 0.5rem; }
    .timeline-date { min-width: auto; }
    .hero-ctas { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr 1.2fr; }
    .hero-badges { justify-content: center; }
    .badge { font-size: 0.72rem; }
}
