:root {
  --bg: #061a36;
  --bg2: #0a2447;
  --surface: #0e2c54;
  --surface2: #133466;
  --border: #1d4380;
  --border2: #2856a0;
  --text: #f4f9ff;
  --text2: #cfe1f7;
  --muted: #94b3d8;
  --blue: #1d6fd6;
  --blue2: #2e8ae8;
  --blue_light: #4eb2f7;
  --blue_deep: #02122a;
  --yellow: #ffd23f;
  --yellow2: #fbb03b;
  --gold: #f6c026;
  --green: #34d399;
  --red: #f87171;
  --grad: linear-gradient(95deg, #4eb2f7 0%, #ffd23f 60%, #fbb03b 110%);
  --grad2: linear-gradient(135deg, #2e8ae8, #4eb2f7, #ffd23f);
  --radius: 22px;
  --maxw: 1280px;
  --pad: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }

img, svg { display: block; max-width: 100%; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 2; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb { position: fixed; border-radius: 50%; filter: blur(160px); opacity: .15; z-index: 0; pointer-events: none; }
.orb1 { width: 500px; height: 500px; background: radial-gradient(circle, #2e8ae8, transparent 70%); top: -200px; left: -200px; }
.orb2 { width: 600px; height: 600px; background: radial-gradient(circle, #ffd23f, transparent 70%); top: 50%; right: -300px; opacity: .07; }
.orb3 { width: 440px; height: 440px; background: radial-gradient(circle, #4eb2f7, transparent 70%); bottom: -200px; left: 30%; opacity: .1; }

.starfield, .star, .drifter { display: none !important; }

/* Aurora — section level */
.aurora { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; opacity: .6; }
.aurora::before, .aurora::after { content: ''; position: absolute; inset: -50%; background: conic-gradient(from 0deg at 50% 50%, transparent, #4eb2f7 20%, transparent 40%, #ffd23f 60%, transparent 80%, #2e8ae8 100%); filter: blur(60px); animation: spin 40s linear infinite; }
.aurora::after { animation-duration: 60s; animation-direction: reverse; opacity: .5; mix-blend-mode: screen; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(20px); background: rgba(6,26,54,.7); border-bottom: 1px solid var(--border); }
.nav_inner { max-width: var(--maxw); margin: 0 auto; padding: 18px var(--pad); display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; letter-spacing: -.02em; white-space: nowrap; }
.brand_name { white-space: nowrap; }
.brand_mark { display: inline-flex; align-items: center; justify-content: center; }
.brand_name { color: var(--text); }
.brand_dot { color: var(--yellow); }
.nav_links { margin-left: auto; display: flex; gap: 28px; font-size: 14.5px; color: var(--text2); font-weight: 500; }
.nav_links a:hover { color: var(--yellow); }
.nav_cta { padding: 10px 18px; font-size: 14px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; font-weight: 600; font-size: 15px; border-radius: 99px; border: 1px solid transparent; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; letter-spacing: -.01em; }
.btn:hover { transform: translateY(-1px); }
.btn_primary { background: var(--yellow); color: var(--blue_deep); box-shadow: 0 12px 40px -12px rgba(255,210,63,.6), inset 0 1px 0 rgba(255,255,255,.4); }
.btn_primary:hover { background: var(--gold); box-shadow: 0 16px 50px -12px rgba(251,176,59,.7), inset 0 1px 0 rgba(255,255,255,.4); }
.btn_outline { background: transparent; color: var(--text); border-color: var(--border2); }
.btn_outline:hover { background: var(--surface); border-color: var(--yellow); }
.btn_ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: rgba(255,255,255,.08); }
.btn_ghost:hover { background: rgba(255,255,255,.08); }
.btn .arrow { transition: transform .2s; }
.btn_ghost:hover .arrow { transform: translateX(3px); }

.grad_text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -.02em; }

.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); padding: 6px 14px; border: 1px solid rgba(255,210,63,.35); border-radius: 99px; background: rgba(255,210,63,.08); }
.eyebrow.center { display: block; margin: 0 auto 22px; width: fit-content; }

.section_head { max-width: 880px; margin: 0 auto 64px; text-align: center; }
.section_head.left { text-align: left; margin-left: 0; }
.section_title { font-size: clamp(38px, 5.5vw, 72px); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; margin: 22px 0 22px; }
.section_title.center { text-align: center; }
.section_lead { font-size: 18.5px; color: var(--text2); line-height: 1.65; max-width: 760px; margin: 0 auto; }

/* HERO */
.hero { padding: 80px 0 120px; position: relative; overflow: hidden; }
.hero_giant_star { position: absolute; top: 12%; right: -120px; width: 540px; height: 540px; z-index: 0; pointer-events: none; opacity: .9; animation: hero_float 9s ease-in-out infinite; filter: drop-shadow(0 0 80px rgba(255,210,63,.35)); }
.hero_giant_star_left { position: absolute; bottom: 6%; left: -120px; width: 320px; height: 320px; z-index: 0; pointer-events: none; opacity: .55; animation: hero_float 11s ease-in-out infinite reverse; filter: drop-shadow(0 0 60px rgba(78,178,247,.4)); }
@keyframes hero_float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(8deg); } }
.hero_inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 2; text-align: center; }
.hero_kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border: 1px solid var(--border2); border-radius: 99px; background: rgba(255,255,255,.03); font-size: 13.5px; font-weight: 500; color: var(--text2); margin-bottom: 28px; backdrop-filter: blur(10px); }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.6); } 100% { box-shadow: 0 0 0 12px rgba(52,211,153,0); } }

.hero_title { font-size: clamp(48px, 8vw, 112px); font-weight: 800; letter-spacing: -.045em; line-height: .98; margin-bottom: 30px; }

.hero_lead { font-size: 19.5px; max-width: 720px; margin: 0 auto 40px; color: var(--text2); line-height: 1.6; }

.hero_ctas { display: flex; gap: 14px; justify-content: center; margin-bottom: 80px; flex-wrap: wrap; }

