*, *::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; }

/* 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; }
.wl-form { max-width: 480px; margin: 0 auto; }
.hero-form { margin-top: 48px; }
.wl-input-wrap { display: flex; gap: 0; border-radius: 100px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s; }
.wl-input-wrap:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,154,70,0.12); }
.wl-input-wrap input { flex: 1; padding: 16px 24px; background: transparent; border: none; outline: none; color: var(--text); font-family: inherit; font-size: 15px; min-width: 0; }
.wl-input-wrap input::placeholder { color: var(--text-muted); }
.wl-input-wrap .btn-primary { border-radius: 100px; margin: 4px; padding: 12px 28px; font-size: 14px; white-space: nowrap; flex-shrink: 0; border: none; cursor: pointer; }
.wl-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.wl-msg { margin-top: 16px; font-size: 14px; font-weight: 600; min-height: 20px; }
.wl-msg.success { color: var(--green); }
.wl-msg.error { color: var(--red); }

/* INTEGRATIONS */
.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; }
  .wl-input-wrap { flex-direction: column; border-radius: var(--radius-sm); }
  .wl-input-wrap input { padding: 14px 20px; }
  .wl-input-wrap .btn-primary { margin: 0 4px 4px; border-radius: 10px; padding: 14px 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; }
}
/* =========================================================
   LP8 — Orange Cat Trader (overrides on top of /lp2/styles.css)
   ========================================================= */

:root {
  --orange: #FF8C42;
  --orange-bright: #FFA85C;
  --orange-deep: #E06A1F;
  --orange-soft: rgba(255,140,66,0.14);
  --cat-cream: #FFE9C9;
  --cat-red: #F87171;
  --cat-green: #4ADE80;
}

body.cat-page { overflow-x: hidden; }

/* ---------- NAV (cat-page) ---------- */
.cat-page nav {
  padding: 14px 32px;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.4px;
}
.nav-logo svg { height: 22px; width: auto; }
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
}
.nav-links a:not(.btn-primary):hover { color: #fff; }
.nav-cta {
  font-size: 13px !important;
  padding: 9px 18px !important;
}
@media (max-width: 720px) {
  .cat-page nav { padding: 12px 18px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn-primary) { display: none; }
}

/* ---------- shared cat orange accent ---------- */
.cat-orange-text {
  background: linear-gradient(135deg, #FFC58A, var(--orange) 45%, var(--orange-deep));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: catShimmer 5s linear infinite;
  display: inline-block;
}
@keyframes catShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.cat-strike {
  position: relative;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}
.cat-strike::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 55%;
  height: 5px;
  background: var(--orange);
  border-radius: 4px;
  transform: skewY(-3deg) scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s 0.4s cubic-bezier(.5,0,.2,1);
}
.reveal.visible .cat-strike::after,
.cat-hero .cat-strike::after {
  transform: skewY(-3deg) scaleX(1);
}

/* ---------- HERO ---------- */
section.hero.cat-hero {
  min-height: auto;
  display: block;
  padding: 140px 5% 60px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.cat-orange-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 35% at 80% 25%, rgba(255,140,66,0.28), transparent 70%),
    radial-gradient(35% 30% at 15% 85%, rgba(255,140,66,0.18), transparent 70%);
  z-index: 0;
}
.cat-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.cat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,140,66,0.35);
  background: rgba(255,140,66,0.08);
  color: var(--orange-bright);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  animation: catFadeUp 0.8s 0.05s cubic-bezier(.16,1,.3,1) both;
}
.cat-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,140,66,0.18);
  animation: catPulse 1.6s ease-in-out infinite;
}

.cat-hero h1.cat-h1 {
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -3.5px;
  color: #fff;
  max-width: none;
  margin: 0 0 24px;
  animation: catFadeUp 1s 0.15s cubic-bezier(.16,1,.3,1) both;
  text-align: left;
}

.cat-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 30px;
  animation: catFadeUp 1s 0.3s cubic-bezier(.16,1,.3,1) both;
}
.cat-sub b { color: #fff; font-weight: 700; }

.cat-hero .cat-form {
  max-width: 520px;
  margin: 0 0 24px;
  animation: catFadeUp 1s 0.45s cubic-bezier(.16,1,.3,1) both;
}
.cat-form .wl-input-wrap {
  border-color: rgba(255,140,66,0.25);
  background: rgba(255,255,255,0.04);
}
.cat-form .wl-input-wrap:focus-within {
  border-color: rgba(255,140,66,0.6);
}

.cat-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: catFadeUp 1s 0.6s cubic-bezier(.16,1,.3,1) both;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

/* hero visual */
.cat-hero-visual {
  position: relative;
  height: 560px;
  perspective: 1000px;
  animation: catFadeUp 1.1s 0.35s cubic-bezier(.16,1,.3,1) both;
}
.cat-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 8px 20px rgba(255,140,66,0.18);
  background: #1a1a1f;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-card--main {
  width: 78%;
  height: 88%;
  right: 0;
  top: 5%;
  transform: rotate(-3deg);
  z-index: 3;
  border: 2px solid rgba(255,140,66,0.35);
  animation: catFloat 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.cat-card--ghost {
  width: 50%;
  height: 60%;
  left: 0;
  bottom: 6%;
  transform: rotate(6deg);
  z-index: 2;
  opacity: 0.78;
  filter: saturate(0.85) brightness(0.85);
  border: 1px solid rgba(255,255,255,0.06);
  animation: catFloat 7s ease-in-out infinite reverse;
}

@keyframes catFloat {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-12px); }
}
.cat-card--ghost {
  animation-name: catFloatGhost;
}
@keyframes catFloatGhost {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50%      { transform: rotate(6deg) translateY(8px); }
}

