*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --gold: #D89A46; --gold-light: #FCCB7F; --gold-bright: #FFD89B;
  --green: #4ADE80; --red: #F87171;
  --bg: #060608; --bg-card: rgba(255,255,255,0.03); --bg-card-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.06); --border-gold: rgba(216,154,70,0.2);
  --text: #FFFFFF; --text-dim: rgba(255,255,255,0.6); --text-muted: rgba(255,255,255,0.35);
  --radius: 20px; --radius-sm: 14px; --radius-xs: 10px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; line-height: 1.6; }
body::after { content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.018; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 256px; }

@keyframes fadeUp { from { opacity:0; transform:translateY(60px) } to { opacity:1; transform:translateY(0) } }
@keyframes glow { 0%,100% { opacity:.3 } 50% { opacity:.55 } }
@keyframes pulse { 0%,100% { transform:scale(1); opacity:.5 } 50% { transform:scale(1.2); opacity:1 } }
@keyframes float { 0%,100% { transform:translateY(0) } 50% { transform:translateY(-14px) } }
@keyframes shimmer { 0% { background-position:200% center } 100% { background-position:-200% center } }
@keyframes rotate { from { transform:rotate(0deg) } to { transform:rotate(360deg) } }
@keyframes typeIn { from { width: 0 } to { width: 100% } }
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:0 } }

.reveal { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay:.1s } .rd2 { transition-delay:.2s } .rd3 { transition-delay:.3s } .rd4 { transition-delay:.4s }

section { padding: 60px 24px; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.section-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #0A0A0C; border: none; border-radius: 100px; font-family: inherit; font-weight: 700; font-size: 15px; cursor: pointer; text-decoration: none; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 4px 24px rgba(216,154,70,0.2); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(216,154,70,0.35); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; background: rgba(255,255,255,0.04); color: var(--text); border: 1px solid var(--border); border-radius: 100px; font-family: inherit; font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none; transition: all 0.35s; backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 48px; display: flex; align-items: center; justify-content: space-between; backdrop-filter: blur(30px) saturate(1.4); background: rgba(6,6,8,0.7); border-bottom: 1px solid var(--border); }
.nav-left { display: flex; align-items: center; gap: 4px; }
.nav-center { display: flex; gap: 32px; }
.nav-center a { color: var(--text-dim); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; }
.nav-center a:hover { color: var(--text); }
.nav-cta { padding: 10px 24px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #0A0A0C; border-radius: 100px; font-weight: 700; font-size: 13px; text-decoration: none; transition: all 0.3s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(216,154,70,0.3); }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding-top: 160px; padding-bottom: 80px; overflow: hidden; }
.hero-bg { position: absolute; border-radius: 50%; filter: blur(140px); pointer-events: none; animation: glow 8s ease-in-out infinite; }
.hero-bg--1 { width: 700px; height: 700px; background: rgba(216,154,70,0.08); top: -10%; left: 50%; transform: translateX(-50%); }
.hero-bg--2 { width: 400px; height: 400px; background: rgba(216,154,70,0.04); bottom: 10%; right: 5%; animation-delay: 4s; }
.hero-bg--3 { width: 300px; height: 300px; background: rgba(74,222,128,0.03); bottom: 20%; left: 5%; animation-delay: 2s; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 50% 50% at 50% 35%, black 10%, transparent 70%); pointer-events: none; }
.hero-ring { position: absolute; width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 1px solid rgba(216,154,70,0.08); border-radius: 50%; pointer-events: none; animation: rotate 60s linear infinite; }
.hero-ring::before { content: ''; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); top: -5px; left: 50%; box-shadow: 0 0 20px rgba(216,154,70,0.5); }
.hero-ring-2 { position: absolute; width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 1px dashed rgba(216,154,70,0.04); border-radius: 50%; pointer-events: none; animation: rotate 45s linear infinite reverse; }