.hero_chat { max-width: 920px; margin: 0 auto 80px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; position: relative; box-shadow: 0 40px 120px -40px rgba(46,138,232,.4); }
.chat_header { display: flex; align-items: center; gap: 8px; padding: 14px 20px; background: rgba(0,0,0,.4); border-bottom: 1px solid var(--border); }
.chat_dot { width: 11px; height: 11px; border-radius: 50%; }
.dot_red { background: #ff5f57; }
.dot_yel { background: #febc2e; }
.dot_grn { background: #28c840; }
.chat_url { margin-left: 20px; font-size: 12.5px; color: var(--muted); font-family: ui-monospace, monospace; }
.chat_body { padding: 30px; display: flex; flex-direction: column; gap: 24px; text-align: left; }
.chat_user, .chat_ai { display: flex; gap: 14px; align-items: flex-start; }
.avatar { width: 36px; height: 36px; border-radius: 50%; flex: 0 0 36px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.avatar_user { background: linear-gradient(135deg, #4eb2f7, #ffd23f); color: var(--blue_deep); }
.avatar_ai { background: rgba(16,163,127,.15); border: 1px solid rgba(16,163,127,.4); }
.chat_msg { flex: 1; }
.chat_who { font-size: 13.5px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.chat_text { font-size: 15.5px; color: var(--text); line-height: 1.6; }
.chat_list { margin-top: 10px; padding: 0; list-style: none; }
.chat_list li { margin-bottom: 12px; padding: 12px 14px; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.chat_list li::marker { content: ''; }
.chat_logo { flex: 0 0 28px; width: 28px; height: 28px; border-radius: 7px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.chat_list strong { font-weight: 700; }
.chat_brand { color: var(--yellow); }
.chat_cite { display: inline-block; font-size: 11px; padding: 2px 8px; background: rgba(255,210,63,.18); color: var(--yellow); border-radius: 99px; font-weight: 600; letter-spacing: .04em; margin-left: 4px; }
.chat_glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 60% at 50% 0%, rgba(78,178,247,.2), transparent 70%); }

.hero_stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.hstat { padding: 28px 22px; border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); border: 1px solid var(--border); text-align: left; }
.hstat_num { font-size: 38px; font-weight: 800; letter-spacing: -.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hstat_lbl { font-size: 13.5px; color: var(--text2); margin-top: 6px; line-height: 1.5; }

@media (max-width: 920px) { .hero_stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hero_stats { grid-template-columns: 1fr; } }

/* LOGOS BAND */
.logos { padding: 110px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(180deg, var(--bg2), var(--bg)); text-align: center; }
.logos_kicker { font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -.035em; line-height: 1.05; color: var(--text); margin: 0 auto 18px; max-width: 880px; }
.logos_sub { font-size: 17px; color: var(--text2); max-width: 620px; margin: 0 auto 50px; line-height: 1.55; }
.logos_strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; max-width: 1280px; margin: 0 auto; }
.logo_card { padding: 28px 14px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.03); display: flex; flex-direction: column; align-items: center; gap: 14px; transition: transform .25s, border .25s, background .25s; }
.logo_card svg { width: 48px; height: 48px; }
.logo_card:hover { transform: translateY(-3px); border-color: var(--yellow); background: rgba(255,210,63,.06); box-shadow: 0 20px 50px -25px rgba(255,210,63,.4); }
.logo_card span { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
@media (max-width: 1100px) { .logos_strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .logos_strip { grid-template-columns: repeat(2, 1fr); } }

/* SHIFT */
.shift { padding: 140px 0 120px; }
.shift_grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: stretch; }
.shift_card { padding: 36px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); position: relative; display: flex; flex-direction: column; gap: 22px; }
.shift_old { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.2)); }
.shift_new { background: linear-gradient(180deg, rgba(78,178,247,.08), rgba(255,210,63,.05)); border-color: rgba(78,178,247,.35); }
.shift_label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; background: rgba(255,255,255,.06); border-radius: 99px; align-self: flex-start; color: var(--text2); }
.shift_label.glow { background: var(--grad); color: var(--blue_deep); }
.shift_year { font-size: 14px; color: var(--muted); margin-top: -10px; }
.shift_visual { padding: 22px; background: rgba(0,0,0,.3); border-radius: 16px; min-height: 280px; }
.shift_p { font-size: 15.5px; color: var(--text2); line-height: 1.65; margin-top: auto; }

.serp { font-family: ui-monospace, monospace; font-size: 13px; }
.serp_query { padding: 10px 14px; background: #fff; color: #1a1a1a; border-radius: 24px; font-family: 'Inter', sans-serif; font-size: 13.5px; margin-bottom: 10px; }
.serp_meta { color: var(--muted); font-size: 11.5px; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.serp_item { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.05); display: flex; flex-direction: column; gap: 6px; }
.serp_item.dim { opacity: .35; }
.serp_t { height: 10px; width: 70%; background: linear-gradient(90deg, #4eb2f7, transparent); border-radius: 3px; }
.serp_l { height: 6px; width: 100%; background: rgba(255,255,255,.1); border-radius: 3px; }
.serp_l + .serp_l { width: 80%; }

.ai_answer { font-family: 'Inter', sans-serif; }
.ai_q { font-size: 13.5px; padding: 10px 14px; background: rgba(78,178,247,.14); border: 1px solid rgba(78,178,247,.35); border-radius: 12px; margin-bottom: 14px; color: var(--text); }
.ai_response { font-size: 14.5px; color: var(--text2); line-height: 1.7; }
.ai_w { display: inline-block; opacity: 0; animation: fadein .05s forwards; }
@keyframes fadein { to { opacity: 1; } }
.ai_response .ai_w:nth-child(1) { animation-delay: .2s; }
.ai_response .ai_w:nth-child(2) { animation-delay: .35s; }
.ai_response .ai_w:nth-child(3) { animation-delay: .5s; }
.ai_response .ai_w:nth-child(4) { animation-delay: .65s; }
.ai_response .ai_w:nth-child(5) { animation-delay: .8s; }
.ai_response .ai_w:nth-child(6) { animation-delay: .95s; }
.ai_response .ai_w:nth-child(7) { animation-delay: 1s; }
.ai_pick { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 12px; margin-top: 10px; font-size: 14.5px; }
.ai_num { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,210,63,.2); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--yellow); }
.ai_pick strong { color: var(--text); flex: 1; }
.ai_pill { font-size: 10.5px; padding: 3px 8px; background: var(--yellow); color: var(--blue_deep); border-radius: 99px; font-weight: 700; letter-spacing: .04em; }

.shift_arrow { display: flex; align-items: center; justify-content: center; }
@media (max-width: 1000px) { .shift_grid { grid-template-columns: 1fr; } .shift_arrow { transform: rotate(90deg); } }

/* BIGSTATS */
.bigstats { padding: 100px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(180deg, var(--bg), var(--bg2), var(--bg)); }
.bigstats_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.bigstat { text-align: left; padding: 32px 0; border-top: 1px solid var(--border); }
.bigstat_num { font-size: clamp(60px, 8vw, 96px); font-weight: 800; letter-spacing: -.04em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; }
.bigstat_unit { font-size: 16px; color: var(--text2); font-weight: 500; margin-top: 6px; }
.bigstat_lbl { font-size: 14.5px; color: var(--text2); margin-top: 14px; line-height: 1.5; max-width: 240px; }
@media (max-width: 1000px) { .bigstats_grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bigstats_grid { grid-template-columns: 1fr; } }

/* PROBLEM */
.problem { padding: 140px 0; }
.problem_demo { margin-top: 60px; }
.demo_window { max-width: 1080px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 60px 140px -40px rgba(0,0,0,.6); }
.demo_bar { display: flex; align-items: center; gap: 8px; padding: 14px 20px; background: rgba(0,0,0,.5); border-bottom: 1px solid var(--border); }
.demo_url { margin-left: 20px; font-size: 12.5px; color: var(--muted); font-family: ui-monospace, monospace; }
.demo_content { padding: 36px; }
.demo_q { padding: 18px 22px; background: rgba(78,178,247,.1); border-left: 3px solid var(--blue_light); border-radius: 12px; margin-bottom: 28px; }
.demo_qlabel { display: block; font-size: 11.5px; color: var(--blue_light); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.demo_qtext { font-size: 17px; color: var(--text); font-weight: 500; }
.demo_results { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.demo_row { display: flex; align-items: center; gap: 18px; padding: 18px 22px; background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 14px; }
.demo_row.bad { border-color: rgba(248,113,113,.35); background: rgba(248,113,113,.06); }
.demo_pos { font-family: ui-monospace, monospace; font-size: 14px; font-weight: 700; color: var(--yellow); width: 36px; }
.demo_row.bad .demo_pos { color: var(--red); }
.demo_main { flex: 1; }
.demo_name { font-size: 16px; font-weight: 600; color: var(--text); }
.demo_tag { font-size: 13px; color: var(--text2); margin-top: 4px; }
.demo_badge { font-size: 11.5px; font-weight: 700; padding: 6px 12px; border-radius: 99px; letter-spacing: .04em; }
.demo_badge.ok { background: rgba(52,211,153,.16); color: var(--green); border: 1px solid rgba(52,211,153,.35); }
.demo_badge.ko { background: rgba(248,113,113,.16); color: var(--red); border: 1px solid rgba(248,113,113,.35); }
.demo_serp { max-width: 1080px; margin: 0 auto; }
.demo_overview { padding: 22px 24px; }
.demo_calc { padding: 22px 24px; background: linear-gradient(180deg, rgba(78,178,247,.1), rgba(255,210,63,.05)); border-top: 1px solid var(--border); border-radius: 0; display: flex; flex-direction: column; gap: 12px; }

/* Perplexity-style window */
.px_window { max-width: 1180px; margin: 0 auto; background: #191a1a; border: 1px solid #2a2c2c; border-radius: 14px; overflow: hidden; box-shadow: 0 60px 140px -40px rgba(0,0,0,.6); }
.px_chrome { display: flex; align-items: center; gap: 14px; padding: 10px 14px; background: #0e0f10; border-bottom: 1px solid #2a2c2c; }
.px_dots { display: flex; gap: 6px; }
.px_btns { display: flex; gap: 14px; color: #9aa1a4; }
.px_url { flex: 1; padding: 7px 14px; background: #1c1e1f; border: 1px solid #2a2c2c; border-radius: 999px; font-size: 12.5px; color: #cfd2d4; display: flex; align-items: center; gap: 8px; font-family: -apple-system, sans-serif; }
.px_url svg { color: #9aa1a4; }
.px_url_path { color: #6f7578; font-family: ui-monospace, monospace; font-size: 11.5px; }

.px_app { display: grid; grid-template-columns: 230px 1fr; min-height: 600px; }
.px_side { background: #0e0f10; border-right: 1px solid #1f2122; padding: 20px 14px; display: flex; flex-direction: column; gap: 24px; }
.px_logo { display: flex; align-items: center; gap: 10px; padding: 0 8px; font-size: 16px; font-weight: 700; color: #f4f4f5; letter-spacing: -.01em; }
.px_nav { display: flex; flex-direction: column; gap: 2px; }
.px_nav_item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; font-size: 13.5px; color: #9aa1a4; cursor: pointer; transition: background .2s, color .2s; }
.px_nav_item:hover { color: #f4f4f5; background: #1c1e1f; }
.px_nav_item.active { color: #1FB8CD; background: rgba(31,184,205,.1); }
.px_thread { padding: 14px 8px 0; border-top: 1px solid #1f2122; display: flex; flex-direction: column; gap: 6px; }
.px_thread_h { font-size: 11.5px; color: #6f7578; letter-spacing: .08em; text-transform: uppercase; padding: 0 4px 6px; font-weight: 600; }
.px_thread_q { padding: 8px 10px; border-radius: 8px; font-size: 12.5px; color: #c4c8ca; cursor: pointer; line-height: 1.35; }
.px_thread_q:hover { background: #1c1e1f; color: #f4f4f5; }
.px_thread_q.active { background: #1c1e1f; color: #f4f4f5; }

.px_main { padding: 28px 36px 32px; max-height: none; overflow: visible; }
.px_query { margin-bottom: 14px; }
.px_q_title { font-size: 26px; font-weight: 600; letter-spacing: -.02em; line-height: 1.25; color: #f4f4f5; margin-bottom: 10px; font-family: 'Inter', serif; }
.px_q_meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #9aa1a4; flex-wrap: wrap; }
.px_q_pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: rgba(31,184,205,.1); border: 1px solid rgba(31,184,205,.3); border-radius: 99px; color: #1FB8CD; font-weight: 600; }
.px_q_pill .pulse { width: 6px; height: 6px; background: #1FB8CD; box-shadow: 0 0 0 0 rgba(31,184,205,.6); }
.px_q_pill_alt { background: rgba(255,210,63,.08); border-color: rgba(255,210,63,.3); color: #ffd23f; }
.px_q_time { color: #6f7578; }

.px_tabs { display: flex; gap: 22px; padding: 4px 0 16px; border-bottom: 1px solid #2a2c2c; margin-bottom: 22px; overflow-x: auto; }
.px_tab { display: inline-flex; align-items: center; gap: 8px; padding: 8px 0; font-size: 13.5px; color: #9aa1a4; cursor: pointer; white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -17px; }
.px_tab:hover { color: #f4f4f5; }
.px_tab.active { color: #f4f4f5; border-bottom-color: #1FB8CD; }
.px_tab_n { padding: 1px 7px; background: #2a2c2c; border-radius: 99px; font-size: 11px; font-weight: 600; }

.px_sources_h { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.px_h_lbl { font-size: 11.5px; color: #9aa1a4; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.px_h_count { font-size: 11px; padding: 2px 8px; background: #2a2c2c; border-radius: 99px; color: #cfd2d4; font-weight: 600; }
.px_sources { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: 30px; }
.px_src { padding: 12px 14px; background: #1c1e1f; border: 1px solid #2a2c2c; border-radius: 10px; cursor: pointer; transition: border .2s, background .2s; position: relative; }
.px_src:hover { border-color: #1FB8CD; background: #232627; }
.px_src_head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.px_fav { width: 18px; height: 18px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; }
.px_src_dom { font-size: 11.5px; color: #9aa1a4; font-family: ui-monospace, monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.px_src_t { font-size: 12.5px; color: #cfd2d4; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.px_src_n { position: absolute; top: 8px; right: 8px; font-size: 10px; color: #6f7578; font-family: ui-monospace, monospace; }
.px_src_more { display: flex; align-items: center; justify-content: center; font-size: 12.5px; color: #9aa1a4; font-weight: 600; }

.px_answer_h { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-top: 8px; }
.px_answer_h span { font-size: 13.5px; color: #f4f4f5; font-weight: 700; }
.px_answer_actions { margin-left: auto; display: flex; gap: 14px; color: #6f7578; }
.px_answer_actions svg:hover { color: #f4f4f5; cursor: pointer; }

.px_answer { color: #cfd2d4; font-size: 15px; line-height: 1.7; }
.px_answer p { margin-bottom: 16px; }
.px_answer em { color: #f4f4f5; font-style: italic; }
.px_cite { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; margin: 0 2px; font-size: 10.5px; font-weight: 700; background: rgba(31,184,205,.15); color: #1FB8CD; border-radius: 4px; cursor: pointer; vertical-align: super; line-height: 1; transition: background .2s; font-family: -apple-system, sans-serif; top: -2px; position: relative; }
.px_cite:hover { background: #1FB8CD; color: #0e0f10; }

.px_pick { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid #2a2c2c; }
.px_pick:first-of-type { border-top: 1px solid #2a2c2c; margin-top: 6px; }
.px_pick_n { width: 26px; height: 26px; border-radius: 50%; background: #2a2c2c; color: #f4f4f5; display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700; font-family: ui-monospace, monospace; }
.px_pick_n.red { background: rgba(248,113,113,.15); color: #f87171; }
.px_pick_main { min-width: 0; }
.px_pick_name { font-size: 16px; font-weight: 700; color: #f4f4f5; margin-bottom: 4px; }
.px_pick_meta { font-size: 13.5px; color: #9aa1a4; line-height: 1.55; margin-bottom: 8px; }
.px_pick_tags { display: flex; gap: 6px; flex-wrap: wrap; }
.px_pill { font-size: 11px; padding: 3px 9px; background: #2a2c2c; color: #cfd2d4; border-radius: 99px; font-weight: 600; letter-spacing: .02em; }
.px_pill.green { background: rgba(52,211,153,.15); color: #34d399; }
.px_pill.red { background: rgba(248,113,113,.15); color: #f87171; }
.px_pick_you { background: linear-gradient(90deg, rgba(248,113,113,.04), transparent); margin: 0 -16px; padding-left: 16px; padding-right: 16px; border-radius: 8px; }

.px_summary { padding: 14px 18px; background: rgba(255,210,63,.04); border-left: 3px solid #ffd23f; border-radius: 0 10px 10px 0; margin-top: 18px; color: #cfd2d4; font-size: 14.5px; }

.px_related { margin-top: 30px; padding-top: 24px; border-top: 1px solid #2a2c2c; }
.px_related_h { font-size: 11.5px; color: #9aa1a4; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.px_related_list { display: flex; flex-direction: column; gap: 2px; }
.px_rel_item { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 14px 4px; border-bottom: 1px solid #2a2c2c; cursor: pointer; transition: background .2s; font-size: 14.5px; color: #cfd2d4; }
.px_rel_item:last-child { border-bottom: 0; }
.px_rel_item:hover { color: #f4f4f5; padding-left: 8px; }
.px_rel_item svg { color: #6f7578; flex: 0 0 auto; }

.px_calc { margin-top: 28px; padding: 22px 24px; background: linear-gradient(135deg, rgba(255,210,63,.08), rgba(78,178,247,.05)); border: 1px solid rgba(255,210,63,.25); border-radius: 14px; display: flex; flex-direction: column; gap: 12px; }

/* Scanner internal pieces */
.scan_score_band { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 18px 22px; background: linear-gradient(135deg, rgba(255,210,63,.06), rgba(78,178,247,.04)); border: 1px solid rgba(255,210,63,.2); border-radius: 14px; margin-bottom: 26px; }
.scan_score_band_lbl { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; background: var(--yellow); color: var(--blue_deep); border-radius: 99px; margin-bottom: 8px; }
.scan_score_band_t { font-size: 22px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; color: #f4f4f5; }
.scan_score { position: relative; width: 120px; height: 120px; }
.scan_ring { width: 120px; height: 120px; }
.scan_score_inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.scan_score_v { font-size: 36px; font-weight: 800; letter-spacing: -.04em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.scan_score_l { font-size: 11px; color: #9aa1a4; font-weight: 600; }
.px_breakdown_h { font-size: 13px; font-weight: 800; color: #f4f4f5; letter-spacing: .04em; text-transform: uppercase; margin: 26px 0 10px; padding-top: 18px; border-top: 1px solid #2a2c2c; }
.px_pick_competitor { background: linear-gradient(90deg, rgba(248,113,113,.06), transparent); padding: 16px; border-radius: 10px; border-bottom: 0; margin-top: 0; }
.px_pick_competitor:first-of-type { border-top: 0; margin-top: 0; }
.scan_a_list { list-style: none; padding: 0; counter-reset: act; display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.scan_a_list li { counter-increment: act; padding: 14px 16px 14px 52px; background: rgba(31,184,205,.04); border: 1px solid rgba(31,184,205,.15); border-radius: 10px; font-size: 14px; color: #cfd2d4; line-height: 1.55; position: relative; }
.scan_a_list li::before { content: counter(act, decimal-leading-zero); position: absolute; left: 14px; top: 14px; font-family: ui-monospace, monospace; font-size: 11.5px; font-weight: 700; color: #0e0f10; background: #ffd23f; border-radius: 5px; padding: 3px 7px; line-height: 1; }
.serp_footer { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 30px; padding-top: 24px; border-top: 1px solid #2a2c2c; }

@media (max-width: 900px) {
  .px_app { grid-template-columns: 1fr; }
  .px_side { display: none; }
  .px_main { padding: 22px 18px; }
  .px_q_title { font-size: 22px; }
  .px_sources { grid-template-columns: repeat(2, 1fr); }
  .px_url_path { display: none; }
}
.demo_calc_row { display: flex; justify-content: space-between; align-items: center; font-size: 15px; color: var(--text2); }
.demo_calc_row strong { color: var(--text); font-weight: 700; font-size: 16px; }
.demo_calc_row.big { padding-top: 14px; border-top: 1px solid var(--border); }
.demo_calc_row.big strong { font-size: 28px; }

/* SCANNER */
.scanner { padding: 140px 0; position: relative; overflow: hidden; }
.scanner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 0%, rgba(255,210,63,.1), transparent 70%); pointer-events: none; }
.scan_wrap { max-width: 1080px; margin: 0 auto; position: relative; z-index: 2; }
.scan_box { padding: 40px; background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); border: 1px solid var(--border); border-radius: 28px; box-shadow: 0 50px 120px -40px rgba(46,138,232,.35); position: relative; overflow: hidden; }
.scan_box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 0%, rgba(78,178,247,.1), transparent 70%); pointer-events: none; }

.scan_form { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 14px; align-items: end; position: relative; z-index: 2; }
.scan_field { display: flex; flex-direction: column; gap: 8px; }
.scan_field label { font-size: 13px; color: var(--text2); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.scan_field input, .scan_field select { padding: 16px 20px; background: rgba(0,0,0,.3); border: 1px solid var(--border2); border-radius: 14px; color: var(--text); font-size: 15.5px; font-family: inherit; outline: none; transition: border .2s, background .2s; }
.scan_field input:focus, .scan_field select:focus { border-color: var(--yellow); background: rgba(0,0,0,.45); }
.scan_field input::placeholder { color: var(--muted); }
.scan_field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffd23f' d='M3 6l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.scan_field select option { background: var(--surface); color: var(--text); }
.scan_btn { padding: 16px 26px; font-size: 15px; height: 54px; }

@media (max-width: 800px) { .scan_form { grid-template-columns: 1fr; } .scan_btn { width: 100%; } }

[hidden] { display: none !important; }
.scan_run { margin-top: 30px; padding: 24px; background: rgba(0,0,0,.35); border: 1px solid var(--border); border-radius: 18px; position: relative; z-index: 2; }
.scan_log { display: flex; flex-direction: column; gap: 8px; min-height: 160px; font-family: ui-monospace, monospace; font-size: 13.5px; }
.scan_log_row { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: rgba(255,255,255,.02); border-left: 2px solid var(--blue_light); border-radius: 4px; opacity: 0; transform: translateY(6px); animation: log_in .3s forwards; }
.scan_log_row.ok { border-left-color: var(--green); }
.scan_log_row.warn { border-left-color: var(--yellow); }
.scan_log_row.err { border-left-color: var(--red); }
.scan_log_row .scan_log_t { color: var(--muted); flex: 0 0 auto; }
.scan_log_row .scan_log_msg { color: var(--text); flex: 1; }
.scan_log_row .scan_log_v { color: var(--yellow); font-weight: 700; }
@keyframes log_in { to { opacity: 1; transform: translateY(0); } }

.scan_progress { margin-top: 16px; height: 4px; background: rgba(255,255,255,.06); border-radius: 99px; overflow: hidden; }
.scan_pbar { height: 100%; width: 0; background: linear-gradient(90deg, #4eb2f7, #ffd23f); transition: width .2s; }

.scan_result { margin-top: 30px; position: relative; z-index: 2; }

.serp_window { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: 0 60px 140px -40px rgba(0,0,0,.55); }
.serp_bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; background: rgba(0,0,0,.55); border-bottom: 1px solid var(--border); }
.serp_searchbar { flex: 1; margin-left: 16px; padding: 10px 16px; background: rgba(255,255,255,.05); border: 1px solid var(--border2); border-radius: 12px; display: flex; align-items: center; gap: 12px; font-size: 14px; }
.serp_query_text { color: var(--text); font-weight: 700; flex: 1; }
.serp_chip { font-size: 11.5px; padding: 4px 10px; background: rgba(255,255,255,.06); border: 1px solid var(--border); border-radius: 99px; color: var(--text2); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.serp_chip_live { color: var(--yellow); border-color: rgba(255,210,63,.3); background: rgba(255,210,63,.08); }
.serp_chip_live .pulse { width: 6px; height: 6px; }

.serp_overview { display: grid; grid-template-columns: 1fr 220px; gap: 30px; padding: 30px 28px; background: linear-gradient(135deg, rgba(255,210,63,.06), rgba(78,178,247,.04)); border-bottom: 1px solid var(--border); align-items: center; }
.serp_ov_label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); padding: 6px 12px; background: rgba(255,210,63,.08); border: 1px solid rgba(255,210,63,.25); border-radius: 99px; margin-bottom: 14px; align-self: flex-start; }
.serp_ov_title { font-size: 30px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; color: var(--text); margin-bottom: 12px; }
.serp_ov_text { font-size: 15.5px; color: var(--text2); line-height: 1.65; margin-bottom: 16px; max-width: 580px; }
.serp_ov_pill { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; background: var(--yellow); color: var(--blue_deep); border-radius: 99px; }
.serp_ov_right { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scan_score { position: relative; width: 170px; height: 170px; }
.scan_ring { width: 170px; height: 170px; }
.scan_score_inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.scan_score_v { font-size: 52px; font-weight: 800; letter-spacing: -.04em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.scan_score_l { font-size: 13px; color: var(--text2); font-weight: 600; }
.serp_score_lbl { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text2); }

.serp_section { padding: 24px 28px; border-bottom: 1px solid var(--border); }
.serp_section:last-of-type { border-bottom: 0; }
.serp_section_h { margin-bottom: 18px; }
.serp_section_t { font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.serp_section_s { font-size: 13px; color: var(--text2); margin-top: 4px; }

.serp_results { display: flex; flex-direction: column; gap: 10px; }
.serp_result { display: grid; grid-template-columns: 38px 36px 1fr auto; gap: 16px; padding: 16px 18px; background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 14px; align-items: flex-start; transition: border .25s, background .25s; }
.serp_result:hover { border-color: var(--yellow); background: rgba(255,210,63,.03); }
.serp_result.is_zero { background: rgba(248,113,113,.04); border-color: rgba(248,113,113,.2); }
.serp_pos { font-family: ui-monospace, monospace; font-size: 14px; font-weight: 700; color: var(--yellow); padding-top: 4px; }
.serp_result.is_zero .serp_pos { color: var(--red); }
.serp_logo { width: 36px; height: 36px; border-radius: 9px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.serp_main { min-width: 0; }
.serp_url { font-size: 12.5px; color: var(--blue_light); font-family: ui-monospace, monospace; margin-bottom: 4px; }
.serp_title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.serp_snip { font-size: 13.5px; color: var(--text2); line-height: 1.55; margin-bottom: 10px; }
.serp_track { height: 4px; background: rgba(255,255,255,.06); border-radius: 99px; overflow: hidden; max-width: 320px; }
.serp_track span { display: block; height: 100%; width: var(--v); background: linear-gradient(90deg, var(--blue_light), var(--yellow)); border-radius: 99px; transition: width .8s; }
.serp_count_box { display: flex; flex-direction: column; align-items: flex-end; padding: 8px 14px; background: rgba(255,255,255,.04); border-radius: 10px; min-width: 70px; }
.serp_count_v { font-size: 22px; font-weight: 800; color: var(--yellow); letter-spacing: -.02em; line-height: 1; }
.serp_count_l { font-size: 11px; color: var(--text2); font-weight: 600; }
.serp_result.is_zero .serp_count_v { color: var(--red); }

.serp_competitor { display: grid; grid-template-columns: 56px 1fr auto; gap: 16px; align-items: center; padding: 18px 22px; background: rgba(248,113,113,.06); border: 1px solid rgba(248,113,113,.25); border-radius: 14px; }
.serp_comp_avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #f87171, #fbb03b); color: var(--blue_deep); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; }
.serp_comp_url { font-size: 12.5px; color: var(--blue_light); font-family: ui-monospace, monospace; margin-bottom: 4px; }
.serp_comp_name { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.serp_comp_tag { font-size: 13px; color: var(--text2); }
.serp_comp_score { display: flex; flex-direction: column; align-items: flex-end; padding: 10px 16px; background: rgba(0,0,0,.3); border-radius: 12px; }
.serp_comp_score span:first-child { font-size: 28px; font-weight: 800; letter-spacing: -.02em; color: var(--text); line-height: 1; }
.serp_comp_max { font-size: 11px; color: var(--text2); font-weight: 600; }

.scan_a_list { list-style: none; padding: 0; counter-reset: act; display: flex; flex-direction: column; gap: 12px; }
.scan_a_list li { counter-increment: act; padding: 14px 18px 14px 56px; background: rgba(78,178,247,.04); border: 1px solid rgba(78,178,247,.18); border-radius: 12px; font-size: 14.5px; color: var(--text); line-height: 1.55; position: relative; }
.scan_a_list li::before { content: counter(act, decimal-leading-zero); position: absolute; left: 16px; top: 14px; font-family: ui-monospace, monospace; font-size: 13px; font-weight: 700; color: var(--blue_deep); background: var(--yellow); border-radius: 6px; padding: 4px 8px; line-height: 1; }

.serp_footer { padding: 24px 28px; background: rgba(0,0,0,.3); display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

@media (max-width: 800px) {
  .serp_overview { grid-template-columns: 1fr; gap: 20px; }
  .serp_ov_right { align-items: flex-start; }
  .serp_result { grid-template-columns: 28px 1fr; gap: 10px; }
  .serp_result .serp_logo, .serp_result .serp_count_box { grid-column: 2; }
  .serp_competitor { grid-template-columns: 48px 1fr; }
  .serp_comp_score { grid-column: 2; }
}

/* PRODUCT STEPS */
.product { padding: 140px 0; }
.steps { display: flex; flex-direction: column; gap: 24px; max-width: 1180px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 80px 1fr 1.2fr; grid-template-rows: auto 1fr; column-gap: 32px; row-gap: 18px; padding: 36px; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); align-items: start; }
.step_num { grid-column: 1; grid-row: 1 / 3; font-family: ui-monospace, monospace; font-size: 16px; font-weight: 700; color: var(--yellow); padding: 10px 14px; background: rgba(255,210,63,.12); border-radius: 12px; align-self: start; width: fit-content; }
.step_title { grid-column: 2 / 4; grid-row: 1; font-size: 28px; font-weight: 700; letter-spacing: -.02em; margin: 0; color: var(--text); }
.step_p { grid-column: 2; grid-row: 2; font-size: 15.5px; color: var(--text2); line-height: 1.65; padding-top: 4px; }
.step_visual { grid-column: 3; grid-row: 2; }
.step_visual { padding: 0; background: transparent; border: 0; border-radius: 0; }

/* Step 1 — diag card */
.diag_card { background: linear-gradient(180deg, var(--surface), rgba(0,0,0,.35)); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0,0,0,.4); }
.diag_head { padding: 16px 18px; background: rgba(0,0,0,.35); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.diag_brand { display: flex; align-items: center; gap: 10px; }
.diag_logo { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #4eb2f7, #ffd23f); color: var(--blue_deep); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.diag_name { font-size: 14px; font-weight: 700; color: var(--text); }
.diag_meta { font-size: 12px; color: var(--text2); }
.diag_score_pill { display: flex; flex-direction: column; align-items: flex-end; padding: 6px 12px; background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.3); border-radius: 10px; }
.diag_score_pill span { font-size: 10.5px; color: var(--red); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.diag_score_pill strong { font-size: 16px; color: var(--red); font-weight: 800; line-height: 1; }
.diag_rows { padding: 14px 18px; display: flex; flex-direction: column; gap: 10px; }
.diag_row { display: grid; grid-template-columns: 24px 1fr 110px 26px; gap: 12px; align-items: center; font-size: 13px; }
.diag_logo_sm { display: flex; align-items: center; justify-content: center; }
.diag_lname { color: var(--text); font-weight: 600; }
.diag_track { height: 6px; background: rgba(255,255,255,.05); border-radius: 99px; overflow: hidden; position: relative; }
.diag_track span { position: absolute; inset: 0; width: var(--v); background: linear-gradient(90deg, var(--blue_light), var(--yellow)); border-radius: 99px; }
.diag_v { font-weight: 700; color: var(--yellow); text-align: right; font-size: 14px; }
.diag_v.zero { color: var(--red); }
.diag_foot { padding: 12px 18px; background: rgba(0,0,0,.3); border-top: 1px solid var(--border); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.diag_foot_lbl { font-size: 12px; color: var(--text2); font-weight: 600; }
.diag_chip { font-size: 11.5px; padding: 4px 10px; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 99px; color: var(--text); font-weight: 600; }

/* Step 2 — sources */
.src_real { display: flex; flex-direction: column; gap: 10px; }
.src_real_card { display: grid; grid-template-columns: 36px 1fr auto; gap: 14px; align-items: center; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; transition: border .25s; }
.src_real_card:hover { border-color: var(--yellow); }
.src_logo { width: 36px; height: 36px; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.src_info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.src_name { font-size: 13.5px; font-weight: 700; color: var(--text); }
.src_diff { display: flex; align-items: center; gap: 8px; font-size: 12px; flex-wrap: wrap; }
.src_old { color: var(--muted); text-decoration: line-through; opacity: .7; }
.src_arrow { color: var(--yellow); font-weight: 700; }
.src_new { color: var(--text); font-weight: 600; }
.src_tag { font-size: 12px; padding: 6px 12px; background: rgba(52,211,153,.14); color: var(--green); border: 1px solid rgba(52,211,153,.3); border-radius: 99px; font-weight: 700; white-space: nowrap; }

/* Step 3 — growth */
.growth_card { padding: 22px; background: linear-gradient(180deg, var(--surface), rgba(0,0,0,.3)); border: 1px solid var(--border); border-radius: 18px; }
.growth_head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.growth_t { font-size: 14px; color: var(--text2); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.growth_d { font-size: 16px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.02em; }
.growth_chart { height: 140px; margin-bottom: 8px; }
.growth_chart svg { width: 100%; height: 100%; overflow: visible; }
.growth_legend { display: flex; justify-content: space-between; font-size: 11px; color: var(--text2); padding: 0 4px; margin-bottom: 16px; font-family: ui-monospace, monospace; }
.growth_kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 16px; border-top: 1px solid var(--border); }
.growth_kpi { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.growth_kpi_v { font-size: 22px; font-weight: 800; color: var(--yellow); letter-spacing: -.02em; line-height: 1; }
.growth_kpi_l { font-size: 11.5px; color: var(--text2); }

@media (max-width: 900px) { .step { grid-template-columns: 1fr; grid-template-rows: auto; row-gap: 14px; } .step_num, .step_title, .step_p, .step_visual { grid-column: 1; grid-row: auto; } }

/* WHERE */
.where { padding: 140px 0; background: linear-gradient(180deg, var(--bg), var(--bg2), var(--bg)); }
.where_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.where_card { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: transform .25s, border .25s; }
.where_card:hover { transform: translateY(-3px); border-color: var(--yellow); }
.where_logo { margin-bottom: 18px; }
.where_name { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 6px; }
.where_ratio { font-size: 13.5px; color: var(--text2); margin-bottom: 14px; }
.where_ratio span { color: var(--yellow); font-weight: 700; }
.where_p { font-size: 14.5px; color: var(--text2); line-height: 1.6; }
@media (max-width: 1000px) { .where_grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .where_grid { grid-template-columns: 1fr; } }

/* STORY */
.storyA, .storyB { padding: 140px 0; }
.storyB { background: linear-gradient(180deg, var(--bg), var(--bg2)); }
.story_inner { display: grid; grid-template-columns: 380px 1fr; gap: 60px; max-width: 1100px; margin: 60px auto 0; align-items: start; }
.story_inner.reverse { grid-template-columns: 1fr 380px; }
.story_inner.reverse .story_visual { order: 2; }
.story_inner.reverse .story_text { order: 1; }
.story_visual { position: sticky; top: 100px; }
.story_card { display: flex; align-items: center; gap: 16px; padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; margin-bottom: 18px; }
.story_avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #2e8ae8, #4eb2f7); color: var(--blue_deep); font-weight: 800; font-size: 19px; display: flex; align-items: center; justify-content: center; flex: 0 0 52px; }
.story_avatar.gradB { background: linear-gradient(135deg, #ffd23f, #fbb03b); color: var(--blue_deep); }
.story_avatar.gradC { background: linear-gradient(135deg, #fbb03b, #f6c026); color: var(--blue_deep); }
.story_avatar.gradD { background: linear-gradient(135deg, #4eb2f7, #ffd23f); color: var(--blue_deep); }
.story_avatar.gradE { background: linear-gradient(135deg, #2e8ae8, #ffd23f); color: var(--blue_deep); }
.story_avatar.gradF { background: linear-gradient(135deg, #1d6fd6, #4eb2f7); color: #fff; }
.story_name { font-size: 17px; font-weight: 700; }
.story_role { font-size: 13.5px; color: var(--text2); margin-top: 2px; }
.story_kpis { display: flex; flex-direction: column; gap: 10px; }
.story_kpi { padding: 16px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; }
.story_kpi.pop { background: linear-gradient(135deg, rgba(255,210,63,.15), rgba(78,178,247,.08)); border-color: rgba(255,210,63,.4); }
.kpi_lbl { font-size: 12px; color: var(--text2); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.kpi_val { font-size: 19px; font-weight: 700; margin-top: 4px; }
.story_kpi.pop .kpi_val { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 22px; }

.story_text p { font-size: 17px; line-height: 1.75; color: var(--text2); margin-bottom: 22px; }
.story_text p:first-child::first-letter { font-family: 'Instrument Serif', serif; font-size: 64px; float: left; line-height: 1; padding: 4px 12px 0 0; color: var(--yellow); }
.story_text em { color: var(--yellow); font-style: normal; background: rgba(255,210,63,.12); padding: 2px 8px; border-radius: 6px; }
.story_quote { font-family: 'Instrument Serif', serif; font-size: 26px; line-height: 1.4; color: var(--text) !important; padding: 24px 28px; border-left: 3px solid var(--yellow); background: linear-gradient(90deg, rgba(255,210,63,.12), transparent); border-radius: 0 14px 14px 0; font-style: italic; }

@media (max-width: 900px) { .story_inner, .story_inner.reverse { grid-template-columns: 1fr; } .story_visual { position: relative; top: 0; } .story_inner.reverse .story_visual { order: 0; } .story_inner.reverse .story_text { order: 1; } }

/* DASHBOARD */
.dashboard { padding: 140px 0; }
.dash_window { max-width: 1200px; margin: 60px auto 0; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: 0 60px 160px -40px rgba(46,138,232,.35); }
.dash_top { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; background: rgba(0,0,0,.45); border-bottom: 1px solid var(--border); }
.dash_left { display: flex; align-items: center; gap: 36px; }
.dash_brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; }
.dash_nav { display: flex; gap: 22px; font-size: 13.5px; color: var(--text2); }
.dash_nav span { cursor: pointer; padding: 4px 0; transition: color .2s; }
.dash_nav span.active { color: var(--text); border-bottom: 2px solid var(--yellow); }
.dash_nav span:hover { color: var(--text); }
.dash_right { display: flex; align-items: center; gap: 14px; }
.dash_search { padding: 8px 14px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 8px; font-size: 13.5px; color: var(--text2); }
.dash_avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #4eb2f7, #ffd23f); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; color: var(--blue_deep); }

.dash_body { padding: 28px; }
.dash_kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.d_kpi { padding: 22px; border: 1px solid var(--border); border-radius: 14px; background: rgba(255,255,255,.02); }
.d_kpi_lbl { font-size: 12.5px; color: var(--text2); margin-bottom: 8px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.d_kpi_val { font-size: 36px; font-weight: 800; letter-spacing: -.02em; }
.d_kpi_max { font-size: 16px; color: var(--text2); font-weight: 500; }
.d_kpi_chg { font-size: 12.5px; margin-top: 6px; font-weight: 600; }
.d_kpi_chg.up { color: var(--green); }
.d_kpi_chg.up::before { content: '↑ '; }

.dash_grid { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.dash_card { padding: 22px; border: 1px solid var(--border); border-radius: 14px; background: rgba(255,255,255,.02); }
.dash_card.big { grid-column: 1 / -1; }
.dc_head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dc_title { font-size: 15.5px; font-weight: 600; }
.dc_legend { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text2); }
.lg { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 4px; margin-left: 6px; }
.lg1 { background: #4eb2f7; }
.lg2 { background: #ffd23f; }
.lg3 { background: #fbb03b; }
.lg4 { background: #2e8ae8; }
.dc_chart { height: 220px; }
.chart { width: 100%; height: 100%; }
.chart path[fill="url(#ag)"] { fill: rgba(78,178,247,.18); }
.chart path[stroke="#a78bfa"] { stroke: #4eb2f7; }
.chart path[stroke="#ec4899"] { stroke: #ffd23f; }
.chart path[stroke="#fbbf24"] { stroke: #fbb03b; }
.chart path[stroke="#22d3ee"] { stroke: #2e8ae8; }

.prompt_list, .comp_list { display: flex; flex-direction: column; gap: 10px; }
.prompt_row { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: rgba(255,255,255,.02); border-radius: 8px; font-size: 13.5px; color: var(--text2); }
.prompt_row strong { color: var(--yellow); font-weight: 700; }

.comp_row { display: grid; grid-template-columns: 24px 110px 1fr 32px; gap: 10px; align-items: center; font-size: 13.5px; }
.comp_rank { font-family: ui-monospace, monospace; color: var(--text2); }
.comp_name { font-weight: 600; }
.comp_bar { height: 6px; background: rgba(255,255,255,.06); border-radius: 99px; overflow: hidden; }
.comp_bar span { display: block; height: 100%; width: var(--w); background: var(--grad); border-radius: 99px; }
.comp_row strong { text-align: right; font-weight: 700; }

.src_grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.src_box { padding: 16px 8px; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 10px; text-align: center; }
.src_pct { display: block; font-size: 22px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.src_lbl { font-size: 11.5px; color: var(--text2); display: block; margin-top: 4px; }

@media (max-width: 1000px) { .dash_kpis { grid-template-columns: repeat(2, 1fr); } .dash_grid { grid-template-columns: 1fr; } .src_grid { grid-template-columns: repeat(4, 1fr); } .dash_nav { display: none; } }

/* VERSUS */
.versus { padding: 140px 0; }
.vs_table_wrap { overflow-x: auto; max-width: 1180px; margin: 60px auto 0; }
.vs_table { width: 100%; border-collapse: collapse; min-width: 880px; }
.vs_table th, .vs_table td { padding: 18px 22px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--border); color: var(--text2); }
.vs_table th { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; color: var(--text2); padding-bottom: 16px; padding-top: 22px; }
.vs_table th.us { color: var(--text); position: relative; }
.vs_table th.us::after { content: ''; position: absolute; left: 8px; right: 8px; bottom: -1px; height: 2px; background: var(--grad); border-radius: 99px; }
.vs_table td:first-child { font-weight: 600; color: var(--text); }
.vs_table td.us { background: linear-gradient(180deg, rgba(255,210,63,.08), rgba(255,210,63,.02)); color: var(--text); }
.vs_table td.us strong { color: var(--yellow); font-size: 17px; }

/* PRICING */
.pricing { padding: 140px 0; background: linear-gradient(180deg, var(--bg), var(--bg2)); }
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1280px; margin: 0 auto; }
.plan { padding: 32px 26px; border: 1px solid var(--border); border-radius: 22px; background: var(--surface); display: flex; flex-direction: column; gap: 18px; position: relative; transition: transform .25s, border .25s; }
.plan:hover { transform: translateY(-4px); }
.plan_hot { border-color: rgba(255,210,63,.5); background: linear-gradient(180deg, rgba(255,210,63,.12), rgba(78,178,247,.05)); transform: scale(1.04); box-shadow: 0 40px 100px -20px rgba(255,210,63,.3); }
.plan_hot:hover { transform: scale(1.04) translateY(-4px); }
.plan_dark { background: linear-gradient(180deg, #02122a, #061a36); border-color: var(--border2); }
.plan_badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--blue_deep); font-size: 11.5px; font-weight: 700; padding: 5px 14px; border-radius: 99px; letter-spacing: .06em; text-transform: uppercase; }
.plan_name { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.plan_who { font-size: 13.5px; color: var(--text2); margin-top: -10px; }
.plan_price { font-size: 56px; font-weight: 800; letter-spacing: -.04em; line-height: 1; display: flex; align-items: baseline; gap: 4px; }
.plan_cur { font-size: 22px; font-weight: 700; color: var(--text2); }
.plan_per { font-size: 14.5px; font-weight: 500; color: var(--text2); margin-left: 6px; }
.plan_feats { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan_feats li { font-size: 14.5px; color: var(--text2); padding-left: 26px; position: relative; line-height: 1.5; }
.plan_feats li::before { content: ''; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: rgba(255,210,63,.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffd23f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m4 8 3 3 5-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.plan_cta { width: 100%; }
.plan_oneoff { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; background: var(--yellow); color: var(--blue_deep); border-radius: 99px; align-self: flex-start; margin-bottom: 4px; }
.plan_dark .plan_oneoff { background: var(--blue_light); color: var(--blue_deep); }
.plan_savings { font-size: 13px; color: var(--text2); margin-top: -10px; font-weight: 500; opacity: .85; }
.pricing_foot { text-align: center; max-width: 720px; margin: 60px auto 0; font-size: 16px; color: var(--text2); }

@media (max-width: 1100px) { .plans { grid-template-columns: repeat(2, 1fr); } .plan_hot { transform: scale(1); } .plan_hot:hover { transform: translateY(-4px); } }
@media (max-width: 600px) { .plans { grid-template-columns: 1fr; } }

/* URGENCY TIMELINE */
.urgency { padding: 140px 0; }
.urgency_inner { max-width: 1100px; margin: 0 auto; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 60px; }
.tline { display: flex; flex-direction: column; gap: 14px; }
.tline_year { font-family: ui-monospace, monospace; font-size: 14px; font-weight: 700; color: var(--yellow); padding: 6px 12px; background: rgba(255,210,63,.12); border-radius: 8px; align-self: start; }
.tline_box { padding: 26px; border: 1px solid var(--border); background: var(--surface); border-radius: 18px; flex: 1; }
.tline_box.live { border-color: rgba(255,210,63,.5); background: linear-gradient(180deg, rgba(255,210,63,.12), rgba(78,178,247,.05)); position: relative; }
.tline_h { font-size: 17px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.tline_box p { font-size: 14.5px; color: var(--text2); line-height: 1.65; }
.live_dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }

@media (max-width: 1000px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .timeline { grid-template-columns: 1fr; } }

/* TRUST */
.trust { padding: 100px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.trust_kicker { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text2); margin-bottom: 22px; }
.trust_logos { display: flex; flex-wrap: wrap; gap: 16px 22px; }
.trust_logos span { font-size: 16px; font-weight: 600; color: var(--text); padding: 8px 16px; border: 1px solid var(--border); border-radius: 99px; background: rgba(255,255,255,.02); }
@media (max-width: 800px) { .trust_grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.testimonials { padding: 140px 0; }
.t_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1180px; margin: 60px auto 0; }
.t_card { padding: 32px; background: linear-gradient(180deg, var(--surface), rgba(255,255,255,.01)); border: 1px solid var(--border); border-radius: 24px; display: flex; flex-direction: column; gap: 20px; transition: transform .25s, border .25s, box-shadow .25s; position: relative; overflow: hidden; }
.t_card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,210,63,.5), transparent); opacity: 0; transition: opacity .3s; }
.t_card:hover { transform: translateY(-4px); border-color: rgba(255,210,63,.4); box-shadow: 0 30px 80px -30px rgba(255,210,63,.2); }
.t_card:hover::before { opacity: 1; }
.t_big { grid-row: span 1; background: linear-gradient(180deg, rgba(255,210,63,.06), rgba(78,178,247,.04)); border-color: rgba(255,210,63,.3); }
.t_top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.t_quote_mark { color: var(--yellow); opacity: .4; }
.t_logo { display: flex; align-items: center; gap: 8px; padding: 6px 12px 6px 8px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 99px; font-size: 12.5px; color: var(--text2); font-weight: 600; }
.t_metric { display: flex; align-items: baseline; gap: 10px; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.t_metric_v { font-size: 32px; font-weight: 800; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.t_metric_l { font-size: 13.5px; color: var(--text2); flex: 1; }
.t_quote { font-size: 16.5px; line-height: 1.6; color: var(--text); font-weight: 500; }
.t_big .t_quote { font-size: 19px; }
.t_author { display: flex; align-items: center; gap: 14px; }
.t_author > div:nth-child(2) { flex: 1; }
.t_stars { display: flex; gap: 2px; }
.t_avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #2e8ae8, #4eb2f7); color: var(--blue_deep); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 14.5px; flex: 0 0 44px; }
.t_avatar.gradB { background: linear-gradient(135deg, #ffd23f, #fbb03b); color: var(--blue_deep); }
.t_avatar.gradC { background: linear-gradient(135deg, #fbb03b, #f6c026); color: var(--blue_deep); }
.t_avatar.gradD { background: linear-gradient(135deg, #4eb2f7, #ffd23f); color: var(--blue_deep); }
.t_avatar.gradE { background: linear-gradient(135deg, #2e8ae8, #ffd23f); color: var(--blue_deep); }
.t_avatar.gradF { background: linear-gradient(135deg, #1d6fd6, #4eb2f7); color: #fff; }
.t_name { font-size: 14.5px; font-weight: 700; }
.t_role { font-size: 13px; color: var(--text2); margin-top: 2px; }
@media (max-width: 1000px) { .t_grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .t_grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { padding: 140px 0; }
.faq_list { max-width: 880px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq_item { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.faq_item summary { padding: 22px 28px; cursor: pointer; font-size: 17px; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq_item summary::-webkit-details-marker { display: none; }
.faq_item summary::after { content: '+'; font-size: 26px; color: var(--yellow); font-weight: 300; transition: transform .25s; line-height: 1; }
.faq_item[open] summary::after { transform: rotate(45deg); }
.faq_item p { padding: 0 28px 24px; font-size: 15.5px; line-height: 1.7; color: var(--text2); }

/* CTA */
.cta { padding: 140px 0 100px; position: relative; }
.cta_box { max-width: 980px; margin: 0 auto; padding: 80px 50px 70px; background: linear-gradient(135deg, rgba(78,178,247,.18), rgba(255,210,63,.1), rgba(46,138,232,.1)); border: 1px solid rgba(255,210,63,.3); border-radius: 36px; text-align: center; position: relative; overflow: hidden; }
.cta_box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(255,210,63,.22), transparent 70%); pointer-events: none; }
.cta_or { margin-top: 20px; font-size: 14px; color: var(--text2); position: relative; z-index: 2; }
.cta_or a { color: var(--yellow); font-weight: 700; border-bottom: 1px solid rgba(255,210,63,.4); }
.cta_or a:hover { border-bottom-color: var(--yellow); }
.cta_title { font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: -.04em; line-height: 1; margin: 22px 0; }
.cta_sub { font-size: 18px; color: var(--text2); max-width: 640px; margin: 0 auto 36px; line-height: 1.6; }
.cta_form { display: flex; gap: 10px; max-width: 640px; margin: 0 auto; flex-wrap: wrap; }
.cta_form input { flex: 1 1 200px; padding: 16px 20px; background: rgba(0,0,0,.35); border: 1px solid var(--border2); border-radius: 99px; color: var(--text); font-size: 15px; outline: none; transition: border .2s; }
.cta_form input:focus { border-color: var(--yellow); }
.cta_form input::placeholder { color: var(--muted); }
.cta_form button { flex: 0 0 auto; padding: 16px 26px; }
.cta_form button.done { background: var(--green); color: #fff; }
.cta_meta { display: flex; justify-content: center; gap: 14px; margin-top: 26px; font-size: 13.5px; color: var(--text2); flex-wrap: wrap; }
.dot_sep { width: 4px; height: 4px; border-radius: 50%; background: var(--text2); align-self: center; }

/* ARTICLE PAGES */
.breadcrumb { padding: 18px 0 0; font-size: 13px; color: var(--text2); }
.breadcrumb a { color: var(--yellow); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.bc_sep { margin: 0 8px; color: var(--muted); }
.bc_current { color: var(--text); font-weight: 600; }

.article_hero { padding: 48px 0 80px; }
.article_h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 800; letter-spacing: -.04em; line-height: 1.04; margin: 18px 0 18px; }
.article_h1_sub { font-size: clamp(18px, 2vw, 22px); color: var(--text2); margin-bottom: 28px; max-width: 860px; line-height: 1.45; font-weight: 500; }
.article_lead { font-size: 17.5px; color: var(--text2); line-height: 1.7; max-width: 760px; margin-bottom: 32px; }
.article_meta { display: flex; gap: 24px; flex-wrap: wrap; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 32px; max-width: 760px; font-size: 14px; color: var(--text2); }
.article_meta_item strong { color: var(--text); margin-right: 6px; }
.article_ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.article_demo { padding: 80px 0; background: linear-gradient(180deg, var(--bg), var(--bg2), var(--bg)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.article_demo_cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }

.article_body { padding: 100px 0; }
.article_grid { display: grid; grid-template-columns: 240px 1fr; gap: 60px; max-width: 1100px; margin: 0 auto; }
.article_toc { position: sticky; top: 100px; align-self: start; }
.toc_h { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--text2); margin-bottom: 14px; padding-left: 14px; }
.article_toc nav { display: flex; flex-direction: column; padding: 4px 0; border-left: 1px solid var(--border); margin-bottom: 28px; }
.article_toc nav a { position: relative; font-size: 13px; color: var(--text2); padding: 7px 14px; line-height: 1.45; transition: color .2s, border-color .2s, padding .2s; }
.article_toc nav a::before { content: ''; position: absolute; left: -1px; top: 7px; bottom: 7px; width: 2px; background: var(--yellow); border-radius: 2px; opacity: 0; transition: opacity .2s; }
.article_toc nav a:hover { color: var(--text); padding-left: 18px; }
.article_toc nav a:hover::before { opacity: 1; }

.toc_cta { padding: 20px; background: linear-gradient(180deg, rgba(255,210,63,.05), rgba(78,178,247,.03)); border: 1px solid var(--border); border-radius: 16px; position: relative; overflow: hidden; transition: border .25s, transform .25s; }
.toc_cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,210,63,.5), transparent); opacity: 0; transition: opacity .3s; }
.toc_cta:hover { border-color: rgba(255,210,63,.35); transform: translateY(-2px); }
.toc_cta:hover::before { opacity: 1; }
.toc_cta_icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,210,63,.12); margin-bottom: 12px; }
.toc_cta_icon svg { filter: drop-shadow(0 0 8px rgba(255,210,63,.4)); }
.toc_cta_title { font-size: 14.5px; font-weight: 800; color: var(--text); letter-spacing: -.01em; line-height: 1.25; margin-bottom: 6px; }
.toc_cta_sub { font-size: 12.5px; color: var(--text2); line-height: 1.5; margin-bottom: 14px; }
.toc_cta_meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.toc_cta_pill { font-size: 10.5px; font-weight: 700; padding: 3px 8px; background: rgba(255,210,63,.1); color: var(--yellow); border-radius: 99px; letter-spacing: .04em; border: 1px solid rgba(255,210,63,.18); }
.toc_cta_link { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 11px 14px; background: var(--yellow); color: var(--blue_deep); border-radius: 10px; font-size: 13px; font-weight: 700; transition: background .2s, transform .2s; letter-spacing: -.01em; }
.toc_cta_link:hover { background: #ffdc5e; }
.toc_cta_link svg { transition: transform .2s; }
.toc_cta:hover .toc_cta_link svg { transform: translateX(3px); }

.article_content { max-width: 760px; }
.article_section { margin-bottom: 56px; scroll-margin-top: 100px; }
.article_h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; letter-spacing: -.025em; line-height: 1.15; margin-bottom: 22px; color: var(--text); }
.article_p { font-size: 17px; color: var(--text2); line-height: 1.75; margin-bottom: 18px; }
.article_p a { color: var(--yellow); font-weight: 600; border-bottom: 1px solid rgba(255,210,63,.3); }
.article_p a:hover { border-bottom-color: var(--yellow); }
.article_p strong { color: var(--text); font-weight: 700; }

.article_cta_inline { padding: 32px; background: linear-gradient(135deg, rgba(255,210,63,.08), rgba(78,178,247,.05)); border: 1px solid rgba(255,210,63,.25); border-radius: 22px; margin-top: 40px; }

@media (max-width: 900px) {
  .article_grid { grid-template-columns: 1fr; gap: 30px; }
  .article_toc { position: relative; top: 0; }
  .article_toc nav { display: none; }
}

.article_related { padding: 100px 0; background: linear-gradient(180deg, var(--bg2), var(--bg)); border-top: 1px solid var(--border); }
.rel_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1180px; margin: 60px auto 0; }
.rel_card { display: flex; flex-direction: column; gap: 14px; padding: 28px 26px 24px; background: linear-gradient(180deg, var(--surface), rgba(78,178,247,.02)); border: 1px solid var(--border); border-radius: 22px; transition: transform .3s cubic-bezier(.2,.8,.2,1), border .3s, background .3s, box-shadow .3s; position: relative; overflow: hidden; }
.rel_card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--yellow), transparent); opacity: 0; transition: opacity .3s; }
.rel_card::after { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(255,210,63,.08) 0%, transparent 50%); opacity: 0; transition: opacity .35s; pointer-events: none; }
.rel_card:hover { transform: translateY(-5px); border-color: rgba(255,210,63,.5); box-shadow: 0 30px 80px -30px rgba(255,210,63,.3); }
.rel_card:hover::before { opacity: 1; }
.rel_card:hover::after { opacity: 1; }
.rel_top { display: flex; align-items: center; gap: 10px; }
.rel_icon { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(255,210,63,.12); color: var(--yellow); transition: background .3s, color .3s, transform .3s; }
.rel_card:hover .rel_icon { background: var(--yellow); color: var(--blue_deep); transform: rotate(-6deg) scale(1.05); }
.rel_kicker { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); padding: 5px 10px; background: rgba(255,210,63,.08); border: 1px solid rgba(255,210,63,.18); border-radius: 99px; }
.rel_title { font-size: 19px; font-weight: 800; color: var(--text); line-height: 1.25; letter-spacing: -.015em; flex: 0 0 auto; }
.rel_excerpt { font-size: 13.5px; color: var(--text2); line-height: 1.55; flex: 1; min-height: 42px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rel_foot { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto; }
.rel_cta { font-size: 13px; font-weight: 700; color: var(--yellow); letter-spacing: .02em; }
.rel_arrow { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,210,63,.12); color: var(--yellow); font-size: 18px; font-weight: 700; transition: transform .3s, background .3s, color .3s; }
.rel_card:hover .rel_arrow { transform: translateX(6px); background: var(--yellow); color: var(--blue_deep); }
@media (max-width: 1000px) { .rel_grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .rel_grid { grid-template-columns: 1fr; } }

/* FOOTER */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--border); background: #02122a; }
.footer_inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.footer_top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.footer_brand p { font-size: 14.5px; color: var(--text2); margin: 18px 0 22px; line-height: 1.6; max-width: 320px; }
.footer_addr { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; color: var(--text2); }
.footer_h { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text2); margin-bottom: 18px; }
.footer_col a { display: block; font-size: 14.5px; color: var(--text); margin-bottom: 12px; transition: color .2s; }
.footer_col a:hover { color: var(--yellow); }
.footer_bot { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--text2); }
.footer_socials { display: flex; gap: 14px; }
.footer_socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.04); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text); transition: background .2s, border .2s; }
.footer_socials a:hover { background: rgba(255,210,63,.12); border-color: var(--yellow); }
@media (max-width: 1000px) { .footer_top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer_top { grid-template-columns: 1fr; } .nav_links { display: none; } }