.cat-sticker {
  position: absolute;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 4;
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.cat-sticker--green {
  top: 12%;
  right: -4%;
  background: var(--cat-green);
  color: #0a3a18;
  transform: rotate(8deg);
  animation: catWiggle 3.2s ease-in-out infinite;
}
.cat-sticker--white {
  bottom: 18%;
  right: -2%;
  background: #fff;
  color: #111;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 22px;
  padding: 6px 16px;
  transform: rotate(-6deg);
  animation: catWiggle 3.6s 0.4s ease-in-out infinite;
}
.cat-sticker--red {
  top: 8%;
  left: -6%;
  background: var(--cat-red);
  color: #4a0e0e;
  transform: rotate(-8deg);
  animation: catWiggle 3.4s 0.2s ease-in-out infinite;
}

@keyframes catWiggle {
  0%, 100% { transform: rotate(var(--r, 8deg)) translateY(0); }
  50%      { transform: rotate(calc(var(--r, 8deg) + 3deg)) translateY(-6px); }
}
.cat-sticker--green { --r: 8deg; }
.cat-sticker--red   { --r: -8deg; }
.cat-sticker--white { --r: -6deg; }

.cat-paws {
  position: absolute;
  bottom: -30px;
  left: 4%;
  right: 4%;
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  opacity: 0.35;
  pointer-events: none;
}
.cat-paws span {
  animation: catPawBob 2.4s ease-in-out infinite;
}
.cat-paws span:nth-child(2) { animation-delay: 0.15s; }
.cat-paws span:nth-child(3) { animation-delay: 0.30s; }
.cat-paws span:nth-child(4) { animation-delay: 0.45s; }
.cat-paws span:nth-child(5) { animation-delay: 0.60s; }
@keyframes catPawBob {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50%      { transform: translateY(-6px); opacity: 0.7; }
}

@keyframes catFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes catPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,140,66,0.2); }
  50%      { box-shadow: 0 0 0 9px rgba(255,140,66,0.05); }
}

/* MEOW ticker */
.meow-ticker {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,140,66,0.18);
  border-bottom: 1px solid rgba(255,140,66,0.18);
  background: linear-gradient(180deg, rgba(255,140,66,0.05), rgba(255,140,66,0.02));
  overflow: hidden;
  white-space: nowrap;
}
.meow-track {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--orange-bright);
  text-transform: uppercase;
  padding-left: 100%;
  animation: meowScroll 28s linear infinite;
}
.meow-track span:nth-child(even) { color: rgba(255,255,255,0.35); }
@keyframes meowScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ---------- SAGA ---------- */
.saga {
  padding: 110px 0 70px;
  position: relative;
}
.saga-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.saga-header h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.saga-header p {
  color: var(--text-dim);
  font-size: 17px;
}

.saga-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 80px;
}