.hero-bubbles { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; overflow: hidden; }
.chat-bubble { position: absolute; background: rgba(255,255,255,0.04); border: 1px solid var(--border); backdrop-filter: blur(12px); border-radius: 16px; padding: 14px 20px; font-size: 13px; font-weight: 500; color: var(--text-dim); max-width: 280px; line-height: 1.5; opacity: 0; animation: bubbleIn 0.8s ease-out forwards, float 6s ease-in-out 0.8s infinite; }
.chat-bubble .bubble-icon { margin-right: 6px; opacity: 0.5; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(20px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
.cb1 { top: 22%; left: 3%; animation-delay: 0.5s, 1.3s; }
.cb2 { top: 25%; right: 2%; animation-delay: 1.2s, 2s; }
.cb3 { bottom: 28%; left: 5%; animation-delay: 1.9s, 2.7s; }
.cb4 { bottom: 18%; right: 5%; animation-delay: 2.6s, 3.4s; }

.hero-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border-radius: 100px; border: 1px solid rgba(74,222,128,0.15); background: rgba(74,222,128,0.05); font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 40px; animation: fadeUp 0.7s ease-out both; }
.hero-chip .live { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(52px, 7.5vw, 96px); font-weight: 800; line-height: 1.02; letter-spacing: -3px; max-width: 900px; animation: heroTitle 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes heroTitle { from { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(8px); } to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }
.hero h1 .gold { background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 4s linear infinite; }
.hero-sub { max-width: 540px; font-size: 18px; color: var(--text-dim); margin-top: 28px; line-height: 1.75; animation: heroTitle 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-actions { display: flex; gap: 16px; margin-top: 48px; animation: heroTitle 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; flex-wrap: wrap; justify-content: center; }
.hero-tagline { margin-top: 48px; font-size: 14px; color: var(--text-muted); animation: heroTitle 1s 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }

.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-particle { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0; animation: particleFloat 4s ease-in-out infinite; }
.hero-particle--seed { box-shadow: 0 0 6px rgba(216,154,70,0.35); }
@keyframes particleFloat { 0% { opacity: 0; transform: translateY(0); } 5% { opacity: 0.55; } 90% { opacity: 0.55; } 100% { opacity: 0; transform: translateY(-200px); } }

/* STATS */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-size: 36px; font-weight: 800; letter-spacing: -1px; }
.stat-num .gold { color: var(--gold-light); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ANIMATED SLOGAN BANNER */
.slogan-banner { padding: 60px 24px; overflow: hidden; border-bottom: 1px solid var(--border); position: relative; }
.slogan-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(216,154,70,0.04), transparent); pointer-events: none; }
.slogan-stage { position: relative; text-align: center; height: clamp(60px, 8vw, 100px); display: flex; align-items: center; justify-content: center; }
.slogan-phrase { position: absolute; font-size: clamp(44px, 6vw, 80px); font-weight: 800; letter-spacing: -2px; white-space: nowrap; background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 6s linear infinite; opacity: 0; transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(16px) scale(0.97); }
.slogan-phrase.active { opacity: 1; transform: translateY(0) scale(1); }
.slogan-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.slogan-line { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(216,154,70,0.3), transparent); }
.slogan-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); opacity: 0.5; }

/* ABOUT */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-size: clamp(36px, 4vw, 52px); font-weight: 800; letter-spacing: -2px; line-height: 1.08; margin-bottom: 24px; }
.about-text h2 .gold { color: var(--gold-light); }
.about-text p { font-size: 16px; color: var(--text-dim); line-height: 1.75; margin-bottom: 16px; }
.cmds { display: flex; flex-direction: column; gap: 10px; margin: 28px 0; }
.cmd-line { display: inline-flex; padding: 10px 18px; border-radius: var(--radius-xs); background: var(--bg-card); border: 1px solid var(--border); font-size: 14px; font-weight: 500; color: var(--gold-light); font-family: 'Courier New', monospace; width: fit-content; }

