/* ToInvested.com — Shared Design System v2.1 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --gold: #C9A84C; --gold-l: #E8C96A; --gold-d: #A8893A;
  --bg: #080A0E; --surface: #0F1218; --card: #141820; --card2: #1A1F2A;
  --border: rgba(201,168,76,0.2); --border2: rgba(255,255,255,0.06);
  --text: #F0EDE6; --sub: #D0C9C0; --muted: #A8A098;
  --green: #22C55E; --red: #EF4444; --amber: #F59E0B;
  --white: #F0EDE6; --gray-100: #1A1F2A; --gray-800: #D0C9C0;
  --r: 12px; --r2: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', 'DM Sans', system-ui, sans-serif; font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-l); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2rem,5vw,3.2rem); }
h2 { font-size: clamp(1.5rem,3.5vw,2.2rem); }
h3 { font-size: clamp(1.1rem,2.5vw,1.5rem); }
p { color: var(--sub); }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--gold); color: #080A0E; padding: 8px 16px; font-weight: 700; z-index: 9999; border-radius: 0 0 8px 0; transition: top .2s; }
.skip-link:focus { top: 0; }
.market-ticker { background: var(--surface); border-bottom: 1px solid var(--border); padding: 8px 24px; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.ticker-item { display: flex; gap: 6px; align-items: center; }
.ticker-value { color: var(--gold); font-weight: 700; }
nav { position: static; }
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(8,10,14,0.96); border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { color: var(--gold); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.5px; flex-shrink: 0; }
.nav-logo span { color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a, .nav-links li a { color: var(--sub); font-size: 13px; font-weight: 500; padding: 7px 12px; border-radius: 6px; transition: color .15s; white-space: nowrap; }
.nav-links a:hover, .nav-links li a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-cta { background: var(--gold) !important; color: #080A0E !important; font-weight: 700 !important; padding: 9px 18px !important; border-radius: 8px !important; }
.nav-cta:hover { background: var(--gold-l) !important; }
.nav-toggle, .nav-menu-btn { display: none; background: none; border: 1px solid var(--border); color: var(--sub); padding: 8px 10px; border-radius: 8px; cursor: pointer; font-size: 18px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--sub); border-radius: 2px; transition: .2s; }
@media(max-width:900px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(8,10,14,.98); border-bottom: 1px solid var(--border); flex-direction: column; padding: 12px 16px 20px; gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-links li a { width: 100%; padding: 12px 14px; }
  .nav-toggle, .nav-menu-btn { display: flex; }
}
body { padding-top: 64px; }
.market-ticker { position: relative; z-index: 1001; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.hero { padding: 96px 0 72px; text-align: center; min-height: 80vh; display: flex; align-items: center; }
.hero .container { width: 100%; }
.hero h1 { max-width: 820px; margin: 0 auto 20px; }
.hero h1 span, .hero-accent { color: var(--gold); }
.hero p, .hero-sub { font-size: 1.1rem; color: var(--sub); max-width: 680px; margin: 0 auto 36px; }
.hero-btns, .hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,.08); border: 1px solid var(--border); color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 16px; border-radius: 24px; margin-bottom: 20px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); display: inline-block; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-trust-strip { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; list-style: none; margin: 16px auto 0; max-width: 780px; }
.hero-trust-strip li { color: rgba(240,237,230,.5); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.hero-trust-strip li::before { content: '\2713'; color: var(--green); font-size: 10px; }
.hero-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; margin: 28px auto 0; max-width: 720px; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.stat { flex: 1; min-width: 100px; padding: 20px 16px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--gold); display: block; line-height: 1.1; }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .04em; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--r); font-size: 15px; font-weight: 700; cursor: pointer; border: none; transition: all .2s; text-decoration: none; white-space: nowrap; min-height: 44px; touch-action: manipulation; font-family: inherit; }
.btn-gold { background: var(--gold); color: #080A0E; }
.btn-gold:hover { background: var(--gold-l); color: #080A0E; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%); color: white; }
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); color: white; }
.btn-secondary { background: rgba(255,255,255,.95); color: #1e293b; border: 2px solid rgba(255,255,255,.3); }
.btn-secondary:hover { background: white; color: #1e293b; transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--sub); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--sub); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 28px; }
.card:hover { border-color: rgba(201,168,76,.4); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media(max-width:900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .grid-3,.grid-2 { grid-template-columns: 1fr; } }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { display: block; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.section-intro { color: var(--sub); font-size: 1.05rem; max-width: 640px; margin: 0 0 40px; line-height: 1.7; }
.section-cta-inline { margin-top: 40px; text-align: center; }
.section-problem { padding: 80px 0; background: var(--surface); text-align: center; }
.section-problem h2 { max-width: 720px; margin: 0 auto 24px; }
.problem-stat { color: var(--sub); font-size: 1.05rem; max-width: 640px; margin: 0 auto 16px; }
.section-how { padding: 80px 0; }
.steps-list { list-style: none; margin: 40px 0 0; padding: 0; display: flex; flex-direction: column; gap: 32px; max-width: 680px; }
.step { display: flex; gap: 24px; align-items: flex-start; position: relative; }
.step-number { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: rgba(201,168,76,.12); border: 2px solid var(--border); color: var(--gold); font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; }
.steps { position: relative; padding-left: 40px; }
.steps::before { content:''; position:absolute; left:12px; top:0; bottom:0; width:2px; background: repeating-linear-gradient(to bottom, var(--border) 0, var(--border) 6px, transparent 6px, transparent 12px); }
.step-num { position:absolute; left:-40px; top:0; width:26px; height:26px; border-radius:50%; background:var(--gold); color:#080A0E; font-size:12px; font-weight:800; display:flex; align-items:center; justify-content:center; }
.section-tools { padding: 80px 0; }
.tools-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.tool-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 28px; text-decoration: none; color: inherit; transition: border-color .2s, transform .2s; }
.tool-card:hover { border-color: rgba(201,168,76,.5); transform: translateY(-2px); color: inherit; }
.tool-card--featured { border-color: var(--gold); background: linear-gradient(160deg, rgba(201,168,76,.06) 0%, var(--card) 50%); }
.tool-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.tool-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.tool-card p { font-size: 13px; color: var(--muted); margin: 0 0 16px; flex: 1; }
.tool-link { font-size: 13px; font-weight: 700; color: var(--gold); margin-top: auto; }
@media(max-width:900px) { .tools-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .tools-grid { grid-template-columns: 1fr; } }
.resource-card { display: flex; flex-direction: column; gap: 8px; background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 24px; text-decoration: none; transition: border-color .2s, transform .2s; }
.resource-card:hover { border-color: rgba(201,168,76,.5); transform: translateY(-2px); }
.r-icon { font-size: 1.8rem; }
.r-title { font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.r-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.resources-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }
@media(max-width:900px) { .resources-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .resources-grid { grid-template-columns: 1fr; } }
.stats-row { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.stat-item { flex: 1; padding: 28px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--gold); display: block; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
.analyzer-widget { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; max-width: 680px; margin: 0 auto; }
.input-row { display: flex; gap: 10px; margin-bottom: 12px; }
.input-row input, .input-row select { flex: 1; }
.form-input { width: 100%; background: var(--surface); border: 1px solid var(--border2); border-radius: 8px; color: #fff; font-size: 15px; padding: 12px 16px; font-family: inherit; transition: border-color .15s; }
.form-input::placeholder { color: var(--muted); }
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 6px; }
.form-group { margin-bottom: 16px; }
.analyze-btn { width: 100%; background: var(--gold); color: #080A0E; font-size: 16px; font-weight: 800; padding: 16px; border: none; border-radius: 10px; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; }
.analyze-btn:hover { background: var(--gold-l); transform: translateY(-1px); }
.result-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; margin-top: 24px; display: none; }
.result-box.visible { display: block; }
.result-verdict { font-size: 1.1rem; font-weight: 700; }
.verdict-yes { color: var(--green); }
.verdict-no { color: var(--red); }
.verdict-maybe { color: var(--amber); }
.result-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: 10px; margin-bottom: 16px; }
.metric-item { background: rgba(255,255,255,.03); border: 1px solid var(--border2); border-radius: 8px; padding: 12px; text-align: center; }
.metric-val { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.metric-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }
.result-text { color: var(--sub); font-size: 14px; line-height: 1.7; white-space: pre-wrap; }
.ai-thinking { text-align: center; padding: 20px; color: var(--muted); font-size: 14px; display: none; }
.ai-thinking.visible { display: block; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 32px; position: relative; }
.pricing-card.featured { border-color: var(--gold); background: linear-gradient(160deg, rgba(201,168,76,.06) 0%, var(--card) 50%); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #080A0E; font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.pricing-tier { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.pricing-desc { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { padding: 8px 0; font-size: 14px; color: var(--sub); border-bottom: 1px solid var(--border2); display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-features li.no::before { content: '\00D7'; color: var(--muted); }
@media(max-width:900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.section-testimonials { padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 28px; display: flex; flex-direction: column; }
.testimonial-card blockquote { margin: 0 0 20px; }
.testimonial-card blockquote p { font-size: 1rem; color: var(--sub); line-height: 1.7; font-style: italic; }
.testimonial-meta { margin-top: auto; }
.testimonial-meta strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.testimonial-meta span { display: block; font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.verified-badge { display: inline-block; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25); color: var(--green); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-top: 6px !important; }
.testimonial-results { list-style: none; margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.testimonial-results li { font-size: 11px; background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2); color: var(--gold); padding: 3px 8px; border-radius: 4px; font-weight: 600; }
.testi-quote { font-size: 1.05rem; color: var(--sub); line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #080A0E; font-size: 16px; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--text); }
.testi-role { font-size: 12px; color: var(--muted); }
.stars { color: var(--gold); font-size: 13px; margin-bottom: 8px; }
@media(max-width:900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }
.section-founder { padding: 80px 0; background: var(--surface); }
.founder-grid { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: flex-start; max-width: 860px; }
.founder-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-d), var(--gold)); color: #080A0E; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 3px solid var(--gold); }
.founder-grid h2 { margin-bottom: 14px; }
.founder-grid p { margin-bottom: 12px; font-size: 15px; }
.founder-creds { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.founder-cred { background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2); color: var(--gold); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 6px; }
.founder-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
@media(max-width:700px) { .founder-grid { grid-template-columns: 1fr; } .founder-avatar { width: 72px; height: 72px; font-size: 1.1rem; } }
.section-faq { padding: 80px 0; }
.faq-list { max-width: 720px; margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border2); }
.faq-question, .faq-q { width:100%; background:none; border:none; color:var(--text); font-size:15px; font-weight:600; padding:20px 0; cursor:pointer; text-align:left; display:flex; justify-content:space-between; align-items:center; gap:12px; font-family:inherit; }
.faq-icon { color:var(--gold); font-size:20px; flex-shrink:0; transition:transform .2s; display: inline-block; }
.faq-question::after { content:'+'; color:var(--gold); font-size:20px; flex-shrink:0; transition:transform .2s; }
.faq-item.open .faq-question::after, .faq-item.open .faq-q::after { transform:rotate(45deg); }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-answer, .faq-a { max-height:0; overflow:hidden; transition:max-height .3s; }
.faq-answer-inner, .faq-a-inner { padding:0 0 20px; color:var(--sub); font-size:14px; line-height:1.8; }
.faq-answer p { color: var(--sub); font-size: 14px; }
.section-final-cta { padding: 80px 0; text-align: center; background: linear-gradient(160deg, rgba(201,168,76,.06) 0%, var(--bg) 60%); border-top: 1px solid var(--border); }
.section-final-cta h2 { max-width: 640px; margin: 0 auto 16px; }
.final-cta-accent { color: var(--gold); }
.section-final-cta p { max-width: 520px; margin: 0 auto 36px; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.final-trust { display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: center; }
.trust-item { font-size: 13px; color: var(--muted); }
.trust-item strong { color: var(--text); display: block; font-size: 13px; }
footer, .site-footer { background: #050709; border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand, .footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer-col-title { color: var(--text); font-size: 13px; font-weight: 700; margin-bottom: 14px; display: block; }
.footer-links { position: static !important; display: block; }
.footer-links a { display: block; color: var(--muted); font-size: 13px; margin-bottom: 8px; transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border2); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: var(--muted); font-size: 12px; }
.footer-bottom-links { position: static !important; display: flex; gap: 16px; }
.footer-bottom-links a { color: var(--muted); font-size: 12px; }
.footer-bottom-links a:hover { color: var(--gold); }
.disclosure { color: var(--muted); font-size: 11px; margin-top: 20px; line-height: 1.7; border-top: 1px solid var(--border2); padding-top: 16px; }
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.tag { display: inline-block; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
.badge-green { background: rgba(34,197,94,.12); color: var(--green); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 4px; display: inline-block; }
.divider { height: 1px; background: var(--border2); margin: 40px 0; }
.email-gate { background: var(--card2); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; margin-top: 16px; display: none; }
.email-gate.visible { display: block; }
.free-badge { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); color: var(--green); display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 20px; }
.container { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); }
footer, .site-footer { padding-bottom: max(28px, env(safe-area-inset-bottom)); }
input, select, textarea { font-size: max(16px, 1em) !important; }
.btn, button, [role="button"] { min-height: 44px; }
a, button, [role="button"], input, select, textarea { touch-action: manipulation; }
@media(max-width:600px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  .hero { padding: 72px 0 48px; min-height: unset; }
  .section-header { margin-bottom: 36px; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .analyzer-widget { padding: 24px 20px; }
  .input-row { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns, .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-btns .btn, .hero-ctas a { justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stats .stat { flex: 0 0 33.333%; border-bottom: 1px solid var(--border); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns .btn { width: 100%; max-width: 340px; justify-content: center; }
}
@media(max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 40px; }
  .section { padding: 48px 0; }
  .btn-lg { width: 100%; justify-content: center; }
  .market-ticker { gap: 12px 16px; font-size: 11px; }
}