.saga-step {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 22px;
  transition: transform 0.4s ease, border-color 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.saga-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255,140,66,0.35);
}
.saga-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 14px;
}
.saga-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 18px;
  background: #1a1a1f;
}
.saga-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}
.saga-step:hover .saga-img-wrap img {
  transform: scale(1.04);
}
.saga-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.saga-tag--neutral { background: rgba(255,255,255,0.12); color: #fff; }
.saga-tag--red     { background: rgba(248,113,113,0.2); color: #FCA5A5; border: 1px solid rgba(248,113,113,0.35); }
.saga-tag--green   { background: rgba(74,222,128,0.18); color: #86EFAC; border: 1px solid rgba(74,222,128,0.35); }
.saga-tag--big     { font-size: 14px; padding: 8px 16px; }

.saga-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  color: #fff;
}
.saga-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
}

/* finale */
.saga-finale {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background: linear-gradient(180deg, rgba(255,140,66,0.08), rgba(255,140,66,0.02));
  border: 1px solid rgba(255,140,66,0.25);
  border-radius: 28px;
  padding: 40px;
}
.saga-finale-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 540px;
  background: #1a1a1f;
}
.saga-finale-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.saga-finale-img .saga-tag--big {
  bottom: 18px;
  left: 18px;
}
.saga-finale-text h3 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.saga-finale-text p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.saga-finale-quote {
  font-family: 'Caveat', cursive;
  color: var(--orange-bright) !important;
  font-size: 28px !important;
  line-height: 1.3 !important;
  font-weight: 600;
  margin-top: 14px !important;
}
.saga-finale-quote b { color: #fff; font-weight: 700; }
.saga-cta { margin-top: 14px; }

/* ---------- VS ---------- */
.vs {
  padding: 100px 0;
}
.vs-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}
.vs-header h2 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.06;
  margin-bottom: 16px;
}
.vs-header p {
  color: var(--text-dim);
  font-size: 17px;
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.vs-col {
  border-radius: 24px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}
.vs-col--bad {
  filter: grayscale(0.2);
}
.vs-col--good {
  background: linear-gradient(180deg, rgba(255,140,66,0.08), rgba(255,140,66,0.02));
  border-color: rgba(255,140,66,0.3);
}
.vs-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vs-tag--bad  { background: rgba(248,113,113,0.18); color: #FCA5A5; }
.vs-tag--good { background: rgba(255,140,66,0.18); color: var(--orange-bright); }
.vs-col h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.vs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vs-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}
.vs-x, .vs-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}
.vs-x     { background: rgba(248,113,113,0.18); color: var(--cat-red); }
.vs-check { background: rgba(74,222,128,0.18); color: var(--cat-green); }

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-divider-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(255,140,66,0.4);
  animation: catArrowPulse 2.4s ease-in-out infinite;
}
@keyframes catArrowPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

/* ---------- TOOLS ---------- */
.tools {
  padding: 100px 0;
}
.tools-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.tools-header h2 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.06;
  margin-bottom: 16px;
}
.tools-header p {
  color: var(--text-dim);
  font-size: 17px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tool-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 28px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,140,66,0.4);
  background: rgba(255,140,66,0.04);
}
.tool-emoji {
  font-size: 32px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,140,66,0.12);
  border: 1px solid rgba(255,140,66,0.25);
}
.tool-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.tool-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ---------- VIRAL ---------- */
.viral {
  padding: 80px 0 70px;
  background: radial-gradient(60% 80% at 50% 50%, rgba(255,140,66,0.06), transparent 70%);
}
.viral-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.viral-header h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.06;
  margin-bottom: 14px;
}
.viral-header p {
  color: var(--text-dim);
  font-size: 17px;
}
.viral-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}
.viral-stat {
  text-align: center;
  padding: 28px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.viral-stat:hover { transform: translateY(-4px); border-color: rgba(255,140,66,0.35); }
.viral-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #FFC58A, var(--orange) 50%, var(--orange-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.viral-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ---------- CTA ---------- */
.cat-cta { padding: 70px 0 110px; }
.cat-cta-box {
  background: linear-gradient(180deg, rgba(255,140,66,0.1), rgba(255,140,66,0.02));
  border: 1px solid rgba(255,140,66,0.3);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cat-cta-box h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.06;
  margin-bottom: 16px;
}
.cat-cta-box p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 26px;
}

.cat-cta-shareline {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.cat-cta-shareline span {
  font-size: 13px;
  color: var(--text-muted);
}
.cat-cta-shares {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.cat-cta-shares a {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.cat-cta-shares a:hover {
  border-color: rgba(255,140,66,0.4);
  background: rgba(255,140,66,0.08);
}

/* footer */
.cat-footer { border-top: 1px solid rgba(255,140,66,0.15); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .cat-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cat-hero-visual { height: 480px; max-width: 540px; margin: 0 auto; width: 100%; }
  .saga-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .cat-hero { padding: 110px 5% 50px; }
  .cat-h1 { letter-spacing: -2px; }
  .saga-finale {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px;
  }
  .saga-finale-img { aspect-ratio: 4/5; max-height: 420px; }
  .vs-grid { grid-template-columns: 1fr; }
  .vs-divider { padding: 6px 0; }
  .vs-divider-arrow { transform: rotate(90deg); }
  .viral-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .cat-hero { padding: 100px 5% 40px; }
  .cat-eyebrow { font-size: 11px; padding: 6px 12px; }
  .cat-h1 { font-size: 52px; line-height: 1; }
  .cat-sub { font-size: 16px; }
  .cat-hero-visual { height: 420px; }
  .cat-card--main { width: 80%; height: 86%; }
  .cat-card--ghost { width: 52%; height: 56%; }
  .cat-sticker { font-size: 12px; padding: 6px 10px; }
  .cat-sticker--white { font-size: 18px; }
  .meow-track { font-size: 14px; gap: 18px; }
  .saga-grid { grid-template-columns: 1fr; }
  .saga-img-wrap { aspect-ratio: 4/5; }
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card { padding: 22px; }
  .cat-cta-box { padding: 40px 22px; }
  .saga-finale-text h3 { font-size: 32px; letter-spacing: -1px; }
  .saga-finale-quote { font-size: 22px !important; }
}