.about-mockup { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; overflow: hidden; }
.about-mockup::before { content: ''; position: absolute; top: -50%; right: -50%; width: 300px; height: 300px; background: rgba(216,154,70,0.06); border-radius: 50%; filter: blur(80px); pointer-events: none; }
.mh { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.mh-av { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: grid; place-items: center; overflow: hidden; }
.mh-av svg { width: 20px; height: 20px; }
.mh-name { font-weight: 700; font-size: 14px; }
.mh-status { font-size: 11px; color: var(--green); display: flex; align-items: center; gap: 4px; }
.mh-status .d { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.mb { text-align: center; margin-bottom: 28px; }
.mb .lbl { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.mb .val { font-size: 42px; font-weight: 800; letter-spacing: -2px; margin-top: 4px; }
.mb .chg { font-size: 14px; font-weight: 600; color: var(--green); }
.ma { display: flex; flex-direction: column; gap: 12px; }
.ma-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-radius: var(--radius-xs); background: rgba(255,255,255,0.02); border: 1px solid var(--border); }
.ma-l { display: flex; align-items: center; gap: 12px; }
.ma-icon { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-size: 16px; }
.ma-name { font-weight: 600; font-size: 14px; }
.ma-chain { font-size: 11px; color: var(--text-muted); }
.ma-r { text-align: right; }
.ma-val { font-weight: 700; font-size: 14px; }
.ma-pct { font-size: 12px; }
.ma-pct.up { color: var(--green); }

/* RESULTS */
.results { overflow: hidden; position: relative; }
.results::before { content: ''; position: absolute; width: 500px; height: 500px; background: rgba(74,222,128,0.03); border-radius: 50%; filter: blur(150px); top: -100px; left: -100px; pointer-events: none; }
.results-header { text-align: center; margin-bottom: 72px; }
.results-header h2 { font-size: clamp(36px, 4vw, 52px); font-weight: 800; letter-spacing: -2px; line-height: 1.08; }
.results-header h2 .gold { color: var(--gold-light); }
.results-header p { color: var(--text-dim); font-size: 17px; margin-top: 16px; max-width: 500px; margin-inline: auto; }

.results-top { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.results-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.result-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.result-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.result-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.4s; }
.result-card:hover::after { opacity: 1; }
.result-user { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.result-avatar { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-weight: 700; font-size: 16px; color: var(--bg); }
.result-name { font-weight: 600; font-size: 15px; }
.result-tag { font-size: 12px; color: var(--text-muted); }
.result-pnl { font-size: 42px; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 8px; letter-spacing: -1px; }
.result-period { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.result-quote { font-size: 14px; color: var(--text-dim); line-height: 1.6; font-style: italic; border-left: 2px solid var(--border-gold); padding-left: 16px; }

/* Video card */
.result-video-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; }
.result-video-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.result-video-card video { width: 100%; flex: 1; object-fit: cover; display: block; min-height: 300px; cursor: pointer; }
.video-caption { padding: 20px 24px; background: var(--bg-card); border-top: 1px solid var(--border); }
.video-caption h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.video-caption p { font-size: 13px; color: var(--text-dim); }
.video-sound-btn { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); background: rgba(6,6,8,0.7); backdrop-filter: blur(12px); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; z-index: 2; }
.video-sound-btn:hover { background: rgba(6,6,8,0.9); border-color: rgba(216,154,70,0.4); }
.video-sound-btn svg { width: 18px; height: 18px; }

/* FEATURES */
.features-header { text-align: center; margin-bottom: 72px; }
.features-header h2 { font-size: clamp(36px, 4vw, 52px); font-weight: 800; letter-spacing: -2px; line-height: 1.08; }
.features-header h2 .gold { color: var(--gold-light); }
.features-header p { color: var(--text-dim); font-size: 17px; margin-top: 16px; max-width: 520px; margin-inline: auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fc { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; }
.fc:hover { border-color: var(--border-gold); background: var(--bg-card-hover); transform: translateY(-6px); }
.fc::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.4s; }
.fc:hover::after { opacity: 1; }
.fc-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(216,154,70,0.08); border: 1px solid rgba(216,154,70,0.12); display: grid; place-items: center; font-size: 24px; margin-bottom: 24px; }
.fc h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.fc p { font-size: 14px; color: var(--text-dim); line-height: 1.65; }
.fc--big { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.fc--big .fv { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.sm { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-xs); }
.sm-l { display: flex; align-items: center; gap: 10px; }
.sm-dot { width: 8px; height: 8px; border-radius: 50%; }
.sm-dot.live { background: var(--green); animation: pulse 2s infinite; }
.sm-dot.warm { background: var(--gold-light); }
.sm-pair { font-weight: 700; font-size: 13px; }
.sm-type { font-size: 11px; color: var(--text-muted); }
.sm-score { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.sm-score.high { background: rgba(74,222,128,0.1); color: var(--green); }
.sm-score.med { background: rgba(252,203,127,0.1); color: var(--gold-light); }

/* REPLACE */
.replace { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.01); }
.replace-header { text-align: center; margin-bottom: 64px; }
.replace-header h2 { font-size: clamp(36px, 4vw, 52px); font-weight: 800; letter-spacing: -2px; line-height: 1.08; }
.replace-header h2 .gold { color: var(--gold-light); }
.replace-header p { color: var(--text-dim); font-size: 17px; margin-top: 16px; max-width: 520px; margin-inline: auto; }
.rg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.rc { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; align-items: flex-start; gap: 20px; transition: all 0.35s; }
.rc:hover { border-color: var(--border-gold); }
.rc-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(216,154,70,0.08); display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.rc h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.rc .old { font-size: 12px; color: var(--red); text-decoration: line-through; opacity: 0.65; margin-bottom: 8px; }
.rc p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.savings { text-align: center; margin-top: 56px; padding: 40px; border-radius: var(--radius); border: 1px solid rgba(74,222,128,0.12); background: rgba(74,222,128,0.03); max-width: 560px; margin-inline: auto; }
.savings .num { font-size: 52px; font-weight: 800; color: var(--green); letter-spacing: -2px; line-height: 1; }
.savings p { color: var(--text-dim); font-size: 15px; margin-top: 8px; }

/* CTA */
.cta-box { max-width: 960px; margin: 0 auto; text-align: center; padding: 80px 48px; border-radius: 28px; position: relative; overflow: hidden; background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(216,154,70,0.1), transparent 70%), var(--bg-card); border: 1px solid var(--border-gold); }
.cta-box h2 { font-size: clamp(36px, 4vw, 52px); font-weight: 800; letter-spacing: -2px; line-height: 1.08; margin-bottom: 16px; }
.cta-box h2 .gold { color: var(--gold-light); }
.cta-box p { color: var(--text-dim); font-size: 17px; max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }

/* CHAINS */
.chains-strip { padding: 48px 24px; text-align: center; border-top: 1px solid var(--border); }
.chains-strip .label { font-size: 12px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.chains-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; font-size: 14px; font-weight: 600; color: var(--text-muted); }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 48px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-left { display: flex; align-items: center; gap: 20px; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-note { font-size: 12px; color: var(--text-muted); opacity: 0.6; margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }

@media (max-width: 1024px) { .features-grid { grid-template-columns: 1fr 1fr; } .fc--big { grid-column: span 2; } .results-bottom { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  nav { padding: 14px 20px; } .nav-center { display: none; }
  section { padding: 60px 20px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; } .fc--big { grid-column: span 1; grid-template-columns: 1fr; }
  .rg { grid-template-columns: 1fr; }
  .results-top { grid-template-columns: 1fr; } .results-bottom { grid-template-columns: 1fr; }
  .cta-box { padding: 56px 24px; }
  .chat-bubble, .hero-ring, .hero-ring-2 { display: none; }
  .stats-bar { gap: 32px; padding: 24px 20px; }
  .slogan-phrase { font-size: 44px !important; letter-spacing: -1px; }
}
