Spaces:
Runtime error
Runtime error
File size: 177,841 Bytes
179d606 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 | :root {
--navy: #052962;
--navy-dark: #041e4d;
--navy-glow: rgba(5, 41, 98, 0.12);
--yellow: #ffe500;
--yellow-soft: #fff8b3;
--red: #dc2626;
--green: #16a34a;
--orange: #f59e0b;
--rose: #fbf0f3;
--beige: #f9f6e9;
--peche: #fcefe5;
--ink: #121212;
--ink-soft: #4a4a4a;
--ink-faint: #8a8a8a;
--line: #e6e6ea;
--line-soft: #f0f0f3;
--bg-soft: #fafafb;
/* Radius scale */
--r-sm: 6px;
--r: 10px;
--r-lg: 16px;
--r-xl: 24px;
--r-pill: 9999px;
/* Shadow scale (modern, soft, multi-layer) */
--sh-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
--sh-md: 0 4px 8px -2px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
--sh-lg: 0 14px 28px -8px rgba(15, 23, 42, 0.14), 0 6px 12px -6px rgba(15, 23, 42, 0.06);
--sh-xl: 0 28px 56px -12px rgba(5, 41, 98, 0.22), 0 12px 24px -8px rgba(15, 23, 42, 0.10);
--sh-glow: 0 0 0 4px rgba(255, 229, 0, 0.25);
--sh-ring: 0 0 0 3px rgba(5, 41, 98, 0.12);
/* Transitions */
--ease: cubic-bezier(0.4, 0, 0.2, 1);
--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
--t-fast: 0.15s var(--ease);
--t: 0.25s var(--ease);
--t-slow: 0.45s var(--ease-out);
}
* { box-sizing: border-box; }
html, body {
margin: 0;
padding: 0;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
color: var(--ink);
background: #ffffff;
}
.font-serif {
font-family: 'Playfair Display', Georgia, serif;
}
.bg-navy { background-color: var(--navy); }
.bg-yellow { background-color: var(--yellow); }
.bg-rose { background-color: var(--rose); }
.bg-beige { background-color: var(--beige); }
.bg-peche { background-color: var(--peche); }
.text-navy { color: var(--navy); }
.text-red-alert { color: var(--red); }
.text-green-ok { color: var(--green); }
.text-orange-warn { color: var(--orange); }
.border-navy { border-color: var(--navy); }
/* Top bar */
.topbar-pill {
background: var(--yellow);
color: var(--navy);
font-weight: 700;
border-radius: 9999px;
padding: 6px 18px;
font-size: 14px;
display: inline-block;
}
/* Promo cards strip (Guardian-style) */
.promo-strip {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
border-bottom: 1px solid var(--line);
}
.promo-card {
display: flex;
align-items: center;
gap: 16px;
padding: 18px 22px;
border-right: 1px solid #e6dcd0;
}
.promo-card:last-child { border-right: 0; }
.promo-card .label {
display: inline-block;
padding: 2px 10px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
border-radius: 2px;
margin-bottom: 6px;
letter-spacing: 0.6px;
}
.promo-card .title {
font-family: 'Playfair Display', serif;
font-size: 18px;
font-weight: 700;
line-height: 1.25;
color: var(--ink);
}
.promo-card .thumb {
width: 84px;
height: 84px;
border-radius: 50%;
flex-shrink: 0;
object-fit: cover;
}
/* Navy nav */
.navy-nav {
background: var(--navy);
color: #fff;
position: relative;
}
.navy-nav .nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 24px;
gap: 24px;
}
.navy-nav .nav-links {
font-family: 'Playfair Display', serif;
font-size: 18px;
display: flex;
gap: 22px;
align-items: center;
}
.navy-nav .nav-links a {
color: #fff;
text-decoration: none;
}
.navy-nav .nav-links a:hover { text-decoration: underline; }
.navy-nav .burger {
width: 36px;
height: 36px;
border-radius: 50%;
background: var(--yellow);
border: 0;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--navy);
font-weight: 800;
}
.navy-nav .brand {
font-family: 'Playfair Display', serif;
color: #fff;
font-weight: 800;
font-size: 56px;
line-height: 1;
letter-spacing: -1px;
text-decoration: none;
}
.navy-nav .brand .dot { color: var(--yellow); }
/* Sub-nav chips */
.subnav {
background: var(--navy);
border-top: 1px solid rgba(255,255,255,0.12);
padding: 10px 24px 14px;
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.subnav .chip {
display: inline-block;
padding: 4px 12px;
border: 1px solid rgba(255,255,255,0.45);
border-radius: 9999px;
color: #fff;
font-size: 13px;
text-decoration: none;
}
.subnav .chip:hover {
background: rgba(255,255,255,0.1);
}
/* Hero article */
.hero-article {
display: grid;
grid-template-columns: 1.4fr 1fr;
gap: 28px;
padding: 32px 24px;
border-bottom: 1px solid var(--line);
}
.hero-article img {
width: 100%;
height: 100%;
object-fit: cover;
max-height: 460px;
display: block;
}
.hero-article h1 {
font-family: 'Playfair Display', serif;
font-size: 44px;
line-height: 1.1;
margin: 8px 0 16px;
color: var(--ink);
}
.hero-article .lede { font-size: 18px; color: var(--ink-soft); line-height: 1.55; }
.hero-article .meta { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
.hero-article .cat-tag {
display: inline-block;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.8px;
padding: 3px 10px;
border-radius: 2px;
}
/* Smart Brevity boxes */
.sb-box {
border-left: 5px solid;
padding: 14px 18px;
margin: 18px 0;
font-size: 16px;
line-height: 1.55;
background: #fafafa;
}
.sb-box .sb-label {
font-weight: 800;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 1px;
margin-bottom: 6px;
display: block;
}
.sb-box.why { border-color: var(--red); }
.sb-box.why .sb-label { color: var(--red); }
.sb-box.big { border-color: var(--navy); }
.sb-box.big .sb-label { color: var(--navy); }
.sb-box.next { border-color: var(--green); }
.sb-box.next .sb-label { color: var(--green); }
.sb-bullets {
list-style: none;
padding: 0;
margin: 14px 0;
}
.sb-bullets li {
padding-left: 28px;
position: relative;
margin-bottom: 10px;
font-size: 16px;
line-height: 1.55;
}
.sb-bullets li::before {
content: "βΊ";
position: absolute;
left: 8px;
top: -2px;
color: var(--navy);
font-weight: 700;
font-size: 22px;
}
/* Article grid */
.article-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
padding: 32px 24px;
}
.article-card {
display: flex;
flex-direction: column;
border-bottom: 1px solid var(--line);
padding-bottom: 20px;
}
.article-card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.article-card .cat-tag {
display: inline-block;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.8px;
padding: 3px 8px;
border-radius: 2px;
margin: 14px 0 8px;
align-self: flex-start;
}
.article-card h3 {
font-family: 'Playfair Display', serif;
font-size: 22px;
line-height: 1.2;
margin: 0 0 8px;
color: var(--ink);
}
.article-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 10px; line-height: 1.5; }
.article-card .meta { font-size: 12px; color: var(--ink-soft); }
.article-card a { text-decoration: none; color: inherit; }
.article-card a:hover h3 { text-decoration: underline; }
.tag-pol { background: #dbeafe; color: #1e3a8a; }
.tag-eco { background: #dcfce7; color: #14532d; }
.tag-cult { background: #fef3c7; color: #78350f; }
.tag-tech { background: #e9d5ff; color: #581c87; }
.tag-sport { background: #fee2e2; color: #7f1d1d; }
.tag-sante { background: #cffafe; color: #155e75; }
.tag-clim { background: #d1fae5; color: #064e3b; }
.tag-fact { background: #fce7f3; color: #831843; }
.tag-int { background: #e0e7ff; color: #312e81; }
/* Newsletter */
.newsletter {
background: var(--beige);
padding: 48px 24px;
text-align: center;
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
}
.newsletter h2 {
font-family: 'Playfair Display', serif;
font-size: 34px;
margin: 0 0 10px;
}
.newsletter p { color: var(--ink-soft); margin: 0 0 22px; }
.newsletter form {
display: inline-flex;
gap: 0;
max-width: 520px;
width: 100%;
}
.newsletter input {
flex: 1;
padding: 14px 16px;
border: 2px solid var(--navy);
border-right: 0;
font-size: 15px;
outline: none;
}
.newsletter button {
padding: 14px 24px;
background: var(--navy);
color: #fff;
border: 0;
font-weight: 700;
cursor: pointer;
}
/* Footer */
.site-footer {
background: var(--navy);
color: #fff;
padding: 48px 24px 24px;
}
.site-footer .footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 28px;
max-width: 1200px;
margin: 0 auto;
}
.site-footer h4 {
font-family: 'Playfair Display', serif;
font-size: 18px;
margin: 0 0 14px;
color: var(--yellow);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: 14px; }
.site-footer a { color: #fff; text-decoration: none; opacity: 0.9; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .footer-bottom {
max-width: 1200px;
margin: 36px auto 0;
padding-top: 22px;
border-top: 1px solid rgba(255,255,255,0.18);
font-size: 13px;
color: rgba(255,255,255,0.7);
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
}
/* Container helper */
.container-x { max-width: 1280px; margin: 0 auto; }
/* Verifier hub */
.module-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
padding: 24px;
}
.module-card {
border: 1px solid var(--line);
padding: 28px 24px;
display: flex;
flex-direction: column;
background: #fff;
transition: transform .15s ease, box-shadow .15s ease;
}
.module-card:hover {
transform: translateY(-2px);
box-shadow: 0 12px 30px rgba(5,41,98,0.10);
}
.module-card .icon {
width: 56px;
height: 56px;
border-radius: 12px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 28px;
margin-bottom: 18px;
background: var(--rose);
}
.module-card h3 {
font-family: 'Playfair Display', serif;
font-size: 22px;
margin: 0 0 6px;
}
.module-card .sub {
font-size: 14px;
color: var(--ink-soft);
margin-bottom: 14px;
line-height: 1.5;
}
.module-card .formats {
font-size: 12px;
color: var(--navy);
font-weight: 600;
margin-bottom: 18px;
text-transform: uppercase;
letter-spacing: 0.6px;
}
.btn-primary {
background: var(--navy);
color: #fff;
padding: 12px 22px;
border: 0;
font-weight: 700;
cursor: pointer;
text-decoration: none;
display: inline-block;
text-align: center;
border-radius: 2px;
}
.btn-primary:hover { background: var(--navy-dark); }
.btn-yellow {
background: var(--yellow);
color: var(--navy);
padding: 12px 22px;
border: 0;
font-weight: 800;
cursor: pointer;
text-decoration: none;
display: inline-block;
border-radius: 9999px;
}
.btn-outline {
background: transparent;
color: var(--navy);
padding: 12px 22px;
border: 2px solid var(--navy);
font-weight: 700;
cursor: pointer;
text-decoration: none;
display: inline-block;
border-radius: 2px;
}
/* Drag-drop */
.drop-zone {
border: 2px dashed #b7c0d2;
background: #f7f8fb;
padding: 60px 24px;
text-align: center;
border-radius: 8px;
transition: background .15s;
}
.drop-zone.hover { background: #eef1f7; border-color: var(--navy); }
.drop-zone .icon-up { font-size: 48px; color: var(--navy); }
/* Progress bar */
.progress-track {
width: 100%;
height: 12px;
background: #eef1f7;
border-radius: 9999px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--navy), #2456b3);
width: 60%;
}
/* Tabs */
.tabs {
display: flex;
border-bottom: 2px solid var(--line);
gap: 4px;
}
.tab-btn {
padding: 14px 22px;
background: transparent;
border: 0;
border-bottom: 3px solid transparent;
margin-bottom: -2px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
color: var(--ink-soft);
font-family: inherit;
}
.tab-btn.active {
color: var(--navy);
border-bottom-color: var(--yellow);
}
.tab-panel { display: none; padding: 28px 0; }
.tab-panel.active { display: block; }
/* Score circle */
.score-wrap {
display: flex;
align-items: center;
gap: 36px;
flex-wrap: wrap;
}
.score-circle {
width: 220px;
height: 220px;
position: relative;
}
.score-circle .score-text {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.score-circle .num {
font-family: 'Playfair Display', serif;
font-size: 60px;
font-weight: 800;
color: var(--navy);
line-height: 1;
}
.score-circle .lbl { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1px; }
.verdict-pill {
display: inline-block;
padding: 8px 18px;
border-radius: 9999px;
font-weight: 700;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.8px;
}
.verdict-suspect { background: #fef3c7; color: #92400e; border: 1px solid #f59e0b; }
.verdict-fake { background: #fee2e2; color: #991b1b; border: 1px solid #dc2626; }
.verdict-ok { background: #dcfce7; color: #166534; border: 1px solid #16a34a; }
.module-badge {
display: inline-block;
background: var(--navy);
color: #fff;
padding: 6px 12px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.6px;
border-radius: 2px;
}
/* Evidence frames */
.evidence-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 18px;
}
.evidence-frame {
position: relative;
overflow: hidden;
border: 1px solid var(--line);
}
.evidence-frame img { width: 100%; display: block; }
.evidence-frame .overlay {
position: absolute;
border: 2px solid var(--red);
background: rgba(220,38,38,0.18);
}
.evidence-frame .label {
position: absolute;
top: 8px;
left: 8px;
background: var(--red);
color: #fff;
font-size: 11px;
font-weight: 700;
padding: 4px 8px;
text-transform: uppercase;
}
/* Tables */
.data-table {
width: 100%;
border-collapse: collapse;
}
.data-table th, .data-table td {
padding: 12px 14px;
text-align: left;
border-bottom: 1px solid var(--line);
font-size: 14px;
}
.data-table th {
background: #f7f8fb;
font-weight: 700;
color: var(--navy);
text-transform: uppercase;
font-size: 12px;
letter-spacing: 0.6px;
}
/* Team cards */
.team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
padding: 24px;
}
.team-card {
border: 1px solid var(--line);
padding: 28px;
text-align: center;
}
.team-card .avatar {
width: 120px;
height: 120px;
border-radius: 50%;
margin: 0 auto 18px;
background: var(--rose);
display: flex;
align-items: center;
justify-content: center;
font-family: 'Playfair Display', serif;
font-size: 40px;
font-weight: 800;
color: var(--navy);
}
.team-card h3 {
font-family: 'Playfair Display', serif;
font-size: 24px;
margin: 0 0 4px;
}
.team-card .role {
color: var(--navy);
font-weight: 700;
font-size: 13px;
margin-bottom: 12px;
text-transform: uppercase;
letter-spacing: 0.6px;
}
.team-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
/* Auth forms */
.auth-shell {
max-width: 460px;
margin: 60px auto;
padding: 36px;
border: 1px solid var(--line);
background: #fff;
}
.auth-shell h1 {
font-family: 'Playfair Display', serif;
font-size: 32px;
margin: 0 0 24px;
text-align: center;
}
.field {
margin-bottom: 16px;
}
.field label {
display: block;
font-size: 13px;
font-weight: 600;
margin-bottom: 6px;
color: var(--navy);
}
.field input {
width: 100%;
padding: 12px 14px;
border: 1px solid var(--line);
font-size: 15px;
font-family: inherit;
outline: none;
}
.field input:focus { border-color: var(--navy); }
/* Filters bar */
.filters {
display: flex;
gap: 8px;
flex-wrap: wrap;
padding: 16px 24px;
border-bottom: 1px solid var(--line);
}
.filter-chip {
padding: 6px 14px;
border: 1px solid var(--line);
border-radius: 9999px;
font-size: 13px;
background: #fff;
cursor: pointer;
color: var(--ink-soft);
font-family: inherit;
}
.filter-chip.active {
background: var(--navy);
color: #fff;
border-color: var(--navy);
}
/* Verify CTA banner inside article */
.verify-banner {
background: var(--navy);
color: #fff;
padding: 32px;
margin: 36px 0;
display: flex;
justify-content: space-between;
align-items: center;
gap: 24px;
flex-wrap: wrap;
}
.verify-banner h3 {
font-family: 'Playfair Display', serif;
font-size: 24px;
margin: 0 0 6px;
}
.verify-banner p { margin: 0; opacity: 0.85; font-size: 14px; }
/* Methodology schema */
.method-schema {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
margin: 28px 0;
}
.method-schema .step {
border: 2px solid var(--navy);
padding: 20px;
position: relative;
background: #fff;
}
.method-schema .step .num {
position: absolute;
top: -16px;
left: 16px;
background: var(--yellow);
color: var(--navy);
font-weight: 800;
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
/* ============ Module discovery additions ============ */
/* Header search */
.header-search {
display: flex;
align-items: center;
background: rgba(255,255,255,0.12);
border: 1px solid rgba(255,255,255,0.25);
border-radius: 9999px;
padding: 4px 10px 4px 14px;
gap: 6px;
min-width: 280px;
}
.header-search input {
background: transparent;
border: 0;
outline: 0;
color: #fff;
font-size: 13px;
font-family: inherit;
flex: 1;
padding: 6px 0;
}
.header-search input::placeholder { color: rgba(255,255,255,0.7); }
.header-search button {
background: var(--yellow);
color: var(--navy);
border: 0;
border-radius: 9999px;
padding: 5px 14px;
font-size: 12px;
font-weight: 800;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 0.5px;
}
/* Dropdown nav (VΓ©rification submenu) */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
content: " βΎ";
font-size: 14px;
opacity: 0.8;
}
.dropdown-panel {
position: absolute;
top: 100%;
left: -16px;
margin-top: 12px;
background: #fff;
color: var(--ink);
width: 520px;
padding: 18px;
display: none;
grid-template-columns: 1fr 1fr;
gap: 10px;
box-shadow: 0 24px 48px rgba(0,0,0,0.18);
border-top: 4px solid var(--yellow);
z-index: 50;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel { display: grid; }
.dropdown-panel a {
display: flex;
gap: 12px;
align-items: flex-start;
padding: 10px;
border-radius: 4px;
color: var(--ink);
text-decoration: none;
font-family: 'Inter', sans-serif;
font-size: 14px;
}
.dropdown-panel a:hover { background: #f7f8fb; }
.dropdown-panel .dot {
width: 32px;
height: 32px;
border-radius: 8px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
}
.dropdown-panel .dd-title {
font-weight: 700;
font-family: 'Playfair Display', serif;
font-size: 15px;
color: var(--navy);
display: block;
margin-bottom: 2px;
}
.dropdown-panel .dd-sub { font-size: 12px; color: var(--ink-soft); }
.dropdown-panel .dd-foot {
grid-column: 1 / -1;
border-top: 1px solid var(--line);
margin-top: 6px;
padding-top: 12px;
display: flex;
justify-content: space-between;
align-items: center;
}
.dropdown-panel .dd-foot a {
display: inline;
padding: 0;
color: var(--navy);
font-weight: 700;
font-size: 13px;
}
/* Floating Action Button β quick verify from any page */
.fab {
position: fixed;
bottom: 24px;
right: 24px;
z-index: 60;
}
.fab-btn {
background: var(--navy);
color: #fff;
border: 0;
border-radius: 9999px;
padding: 14px 22px;
font-weight: 800;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
cursor: pointer;
box-shadow: 0 14px 30px rgba(5,41,98,0.35);
text-transform: uppercase;
letter-spacing: 0.6px;
font-family: inherit;
}
.fab-btn:hover { background: var(--navy-dark); }
.fab-btn .pulse {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--yellow);
animation: pulse 1.6s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.4); }
}
.fab-menu {
position: absolute;
bottom: 64px;
right: 0;
width: 320px;
background: #fff;
border-radius: 8px;
padding: 16px;
box-shadow: 0 30px 60px rgba(0,0,0,0.25);
display: none;
border-top: 4px solid var(--yellow);
}
.fab-menu.open { display: block; }
.fab-menu h4 {
font-family: 'Playfair Display', serif;
margin: 0 0 8px;
font-size: 16px;
color: var(--navy);
}
.fab-menu .fab-list { display: flex; flex-direction: column; gap: 4px; }
.fab-menu .fab-list a {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 10px;
border-radius: 4px;
text-decoration: none;
color: var(--ink);
font-size: 13px;
}
.fab-menu .fab-list a:hover { background: #f7f8fb; }
.fab-menu .fab-list .dot {
width: 26px;
height: 26px;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
flex-shrink: 0;
}
/* Stats / social proof band */
.stats-band {
background: var(--navy);
color: #fff;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
border-bottom: 4px solid var(--yellow);
}
.stats-band .stat {
padding: 28px 24px;
border-right: 1px solid rgba(255,255,255,0.15);
text-align: center;
}
.stats-band .stat:last-child { border-right: 0; }
.stats-band .num {
font-family: 'Playfair Display', serif;
font-size: 38px;
font-weight: 800;
line-height: 1;
color: var(--yellow);
}
.stats-band .lbl {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.8px;
margin-top: 6px;
opacity: 0.9;
}
/* ========= Verify Toolkit β editorial module showcase ========= */
.mf-section {
background: #fff;
padding: 48px 24px 56px;
border-bottom: 1px solid var(--line);
}
.mf-head {
display: flex;
justify-content: space-between;
align-items: flex-end;
border-bottom: 2px solid var(--navy);
padding-bottom: 16px;
margin-bottom: 28px;
gap: 16px;
flex-wrap: wrap;
}
.mf-kicker {
display: inline-block;
font-size: 11px;
font-weight: 800;
letter-spacing: 1.4px;
text-transform: uppercase;
color: var(--navy);
background: var(--yellow);
padding: 3px 10px;
border-radius: 2px;
}
.mf-head h2 {
font-family: 'Playfair Display', serif;
font-size: 34px;
margin: 8px 0 0;
line-height: 1.05;
max-width: 720px;
}
.mf-all {
font-family: 'Inter', sans-serif;
font-size: 14px;
font-weight: 700;
color: var(--navy);
text-decoration: none;
white-space: nowrap;
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 14px;
border: 2px solid var(--navy);
border-radius: 9999px;
transition: background .15s, color .15s;
}
.mf-all:hover { background: var(--navy); color: #fff; }
.mf-all span { transition: transform .15s; }
.mf-all:hover span { transform: translateX(3px); }
.mf-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: auto auto;
gap: 16px;
}
/* Featured card spans 2 cols + 2 rows */
.mf-card.mf-feature {
grid-column: span 2;
grid-row: span 2;
}
.mf-card {
position: relative;
display: flex;
flex-direction: column;
background: #fff;
text-decoration: none;
color: var(--ink);
overflow: hidden;
transition: transform .2s ease, box-shadow .2s ease;
border: 1px solid var(--line);
}
.mf-card:hover {
transform: translateY(-3px);
box-shadow: 0 18px 36px rgba(5,41,98,0.14);
border-color: var(--mc, var(--navy));
}
.mf-thumb {
position: relative;
aspect-ratio: 4 / 3;
overflow: hidden;
background: #f0f0f0;
}
.mf-feature .mf-thumb {
aspect-ratio: auto;
height: 100%;
flex: 1;
}
.mf-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform .4s ease;
}
/* Old scale hover removed β replaced by hover animation at end of file */
.mf-thumb::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
z-index: 1;
}
.mf-feature .mf-thumb::before {
background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
}
.mf-badge {
position: absolute;
top: 12px;
left: 12px;
background: var(--mc, var(--navy));
color: #fff;
font-family: 'Playfair Display', serif;
font-weight: 800;
font-size: 14px;
padding: 4px 12px;
letter-spacing: 1.5px;
z-index: 3;
}
.mf-pin {
position: absolute;
top: 12px;
right: 12px;
background: var(--yellow);
color: var(--navy);
font-size: 11px;
font-weight: 800;
padding: 4px 10px;
letter-spacing: 0.5px;
z-index: 3;
text-transform: uppercase;
}
/* Featured: text overlaid on image */
.mf-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 24px;
z-index: 2;
color: #fff;
}
.mf-overlay h3 {
font-family: 'Playfair Display', serif;
font-size: 32px;
margin: 0 0 8px;
line-height: 1.1;
color: #fff;
}
.mf-overlay p {
font-size: 15px;
line-height: 1.5;
margin: 0 0 14px;
opacity: 0.92;
max-width: 480px;
}
.mf-overlay .mf-meta {
border-top: 1px solid rgba(255,255,255,0.25);
padding-top: 12px;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.6px;
display: flex;
justify-content: space-between;
opacity: 0.95;
}
.mf-overlay .arrow {
font-weight: 800;
color: var(--yellow);
}
/* Smaller cards: text below image */
.mf-body {
padding: 14px 16px 16px;
display: flex;
flex-direction: column;
gap: 6px;
}
.mf-body h3 {
font-family: 'Playfair Display', serif;
font-size: 17px;
margin: 0;
line-height: 1.2;
color: var(--ink);
}
.mf-body p {
font-size: 13px;
color: var(--ink-soft);
margin: 0;
line-height: 1.4;
}
.mf-body .mf-meta {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 11px;
color: var(--ink-soft);
text-transform: uppercase;
letter-spacing: 0.6px;
border-top: 1px solid var(--line);
padding-top: 10px;
margin-top: 6px;
}
.mf-body .arrow {
color: var(--mc, var(--navy));
font-size: 16px;
font-weight: 800;
}
@media (max-width: 1100px) {
.mf-grid { grid-template-columns: repeat(3, 1fr); }
.mf-card.mf-feature { grid-column: span 3; grid-row: span 1; }
.mf-feature .mf-thumb { aspect-ratio: 16/7; }
}
@media (max-width: 700px) {
.mf-grid { grid-template-columns: 1fr 1fr; }
.mf-card.mf-feature { grid-column: span 2; }
.mf-head h2 { font-size: 24px; }
}
/* Module quick-strip on homepage */
.module-strip {
background: var(--beige);
padding: 20px 24px;
border-bottom: 1px solid var(--line);
}
.module-strip .strip-head {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 14px;
flex-wrap: wrap;
gap: 8px;
}
.module-strip .strip-head h3 {
font-family: 'Playfair Display', serif;
font-size: 22px;
margin: 0;
}
.module-strip .strip-head a { color: var(--navy); font-size: 13px; font-weight: 700; text-decoration: none; }
.module-strip .strip-head a:hover { text-decoration: underline; }
.module-strip .strip-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 10px;
}
.module-strip .strip-card {
background: #fff;
padding: 14px;
border: 1px solid var(--line);
text-decoration: none;
color: var(--ink);
display: flex;
flex-direction: column;
gap: 6px;
transition: transform .15s, box-shadow .15s, border-color .15s;
}
.module-strip .strip-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 22px rgba(5,41,98,0.10);
border-color: var(--navy);
}
.module-strip .strip-card .dot {
width: 36px;
height: 36px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}
.module-strip .strip-card .code {
font-size: 11px;
font-weight: 800;
color: var(--navy);
letter-spacing: 0.6px;
}
.module-strip .strip-card .name {
font-family: 'Playfair Display', serif;
font-size: 14px;
font-weight: 700;
line-height: 1.2;
}
/* Module Finder (verifier.html) */
.finder {
background: linear-gradient(135deg, var(--navy) 0%, #0a3d8f 100%);
color: #fff;
padding: 36px 24px;
border-bottom: 4px solid var(--yellow);
}
.finder .container {
max-width: 1100px;
margin: 0 auto;
}
.finder .kicker {
display: inline-block;
background: var(--yellow);
color: var(--navy);
font-weight: 800;
font-size: 11px;
letter-spacing: 0.8px;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 2px;
margin-bottom: 14px;
}
.finder h2 {
font-family: 'Playfair Display', serif;
font-size: 34px;
line-height: 1.1;
margin: 0 0 6px;
}
.finder .lead { font-size: 15px; opacity: 0.9; margin: 0 0 24px; max-width: 640px; }
.finder .use-cases {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}
.finder .uc {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.18);
padding: 16px;
border-radius: 6px;
cursor: pointer;
display: flex;
gap: 12px;
align-items: flex-start;
text-decoration: none;
color: #fff;
transition: background .15s, border-color .15s;
font-family: inherit;
text-align: left;
}
.finder .uc:hover, .finder .uc.active {
background: rgba(255,229,0,0.12);
border-color: var(--yellow);
}
.finder .uc .ic {
width: 36px;
height: 36px;
border-radius: 8px;
background: rgba(255,255,255,0.12);
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
flex-shrink: 0;
}
.finder .uc .uc-title {
font-weight: 700;
font-size: 14px;
display: block;
margin-bottom: 2px;
}
.finder .uc .uc-reco {
font-size: 12px;
opacity: 0.85;
color: var(--yellow);
font-weight: 700;
}
/* Module card stats */
.module-card .stats-row {
display: flex;
gap: 16px;
margin: 10px 0 14px;
font-size: 11px;
color: var(--ink-soft);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.module-card .stats-row strong {
display: block;
font-family: 'Playfair Display', serif;
font-size: 18px;
color: var(--navy);
font-weight: 800;
text-transform: none;
letter-spacing: 0;
}
.module-card .reco-tag {
position: absolute;
top: -10px;
right: 14px;
background: var(--yellow);
color: var(--navy);
font-size: 10px;
font-weight: 800;
padding: 4px 10px;
border-radius: 9999px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.module-card { position: relative; }
/* Examples row on module page */
.examples {
background: #f7f8fb;
padding: 22px;
border: 1px solid var(--line);
margin: 18px 0;
}
.examples h4 {
font-family: 'Playfair Display', serif;
font-size: 18px;
margin: 0 0 10px;
}
.examples-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}
.examples-grid a {
display: flex;
gap: 10px;
align-items: center;
background: #fff;
border: 1px solid var(--line);
padding: 10px;
text-decoration: none;
color: var(--ink);
font-size: 13px;
}
.examples-grid a:hover { border-color: var(--navy); }
.examples-grid img {
width: 50px;
height: 50px;
object-fit: cover;
flex-shrink: 0;
}
/* Trust band (logos / mentions) */
.trust-band {
padding: 28px 24px;
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
background: #fafafa;
text-align: center;
}
.trust-band .lbl {
text-transform: uppercase;
letter-spacing: 1px;
font-size: 11px;
color: var(--ink-soft);
margin-bottom: 12px;
}
.trust-band .logos {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 36px;
font-family: 'Playfair Display', serif;
font-weight: 800;
font-size: 18px;
color: var(--ink-soft);
opacity: 0.6;
}
/* Responsive trims */
@media (max-width: 900px) {
.promo-strip,
.article-grid,
.module-grid,
.team-grid,
.method-schema { grid-template-columns: 1fr; }
.hero-article { grid-template-columns: 1fr; }
.hero-article h1 { font-size: 32px; }
.navy-nav .brand { font-size: 36px; }
.navy-nav .nav-links { display: none; }
.site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
.evidence-grid { grid-template-columns: 1fr; }
.stats-band { grid-template-columns: repeat(2, 1fr); }
.module-strip .strip-grid { grid-template-columns: repeat(2, 1fr); }
.finder .use-cases { grid-template-columns: 1fr; }
.examples-grid { grid-template-columns: 1fr; }
.header-search { display: none; }
.dropdown-panel { width: 100%; left: 0; }
}
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
MODERN OVERRIDES β soft corners, smooth shadows, fluid
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
/* Smoother body rendering */
html { scroll-behavior: smooth; }
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
/* Selection */
::selection { background: var(--yellow); color: var(--navy); }
/* Focus rings */
*:focus-visible {
outline: 0;
box-shadow: var(--sh-ring);
border-radius: var(--r-sm);
}
/* ---------- Sticky navbar β display:contents libΓ¨re le sticky du parent ---------- */
#site-header { display: contents; }
.navy-nav {
position: sticky;
top: 0;
z-index: 40;
transition: box-shadow var(--t);
}
.navy-nav.is-pinned {
box-shadow: 0 8px 20px -8px rgba(5, 41, 98, 0.45);
}
/* Top bar refinement */
.bg-navy.text-white.text-sm {
background: linear-gradient(180deg, #052962 0%, #041e4d 100%);
}
/* ---------- Buttons modernized ---------- */
.btn-primary,
.btn-yellow,
.btn-outline {
border-radius: var(--r);
transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t);
letter-spacing: 0.2px;
}
.btn-primary {
box-shadow: 0 4px 12px -4px rgba(5, 41, 98, 0.4);
}
.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 8px 20px -6px rgba(5, 41, 98, 0.5);
}
.btn-primary:active { transform: translateY(0); }
.btn-yellow {
box-shadow: 0 4px 12px -4px rgba(255, 229, 0, 0.6);
}
.btn-yellow:hover {
transform: translateY(-1px);
box-shadow: 0 8px 20px -6px rgba(255, 229, 0, 0.7);
}
.btn-outline:hover {
background: var(--navy);
color: #fff;
transform: translateY(-1px);
}
/* ---------- Cards & containers softened ---------- */
.module-card,
.team-card,
.article-card,
.mf-card,
.examples-grid a,
.module-strip .strip-card,
.auth-shell {
border-radius: var(--r-lg);
transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.article-card { border-bottom: 0; padding-bottom: 0; }
.article-card { background: #fff; padding: 0; }
.article-card img:first-of-type {
border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.article-card .cat-tag,
.article-card h3,
.article-card p,
.article-card .meta {
padding-left: 4px;
padding-right: 4px;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.module-card { border-radius: var(--r-lg); }
.module-card:hover { box-shadow: var(--sh-lg); }
.module-card .icon {
border-radius: var(--r);
}
/* ---------- Promo cards modernized ---------- */
.promo-card { transition: background var(--t); }
.promo-card:hover { background: rgba(0,0,0,0.02); }
.promo-card .thumb {
box-shadow: 0 6px 16px -4px rgba(0,0,0,0.18);
}
.promo-card .label {
border-radius: var(--r-pill);
}
/* ---------- Forms (modern fields) ---------- */
.field { position: relative; }
.field input,
.newsletter input,
.drop-zone input[type="url"] {
border-radius: var(--r);
transition: border-color var(--t), box-shadow var(--t), background var(--t);
background: #fff;
}
.field input {
padding: 14px 16px;
font-size: 15px;
border: 1px solid var(--line);
}
.field input:focus,
.newsletter input:focus {
border-color: var(--navy);
box-shadow: var(--sh-ring);
}
.newsletter input { border-radius: var(--r) 0 0 var(--r); }
.newsletter button { border-radius: 0 var(--r) var(--r) 0; transition: background var(--t); }
.newsletter button:hover { background: var(--navy-dark); }
/* Drop zone refined */
.drop-zone {
border-radius: var(--r-xl);
background: linear-gradient(135deg, #fafbfd 0%, #f0f4fa 100%);
border-width: 2px;
border-color: #cbd5e7;
transition: border-color var(--t), background var(--t), transform var(--t);
}
.drop-zone:hover {
border-color: var(--navy);
background: linear-gradient(135deg, #f5f8fc 0%, #e8eef8 100%);
}
.drop-zone .icon-up {
display: inline-flex;
width: 72px;
height: 72px;
border-radius: 50%;
background: var(--navy);
color: #fff;
align-items: center;
justify-content: center;
font-size: 32px;
box-shadow: var(--sh-md);
animation: float 3s var(--ease) infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
}
/* ---------- Tags / chips softened ---------- */
.cat-tag {
border-radius: var(--r-pill);
padding: 4px 12px !important;
}
.subnav .chip,
.filter-chip {
border-radius: var(--r-pill);
transition: background var(--t), color var(--t), border-color var(--t);
}
/* ---------- Verdict pills get a subtle gradient ---------- */
.verdict-suspect {
background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}
.verdict-fake {
background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}
.verdict-ok {
background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}
/* ---------- Newsletter polished ---------- */
.newsletter {
background: linear-gradient(135deg, var(--beige) 0%, #fff 100%);
position: relative;
overflow: hidden;
}
.newsletter::before {
content: "";
position: absolute;
top: -120px;
right: -120px;
width: 280px;
height: 280px;
background: radial-gradient(circle, rgba(255, 229, 0, 0.25) 0%, transparent 70%);
pointer-events: none;
}
/* ---------- Hero article: modern grid ---------- */
.hero-article { gap: 36px; }
.hero-article img { border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.hero-article h1 { letter-spacing: -0.5px; }
/* ---------- Verify banner with glow ---------- */
.verify-banner {
border-radius: var(--r-lg);
background: linear-gradient(135deg, #052962 0%, #0a3d8f 60%, #1e4faf 100%);
position: relative;
overflow: hidden;
}
.verify-banner::before {
content: "";
position: absolute;
top: -50%;
right: -10%;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(255, 229, 0, 0.18) 0%, transparent 60%);
pointer-events: none;
}
/* ---------- Tabs softened ---------- */
.tab-btn {
border-radius: var(--r) var(--r) 0 0;
transition: background var(--t), color var(--t);
}
.tab-btn:hover { background: var(--bg-soft); color: var(--navy); }
/* ---------- Tables ---------- */
.data-table { border-radius: var(--r); overflow: hidden; }
.data-table tr { transition: background var(--t-fast); }
.data-table tbody tr:hover { background: var(--bg-soft); }
/* ---------- Header search refined ---------- */
.header-search {
border-radius: var(--r-pill);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.header-search button { border-radius: var(--r-pill); }
/* ---------- Dropdown / FAB shadows softened ---------- */
.dropdown-panel,
.fab-menu {
border-radius: var(--r-lg);
box-shadow: var(--sh-xl);
}
.dropdown-panel a,
.fab-menu .fab-list a {
border-radius: var(--r-sm);
}
.fab-btn { border-radius: var(--r-pill); }
/* ---------- Progress bar smoother ---------- */
.progress-track { border-radius: var(--r-pill); }
.progress-fill {
border-radius: var(--r-pill);
background: linear-gradient(90deg, #052962 0%, #2456b3 50%, #1e4faf 100%);
background-size: 200% 100%;
animation: shimmer 2s linear infinite;
}
@keyframes shimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}
/* ---------- Stats band: animated entry ---------- */
.stats-band .stat { transition: background var(--t); }
.stats-band .stat:hover {
background: rgba(255, 229, 0, 0.06);
}
/* ---------- Module Finder polish ---------- */
.finder { border-radius: 0; position: relative; overflow: hidden; }
.finder::before {
content: "";
position: absolute;
top: -200px;
right: -200px;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(255,229,0,0.10) 0%, transparent 60%);
pointer-events: none;
}
.finder .uc {
border-radius: var(--r);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
transition: background var(--t), border-color var(--t), transform var(--t);
}
.finder .uc:hover { transform: translateY(-2px); }
/* ---------- mf cards: smoother corners on radius ---------- */
.mf-card { border-radius: var(--r-lg); }
.mf-thumb img { transition: transform var(--t-slow); }
.mf-badge { border-radius: var(--r-sm); }
.mf-pin { border-radius: var(--r-pill); }
/* ---------- FAB modernized with gradient ---------- */
.fab-btn {
background: linear-gradient(135deg, #052962 0%, #1e4faf 100%);
box-shadow: 0 14px 30px -8px rgba(5, 41, 98, 0.5);
}
.fab-btn:hover {
background: linear-gradient(135deg, #041e4d 0%, #052962 100%);
transform: translateY(-2px);
box-shadow: 0 18px 36px -10px rgba(5, 41, 98, 0.6);
}
/* ---------- Auth split layout ---------- */
.auth-split {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: calc(100vh - 80px);
background: #fff;
}
.auth-split .auth-side {
background: linear-gradient(135deg, #052962 0%, #1e4faf 100%);
color: #fff;
padding: 60px 48px;
display: flex;
flex-direction: column;
justify-content: space-between;
position: relative;
overflow: hidden;
}
.auth-split .auth-side::before {
content: "";
position: absolute;
top: -120px;
left: -120px;
width: 360px;
height: 360px;
background: radial-gradient(circle, rgba(255, 229, 0, 0.18) 0%, transparent 60%);
pointer-events: none;
}
.auth-split .auth-side::after {
content: "";
position: absolute;
bottom: -180px;
right: -120px;
width: 420px;
height: 420px;
background: radial-gradient(circle, rgba(30, 79, 175, 0.5) 0%, transparent 60%);
pointer-events: none;
}
.auth-split .auth-side > * { position: relative; z-index: 1; }
.auth-split .auth-side h2 {
font-family: 'Playfair Display', serif;
font-size: 44px;
line-height: 1.05;
margin: 0 0 16px;
letter-spacing: -1px;
}
.auth-split .auth-side .lede {
font-size: 17px;
opacity: 0.85;
line-height: 1.55;
max-width: 420px;
}
.auth-split .auth-side .auth-features {
list-style: none;
padding: 0;
margin: 32px 0 0;
display: flex;
flex-direction: column;
gap: 14px;
}
.auth-split .auth-side .auth-features li {
display: flex;
gap: 12px;
align-items: flex-start;
font-size: 14px;
opacity: 0.92;
line-height: 1.5;
}
.auth-split .auth-side .auth-features .dot {
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--yellow);
color: var(--navy);
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 13px;
flex-shrink: 0;
}
.auth-split .auth-side .testimonial {
border-top: 1px solid rgba(255,255,255,0.18);
padding-top: 24px;
font-style: italic;
font-size: 15px;
line-height: 1.6;
opacity: 0.92;
}
.auth-split .auth-side .testimonial cite {
display: block;
font-style: normal;
font-size: 13px;
opacity: 0.7;
margin-top: 8px;
}
.auth-split .auth-form-side {
padding: 60px 48px;
display: flex;
align-items: center;
justify-content: center;
}
.auth-split .auth-card {
width: 100%;
max-width: 460px;
}
.auth-split .auth-card h1 {
font-family: 'Playfair Display', serif;
font-size: 36px;
margin: 0 0 8px;
letter-spacing: -0.5px;
}
.auth-split .auth-card .sub {
color: var(--ink-soft);
margin: 0 0 28px;
font-size: 15px;
}
@media (max-width: 900px) {
.auth-split { grid-template-columns: 1fr; min-height: auto; }
.auth-split .auth-side { padding: 40px 28px; }
.auth-split .auth-side h2 { font-size: 32px; }
.auth-split .auth-form-side { padding: 40px 28px; }
}
/* ---------- Scroll reveal ---------- */
[data-reveal] {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-reveal].in {
opacity: 1;
transform: translateY(0);
}
/* Stagger children */
[data-reveal-stagger] > * {
opacity: 0;
transform: translateY(16px);
transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
[data-reveal-stagger].in > * {
opacity: 1;
transform: translateY(0);
}
[data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: 0.10s; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: 0.15s; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: 0.20s; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: 0.25s; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: 0.30s; }
/* ---------- SVG icon system ---------- */
.icon-svg {
width: 1em;
height: 1em;
display: inline-block;
vertical-align: middle;
fill: none;
stroke: currentColor;
stroke-width: 1.7;
stroke-linecap: round;
stroke-linejoin: round;
}
.icon-tile {
width: 44px;
height: 44px;
border-radius: var(--r);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 22px;
flex-shrink: 0;
}
.icon-tile.sm { width: 32px; height: 32px; font-size: 16px; border-radius: var(--r-sm); }
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
HOVER FINAL β image slides left + blurs in place + arrow
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
/* The grid gets perspective so cards can tilt subtly */
.mf-grid {
perspective: 1600px;
}
.mf-card {
position: relative !important;
overflow: hidden !important;
isolation: isolate;
background: #fff !important;
transform-style: preserve-3d !important;
transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
box-shadow 900ms cubic-bezier(0.16, 1, 0.3, 1),
outline 0.7s ease 0.4s !important;
outline: 0px solid transparent !important;
outline-offset: 0px !important;
}
.mf-card:hover {
/* Lifts, tilts in 3D, glows with module color, gets a yellow halo border */
transform: translateY(-14px) rotateX(4deg) !important;
box-shadow: 0 60px 120px -22px var(--mc, var(--navy)),
0 30px 60px -22px rgba(0, 0, 0, 0.35) !important;
outline: 2px solid rgba(255, 229, 0, 0.9) !important;
outline-offset: 6px !important;
}
/* ::before = blurred copy of the same image, fills the WHOLE card.
Slowly zooms (Ken Burns) and intensifies its blur during hover. */
.mf-card::before {
content: "" !important;
position: absolute !important;
inset: -8% !important;
background-image: var(--bg-img) !important;
background-size: cover !important;
background-position: center !important;
filter: blur(16px) brightness(0.55) saturate(1.2) !important;
transform: scale(1.08) !important;
z-index: 1 !important;
pointer-events: none !important;
transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
filter 0.8s ease !important;
}
.mf-card:hover::before {
transform: scale(1.18) !important;
filter: blur(22px) brightness(0.50) saturate(1.35) !important;
}
/* Thumb keeps its image visible; bg transparent so blur shows when image moves */
.mf-card .mf-thumb {
background: transparent !important;
position: relative !important;
z-index: 3 !important;
}
/* Body has white bg in static β covers the blur. Fades + rises slightly on hover.
Stagger: body fades a bit AFTER the image starts moving, more elegant. */
.mf-card .mf-body {
background: #fff !important;
position: relative !important;
z-index: 3 !important;
transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
transform 600ms cubic-bezier(0.4, 0, 0.2, 1) 100ms !important;
}
.mf-card:hover .mf-body {
opacity: 0 !important;
transform: translateY(-8px) !important;
}
/* THE SLIDE β cinematic 1.4s, multi-axis: translate + scale + 3D rotation.
The image leaves stage like a sliding panel turning slightly into the depth. */
.mf-card .mf-thumb img {
transition: transform 1400ms cubic-bezier(0.86, 0, 0.07, 1),
opacity 1100ms cubic-bezier(0.4, 0, 0.2, 1),
filter 1100ms ease !important;
transform: translateX(0) scale(1) rotateY(0deg) !important;
opacity: 1 !important;
filter: blur(0) !important;
transform-origin: right center !important;
}
.mf-card:hover .mf-thumb img {
/* Slides left, scales up subtly, AND rotates -8Β° on Y axis (opens like a door) */
transform: translateX(-118%) scale(1.10) rotateY(-8deg) !important;
opacity: 0.85 !important;
filter: blur(3px) !important;
}
/* Featured overlay text β same elegant fade as body */
.mf-card.mf-feature .mf-overlay {
transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
transform 600ms cubic-bezier(0.4, 0, 0.2, 1) 100ms !important;
}
.mf-card.mf-feature:hover .mf-overlay {
opacity: 0 !important;
transform: translateY(-8px) !important;
}
/* Featured card overlay text fades too */
.mf-card.mf-feature .mf-overlay {
transition: opacity 400ms ease !important;
}
.mf-card.mf-feature:hover .mf-overlay {
opacity: 0 !important;
}
/* Module badges stay visible (they contextualize the hover state) */
.mf-card .mf-badge,
.mf-card .mf-pin {
z-index: 50 !important;
transition: transform 400ms ease !important;
}
.mf-card:hover .mf-badge {
transform: scale(1.1) !important;
}
/* Big yellow arrow β appears after the slide is well underway,
with a horizontal yellow underline that draws in beneath it. */
.mf-card::after {
content: "β" !important;
position: absolute !important;
inset: 0 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-family: 'Playfair Display', serif !important;
font-weight: 800 !important;
font-size: 130px !important;
line-height: 1 !important;
color: #ffe500 !important;
opacity: 0 !important;
transform: translateX(140px) scale(0.4) rotate(-15deg) !important;
transition: opacity 700ms ease,
transform 950ms cubic-bezier(0.34, 1.56, 0.64, 1),
text-shadow 700ms ease !important;
z-index: 100 !important;
pointer-events: none !important;
text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
letter-spacing: -4px !important;
background-image:
linear-gradient(90deg, transparent, rgba(255,229,0,0) 50%, transparent),
linear-gradient(transparent calc(50% + 70px), var(--yellow) calc(50% + 70px), var(--yellow) calc(50% + 74px), transparent calc(50% + 74px)) !important;
background-size: 0 100%, 0 100% !important;
background-position: center, center !important;
background-repeat: no-repeat, no-repeat !important;
}
.mf-card:hover::after {
opacity: 1 !important;
transform: translateX(0) scale(1) rotate(0) !important;
text-shadow: 0 16px 60px rgba(255, 229, 0, 0.5),
0 16px 60px rgba(0, 0, 0, 0.6) !important;
background-size: 0 100%, 35% 100% !important;
transition: opacity 700ms ease 0.55s,
transform 950ms cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s,
text-shadow 700ms ease 0.55s,
background-size 700ms cubic-bezier(0.65, 0, 0.35, 1) 1.05s !important;
}
.mf-card.mf-feature::after { font-size: 240px !important; }
/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
.mf-card *, .mf-card::after {
transition: none !important;
}
.mf-card:hover .mf-thumb img {
transform: none !important;
filter: blur(8px) brightness(0.5) !important;
}
}
/* ============================================================
Partner fact-checks band (Tunifact / iCheck aggregation)
============================================================ */
.partners-section {
padding: 56px 24px;
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
background: var(--bg-soft);
}
.partners-section .pn-head {
max-width: 1280px;
margin: 0 auto 28px;
display: flex;
align-items: end;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
}
.partners-section .pn-kicker {
display: inline-block;
font-size: 12px;
font-weight: 700;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--navy);
background: var(--yellow);
padding: 4px 10px;
border-radius: 4px;
margin-bottom: 10px;
}
.partners-section h2 {
font-family: 'Playfair Display', serif;
font-size: 34px;
line-height: 1.1;
margin: 0;
color: var(--ink);
}
.partners-section .pn-sub {
font-size: 15px;
color: var(--ink-soft);
margin-top: 8px;
max-width: 640px;
}
.partners-section .pn-partners {
display: flex;
align-items: center;
gap: 16px;
font-size: 13px;
color: var(--ink-soft);
}
.partners-section .pn-partners strong { color: var(--ink); }
.pn-grid {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}
@media (max-width: 960px) {
.pn-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
.pn-grid { grid-template-columns: 1fr; }
}
.pn-card {
display: flex;
flex-direction: column;
background: #fff;
border: 1px solid var(--line);
border-radius: var(--r-lg);
overflow: hidden;
text-decoration: none;
color: inherit;
transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pn-card:hover {
transform: translateY(-3px);
box-shadow: var(--sh-lg);
border-color: var(--navy-glow);
}
.pn-thumb {
position: relative;
aspect-ratio: 16 / 10;
overflow: hidden;
background: #eef1f7;
}
.pn-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform var(--t-slow);
}
.pn-card:hover .pn-thumb img { transform: scale(1.04); }
.pn-verdict {
position: absolute;
top: 12px;
left: 12px;
padding: 4px 10px;
font-size: 11px;
font-weight: 800;
letter-spacing: 0.6px;
text-transform: uppercase;
border-radius: 4px;
border: 1px solid;
}
.pv-ok { background: #dcfce7; color: #166534; border-color: #16a34a; }
.pv-suspect { background: #fef3c7; color: #92400e; border-color: #f59e0b; }
.pv-fake { background: #fee2e2; color: #991b1b; border-color: #dc2626; }
.pn-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pn-source {
align-self: flex-start;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.6px;
text-transform: uppercase;
padding: 3px 8px;
border-radius: 3px;
}
.pn-body h3 {
font-family: 'Playfair Display', serif;
font-size: 19px;
line-height: 1.25;
font-weight: 700;
margin: 4px 0 0;
color: var(--ink);
}
.pn-body p {
font-size: 14px;
line-height: 1.55;
color: var(--ink-soft);
margin: 0;
}
.pn-meta {
margin-top: auto;
padding-top: 12px;
border-top: 1px solid var(--line-soft);
display: flex;
justify-content: space-between;
align-items: center;
font-size: 12px;
color: var(--ink-faint);
}
.pn-link { font-weight: 600; color: var(--navy); }
.pn-card:hover .pn-link { text-decoration: underline; }
.pn-skeleton {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}
.pn-skel-card {
height: 360px;
border-radius: var(--r-lg);
background: linear-gradient(90deg, #eef1f7 0%, #f6f8fb 50%, #eef1f7 100%);
background-size: 200% 100%;
animation: pn-shimmer 1.4s ease-in-out infinite;
}
@keyframes pn-shimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}
.pn-empty {
max-width: 720px;
margin: 0 auto;
text-align: center;
padding: 40px;
background: #fff;
border: 1px dashed var(--line);
border-radius: var(--r-lg);
color: var(--ink-soft);
}
/* ============================================================
Dashboard (statistics)
============================================================ */
.dash-hero {
background: var(--navy);
color: #fff;
padding: 48px 24px 36px;
}
.dash-hero .container-x { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.dash-hero h1 { font-family: 'Playfair Display', serif; font-size: 42px; margin: 0 0 8px; }
.dash-hero p { opacity: 0.85; max-width: 620px; margin: 0; line-height: 1.55; }
.dash-hero .dash-period {
display: inline-flex;
gap: 6px;
background: rgba(255,255,255,0.10);
padding: 4px;
border-radius: var(--r-pill);
}
.dash-hero .dash-period button {
background: transparent;
color: #fff;
border: 0;
padding: 6px 14px;
font-weight: 600;
font-size: 13px;
border-radius: var(--r-pill);
cursor: pointer;
}
.dash-hero .dash-period button.active {
background: var(--yellow);
color: var(--navy);
}
.kpi-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
margin-top: -28px;
padding: 0 24px;
}
@media (max-width: 960px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
.kpi-card {
background: #fff;
border: 1px solid var(--line);
border-radius: var(--r-lg);
padding: 20px;
box-shadow: var(--sh-md);
display: flex;
flex-direction: column;
gap: 6px;
}
.kpi-card .kpi-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-faint); }
.kpi-card .kpi-value { font-family: 'Playfair Display', serif; font-size: 38px; line-height: 1; color: var(--navy); }
.kpi-card .kpi-delta { font-size: 13px; font-weight: 600; }
.kpi-up { color: #16a34a; }
.kpi-down { color: #dc2626; }
.dash-row {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 22px;
padding: 36px 24px;
max-width: 1280px;
margin: 0 auto;
}
@media (max-width: 960px) { .dash-row { grid-template-columns: 1fr; } }
.dash-card {
background: #fff;
border: 1px solid var(--line);
border-radius: var(--r-lg);
padding: 22px;
}
.dash-card h3 {
font-family: 'Playfair Display', serif;
font-size: 20px;
margin: 0 0 4px;
color: var(--ink);
}
.dash-card .dash-card-sub { font-size: 13px; color: var(--ink-faint); margin: 0 0 16px; }
.dash-bars { display: flex; flex-direction: column; gap: 12px; }
.dash-bar { display: grid; grid-template-columns: 90px 1fr 56px; gap: 10px; align-items: center; font-size: 13px; }
.dash-bar .bar-label { font-weight: 600; color: var(--ink); }
.dash-bar .bar-track { background: #eef1f7; height: 10px; border-radius: 999px; overflow: hidden; }
.dash-bar .bar-fill { height: 100%; border-radius: 999px; transition: width var(--t-slow); }
.dash-bar .bar-value { font-weight: 700; color: var(--navy); text-align: right; }
.dash-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.dash-list li { display: flex; justify-content: space-between; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; font-size: 14px; }
.dash-list li strong { font-weight: 700; color: var(--navy); }
/* ============================================================
Real or Fake (news verification)
============================================================ */
.rof-hero {
background: linear-gradient(135deg, #052962 0%, #0a3d8c 100%);
color: #fff;
padding: 64px 24px 48px;
}
.rof-hero .container-x { max-width: 920px; text-align: center; }
.rof-hero .kicker {
display: inline-block;
font-size: 12px;
font-weight: 800;
letter-spacing: 2px;
text-transform: uppercase;
background: var(--yellow);
color: var(--navy);
padding: 4px 12px;
border-radius: 4px;
margin-bottom: 14px;
}
.rof-hero h1 { font-family: 'Playfair Display', serif; font-size: 52px; line-height: 1.05; margin: 0 0 12px; }
.rof-hero p { font-size: 18px; opacity: 0.9; max-width: 700px; margin: 0 auto; line-height: 1.55; }
.rof-form {
max-width: 760px;
margin: -28px auto 0;
background: #fff;
border-radius: var(--r-xl);
padding: 22px;
box-shadow: var(--sh-xl);
display: flex;
flex-direction: column;
gap: 12px;
position: relative;
z-index: 2;
}
.rof-form label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-faint); }
.rof-form textarea, .rof-form input[type="url"] {
border: 1px solid var(--line);
border-radius: var(--r);
padding: 14px 16px;
font-size: 15px;
font-family: inherit;
resize: vertical;
min-height: 90px;
width: 100%;
outline: none;
transition: border-color var(--t), box-shadow var(--t);
}
.rof-form textarea:focus, .rof-form input[type="url"]:focus {
border-color: var(--navy);
box-shadow: var(--sh-ring);
}
.rof-form .rof-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.rof-form .rof-tabs { display: flex; gap: 4px; background: #eef1f7; padding: 4px; border-radius: var(--r-pill); }
.rof-form .rof-tabs button {
border: 0; background: transparent; padding: 6px 14px; font-size: 13px; font-weight: 600;
border-radius: var(--r-pill); cursor: pointer; color: var(--ink-soft);
}
.rof-form .rof-tabs button.active { background: var(--navy); color: #fff; }
.rof-result {
max-width: 760px;
margin: 28px auto 0;
background: #fff;
border: 1px solid var(--line);
border-radius: var(--r-xl);
overflow: hidden;
display: none;
}
.rof-result.is-shown { display: block; animation: fadeUp 0.4s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.rof-result .rof-banner {
padding: 18px 22px;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 800;
font-size: 16px;
letter-spacing: 0.4px;
text-transform: uppercase;
}
.rof-banner.real { background: #dcfce7; color: #166534; }
.rof-banner.fake { background: #fee2e2; color: #991b1b; }
.rof-banner.suspect { background: #fef3c7; color: #92400e; }
.rof-result .rof-body { padding: 22px; }
.rof-result .rof-score-row { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.rof-result .rof-score-bar { flex: 1; background: #eef1f7; border-radius: 999px; height: 12px; overflow: hidden; }
.rof-result .rof-score-fill { height: 100%; border-radius: 999px; transition: width 0.8s var(--ease-out); }
.rof-result h4 { font-family: 'Playfair Display', serif; font-size: 18px; margin: 18px 0 8px; }
.rof-result ul.rof-signals { list-style: none; padding: 0; margin: 0; }
.rof-result ul.rof-signals li { padding: 8px 0; border-top: 1px solid var(--line-soft); display: flex; gap: 10px; font-size: 14px; }
.rof-result ul.rof-signals li:first-child { border-top: 0; }
.rof-result .sig-tag {
font-size: 10px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase;
padding: 2px 8px; border-radius: 3px; flex-shrink: 0; align-self: start; margin-top: 2px;
}
.sig-tag.ok { background: #dcfce7; color: #166534; }
.sig-tag.warn { background: #fef3c7; color: #92400e; }
.sig-tag.bad { background: #fee2e2; color: #991b1b; }
/* ============================================================
Mission page (notre but)
============================================================ */
.mis-hero {
position: relative;
padding: 96px 24px 72px;
background: var(--navy);
color: #fff;
overflow: hidden;
}
.mis-hero::before {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(circle at 20% 0%, rgba(255,229,0,0.18), transparent 40%),
radial-gradient(circle at 90% 100%, rgba(255,255,255,0.08), transparent 50%);
pointer-events: none;
}
.mis-hero .container-x { position: relative; max-width: 920px; }
.mis-hero .mis-kicker {
display: inline-block;
font-size: 12px;
font-weight: 800;
letter-spacing: 2px;
text-transform: uppercase;
background: var(--yellow);
color: var(--navy);
padding: 4px 12px;
border-radius: 4px;
margin-bottom: 18px;
}
.mis-hero h1 {
font-family: 'Playfair Display', serif;
font-size: 64px;
line-height: 1.02;
margin: 0 0 18px;
font-weight: 800;
}
.mis-hero h1 em { font-style: italic; color: var(--yellow); }
.mis-hero .mis-lead {
font-size: 22px;
line-height: 1.45;
opacity: 0.92;
max-width: 720px;
}
.mis-section {
max-width: 920px;
margin: 0 auto;
padding: 64px 24px;
}
.mis-section h2 {
font-family: 'Playfair Display', serif;
font-size: 34px;
margin: 0 0 18px;
color: var(--ink);
}
.mis-section p {
font-size: 17px;
line-height: 1.7;
color: var(--ink-soft);
margin: 0 0 14px;
}
.mis-divider {
height: 1px;
background: var(--line);
margin: 0 24px;
max-width: 1280px;
}
.mis-pillars {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
margin-top: 28px;
}
@media (max-width: 880px) { .mis-pillars { grid-template-columns: 1fr; } }
.mis-pillar {
background: #fff;
border: 1px solid var(--line);
border-left: 4px solid var(--navy);
border-radius: var(--r-lg);
padding: 22px;
}
.mis-pillar:nth-child(1) { border-left-color: var(--red); }
.mis-pillar:nth-child(2) { border-left-color: var(--orange); }
.mis-pillar:nth-child(3) { border-left-color: var(--green); }
.mis-pillar h3 {
font-family: 'Playfair Display', serif;
font-size: 22px;
margin: 6px 0 10px;
color: var(--ink);
}
.mis-pillar p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.mis-pillar .mis-num {
font-family: 'Playfair Display', serif;
font-size: 13px;
font-weight: 800;
color: var(--navy);
letter-spacing: 1.4px;
}
.mis-quote {
background: var(--beige);
border-left: 5px solid var(--yellow);
padding: 28px 28px 28px 24px;
border-radius: 0 var(--r-lg) var(--r-lg) 0;
margin: 28px 0;
}
.mis-quote blockquote {
font-family: 'Playfair Display', serif;
font-size: 24px;
line-height: 1.4;
color: var(--ink);
font-style: italic;
margin: 0 0 10px;
}
.mis-quote cite { font-size: 14px; color: var(--ink-soft); font-style: normal; }
.mis-stats {
background: var(--navy);
color: #fff;
padding: 56px 24px;
margin-top: 0;
}
.mis-stats .container-x {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
text-align: center;
}
@media (max-width: 720px) { .mis-stats .container-x { grid-template-columns: repeat(2, 1fr); } }
.mis-stats .num {
font-family: 'Playfair Display', serif;
font-size: 48px;
line-height: 1;
color: var(--yellow);
font-weight: 800;
}
.mis-stats .lbl { font-size: 13px; opacity: 0.85; margin-top: 6px; letter-spacing: 0.4px; }
/* ============================================================
Fact-check archive (Tunifact-style listing) + detail
============================================================ */
.fc-page { background: #fafafb; min-height: 60vh; }
.fc-toolbar {
background: #fff;
border-bottom: 1px solid var(--line);
padding: 18px 24px;
}
.fc-toolbar .container-x {
display: flex;
justify-content: space-between;
align-items: center;
gap: 24px;
flex-wrap: wrap;
}
.fc-toolbar h1 {
font-family: 'Playfair Display', serif;
font-size: 32px;
margin: 0;
color: var(--ink);
}
.fc-toolbar .fc-sub { font-size: 14px; color: var(--ink-soft); margin: 4px 0 0; }
.fc-toolbar .fc-search {
display: flex;
align-items: center;
gap: 0;
border: 1px solid var(--line);
border-radius: var(--r-pill);
padding: 4px 4px 4px 16px;
background: #fff;
min-width: 320px;
}
.fc-toolbar .fc-search input {
border: 0;
outline: none;
flex: 1;
font-size: 14px;
background: transparent;
}
.fc-toolbar .fc-search button {
background: var(--navy);
color: #fff;
border: 0;
border-radius: var(--r-pill);
padding: 8px 16px;
font-weight: 600;
font-size: 13px;
cursor: pointer;
}
.fc-tabs {
display: flex;
gap: 8px;
padding: 14px 24px;
background: #fff;
border-bottom: 1px solid var(--line);
overflow-x: auto;
scrollbar-width: none;
}
.fc-tabs::-webkit-scrollbar { display: none; }
.fc-tab {
flex-shrink: 0;
padding: 8px 16px;
font-size: 13px;
font-weight: 600;
background: #f4f5f8;
color: var(--ink-soft);
border-radius: var(--r-pill);
cursor: pointer;
border: 1px solid transparent;
display: inline-flex;
align-items: center;
gap: 6px;
text-decoration: none;
transition: all var(--t-fast);
}
.fc-tab:hover { background: #e9ebf1; color: var(--ink); }
.fc-tab .fc-tab-count {
background: rgba(0,0,0,0.08);
padding: 1px 8px;
border-radius: 999px;
font-size: 11px;
font-weight: 700;
}
.fc-tab.active {
background: var(--navy);
color: #fff;
}
.fc-tab.active .fc-tab-count { background: rgba(255,255,255,0.20); }
.fc-tab.fake.active { background: #dc2626; }
.fc-tab.real.active { background: #16a34a; }
.fc-tab.unver.active { background: #92400e; }
.fc-layout {
display: grid;
grid-template-columns: 1fr 320px;
gap: 28px;
max-width: 1280px;
margin: 0 auto;
padding: 28px 24px 48px;
}
@media (max-width: 960px) { .fc-layout { grid-template-columns: 1fr; } }
.fc-feed {
display: flex;
flex-direction: column;
gap: 18px;
}
.fc-card {
display: grid;
grid-template-columns: 280px 1fr;
background: #fff;
border: 1px solid var(--line);
border-radius: var(--r-lg);
overflow: hidden;
text-decoration: none;
color: inherit;
transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
@media (max-width: 720px) {
.fc-card { grid-template-columns: 1fr; }
}
.fc-card:hover {
transform: translateY(-2px);
box-shadow: var(--sh-lg);
border-color: var(--navy-glow);
}
.fc-card-thumb {
position: relative;
aspect-ratio: 4 / 3;
background: #eef1f7;
overflow: hidden;
}
.fc-card-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--t-slow);
}
.fc-card:hover .fc-card-thumb img { transform: scale(1.05); }
.fc-verdict-badge {
position: absolute;
top: 14px;
left: 14px;
padding: 6px 14px;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.6px;
text-transform: uppercase;
border-radius: 4px;
display: inline-flex;
align-items: center;
gap: 6px;
color: #fff;
box-shadow: 0 2px 4px rgba(0,0,0,0.18);
}
.v-real { background: #16a34a; }
.v-fake { background: #dc2626; }
.v-unver { background: #92400e; }
.fc-verdict-badge::before {
content: "";
width: 8px;
height: 8px;
border-radius: 50%;
background: #fff;
}
.fc-card-body {
padding: 22px 24px;
display: flex;
flex-direction: column;
gap: 8px;
}
.fc-card-meta {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-bottom: 4px;
}
.fc-meta-pill {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 3px 10px;
font-size: 11px;
font-weight: 700;
border-radius: var(--r-pill);
background: #eef1f7;
color: var(--navy);
}
.fc-meta-pill.cat { background: #dbeafe; color: #1e3a8a; }
.fc-meta-pill.date { background: #f3e8ff; color: #5b21b6; }
.fc-meta-pill.read { background: #dcfce7; color: #166534; }
.fc-card-body h2 {
font-family: 'Playfair Display', serif;
font-size: 22px;
line-height: 1.25;
font-weight: 700;
margin: 4px 0 6px;
color: var(--ink);
}
.fc-card-body p {
font-size: 14px;
line-height: 1.55;
color: var(--ink-soft);
margin: 0 0 12px;
}
.fc-card-cta {
margin-top: auto;
align-self: flex-start;
background: var(--red);
color: #fff;
padding: 8px 16px;
border-radius: var(--r);
font-weight: 700;
font-size: 13px;
display: inline-flex;
align-items: center;
gap: 6px;
text-decoration: none;
transition: background var(--t-fast);
}
.fc-card-cta::after { content: "β"; transition: transform var(--t-fast); }
.fc-card:hover .fc-card-cta { background: #b91c1c; }
.fc-card:hover .fc-card-cta::after { transform: translateX(3px); }
.fc-card.real .fc-card-cta { background: #16a34a; }
.fc-card.real:hover .fc-card-cta { background: #15803d; }
.fc-card.unver .fc-card-cta { background: #92400e; }
.fc-card.unver:hover .fc-card-cta { background: #78350f; }
.fc-empty {
background: #fff;
border: 1px dashed var(--line);
padding: 56px 24px;
text-align: center;
border-radius: var(--r-lg);
color: var(--ink-soft);
}
/* Sidebar */
.fc-side { display: flex; flex-direction: column; gap: 20px; }
.fc-side-block {
background: #fff;
border: 1px solid var(--line);
border-radius: var(--r-lg);
padding: 18px;
}
.fc-side-block h3 {
font-family: 'Playfair Display', serif;
font-size: 16px;
margin: 0 0 12px;
padding-bottom: 10px;
border-bottom: 2px solid var(--navy);
display: inline-block;
color: var(--ink);
}
.fc-side-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.fc-side-list li a {
display: grid;
grid-template-columns: 60px 1fr;
gap: 10px;
text-decoration: none;
color: inherit;
align-items: center;
}
.fc-side-list li img {
width: 60px;
height: 60px;
object-fit: cover;
border-radius: var(--r-sm);
}
.fc-side-list li .side-title {
font-size: 13px;
line-height: 1.35;
font-weight: 600;
color: var(--ink);
}
.fc-side-list li .side-meta {
font-size: 11px;
color: var(--ink-faint);
margin-top: 3px;
}
.fc-side-list li a:hover .side-title { color: var(--navy); }
.fc-submit-card {
background: linear-gradient(135deg, #052962 0%, #0a3d8c 100%);
color: #fff;
border-radius: var(--r-lg);
padding: 22px;
}
.fc-submit-card h3 {
font-family: 'Playfair Display', serif;
font-size: 18px;
margin: 0 0 8px;
color: #fff;
border: 0;
padding: 0;
}
.fc-submit-card p { font-size: 13px; opacity: 0.9; margin: 0 0 14px; line-height: 1.5; }
.fc-submit-card .btn-yellow { display: inline-block; }
/* Detail page */
.fc-detail-hero {
background: #fff;
padding: 36px 24px 28px;
border-bottom: 1px solid var(--line);
}
.fc-detail-hero .container-x { max-width: 880px; }
.fc-breadcrumb { font-size: 13px; color: var(--ink-faint); margin-bottom: 18px; }
.fc-breadcrumb a { color: var(--navy); text-decoration: none; }
.fc-breadcrumb a:hover { text-decoration: underline; }
.fc-detail-hero .fc-detail-meta { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 16px; }
.fc-detail-hero h1 {
font-family: 'Playfair Display', serif;
font-size: 40px;
line-height: 1.15;
margin: 0;
color: var(--ink);
}
.fc-detail-hero .fc-detail-author {
font-size: 14px;
color: var(--ink-soft);
margin-top: 16px;
}
.fc-detail-hero .fc-detail-author strong { color: var(--ink); }
.fc-verdict-banner {
display: flex;
align-items: center;
gap: 16px;
padding: 20px 24px;
border-radius: var(--r-lg);
margin-top: 22px;
color: #fff;
}
.fc-verdict-banner.v-real { background: linear-gradient(135deg,#16a34a,#15803d); }
.fc-verdict-banner.v-fake { background: linear-gradient(135deg,#dc2626,#991b1b); }
.fc-verdict-banner.v-unver { background: linear-gradient(135deg,#92400e,#78350f); }
.fc-verdict-banner .fc-vb-label {
font-family: 'Playfair Display', serif;
font-size: 28px;
font-weight: 800;
letter-spacing: 1px;
text-transform: uppercase;
}
.fc-verdict-banner .fc-vb-desc { font-size: 14px; opacity: 0.92; }
.fc-detail-body {
max-width: 880px;
margin: 0 auto;
padding: 36px 24px 56px;
display: grid;
grid-template-columns: 220px 1fr;
gap: 36px;
}
@media (max-width: 880px) { .fc-detail-body { grid-template-columns: 1fr; } }
.fc-detail-aside { font-size: 13px; }
.fc-detail-aside h4 {
font-size: 11px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--ink-faint);
margin: 0 0 10px;
}
.fc-detail-aside ul { list-style: none; padding: 0; margin: 0 0 22px; }
.fc-detail-aside ul li { padding: 6px 0; border-top: 1px solid var(--line-soft); }
.fc-detail-aside ul li:first-child { border-top: 0; }
.fc-detail-aside ul li a { color: var(--navy); text-decoration: none; }
.fc-detail-aside ul li a:hover { text-decoration: underline; }
.fc-detail-main img.fc-hero-img {
width: 100%;
border-radius: var(--r-lg);
margin-bottom: 28px;
display: block;
border: 1px solid var(--line);
}
.fc-detail-main h2 {
font-family: 'Playfair Display', serif;
font-size: 24px;
margin: 28px 0 12px;
color: var(--ink);
}
.fc-detail-main p {
font-size: 17px;
line-height: 1.7;
color: var(--ink-soft);
margin: 0 0 16px;
}
.fc-summary-box {
background: var(--beige);
border-left: 4px solid var(--navy);
padding: 18px 22px;
border-radius: 0 var(--r-lg) var(--r-lg) 0;
margin-bottom: 28px;
}
.fc-summary-box h3 {
font-family: 'Playfair Display', serif;
font-size: 18px;
margin: 0 0 10px;
color: var(--navy);
}
.fc-summary-box ul { list-style: none; padding: 0; margin: 0; }
.fc-summary-box li {
padding: 8px 0 8px 24px;
position: relative;
font-size: 15px;
line-height: 1.55;
color: var(--ink);
}
.fc-summary-box li::before {
content: "β";
position: absolute;
left: 0;
top: 8px;
color: var(--navy);
font-weight: 800;
}
.fc-related {
border-top: 1px solid var(--line);
background: #fff;
padding: 36px 24px;
}
.fc-related .container-x { max-width: 1280px; }
.fc-related h3 {
font-family: 'Playfair Display', serif;
font-size: 24px;
margin: 0 0 18px;
color: var(--ink);
}
.fc-related-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
}
@media (max-width: 880px) { .fc-related-grid { grid-template-columns: 1fr; } }
.fc-related-card {
background: #fff;
border: 1px solid var(--line);
border-radius: var(--r-lg);
overflow: hidden;
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
transition: box-shadow var(--t), transform var(--t);
}
.fc-related-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.fc-related-card .fc-related-thumb { position: relative; aspect-ratio: 16/10; }
.fc-related-card .fc-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fc-related-card h4 {
font-family: 'Playfair Display', serif;
font-size: 16px;
margin: 0;
padding: 14px 16px 16px;
line-height: 1.3;
color: var(--ink);
}
/* Always show burger on every breakpoint (it opens the fullscreen menu) */
.navy-nav .burger { display: inline-flex; }
/* Logo sizing across the platform */
.navy-nav .brand-logo {
display: block;
height: 64px;
width: auto;
max-width: 220px;
object-fit: contain;
}
.menu-overlay .mo-brand-logo {
display: block;
height: 84px;
width: auto;
max-width: 280px;
object-fit: contain;
}
.site-footer .footer-logo {
display: block;
height: 76px;
width: auto;
max-width: 240px;
object-fit: contain;
margin-bottom: 14px;
}
@media (max-width: 720px) {
.navy-nav .brand-logo { height: 48px; }
.menu-overlay .mo-brand-logo { height: 60px; }
.site-footer .footer-logo { height: 60px; }
}
/* ============================================================
Fullscreen menu overlay (triggered by hamburger button)
============================================================ */
.menu-overlay {
position: fixed;
inset: 0;
z-index: 9999;
background: linear-gradient(160deg, #052962 0%, #0a3d8c 60%, #062c6e 100%);
color: #fff;
display: flex;
flex-direction: column;
visibility: hidden;
opacity: 0;
transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.menu-overlay.is-open {
visibility: visible;
opacity: 1;
}
.menu-overlay::before {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(circle at 10% 10%, rgba(255,229,0,0.10), transparent 40%),
radial-gradient(circle at 90% 90%, rgba(255,255,255,0.08), transparent 50%);
pointer-events: none;
}
.menu-overlay .mo-top {
display: flex;
justify-content: space-between;
align-items: center;
padding: 22px 28px;
position: relative;
z-index: 1;
}
.menu-overlay .mo-brand {
font-family: 'Playfair Display', serif;
font-size: 36px;
font-weight: 800;
color: #fff;
text-decoration: none;
letter-spacing: -1px;
}
.menu-overlay .mo-brand .dot { color: var(--yellow); }
.menu-overlay .mo-close {
width: 44px;
height: 44px;
border-radius: 50%;
background: var(--yellow);
color: var(--navy);
border: 0;
cursor: pointer;
font-size: 20px;
font-weight: 800;
display: inline-flex;
align-items: center;
justify-content: center;
transition: transform var(--t-fast);
}
.menu-overlay .mo-close:hover { transform: rotate(90deg); }
.menu-overlay .mo-body {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 40px 24px;
position: relative;
z-index: 1;
}
.menu-overlay .mo-tagline {
font-size: 12px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
background: var(--yellow);
color: var(--navy);
padding: 4px 12px;
border-radius: 4px;
margin-bottom: 28px;
}
.menu-overlay nav.mo-links {
display: flex;
flex-direction: column;
gap: 8px;
text-align: center;
}
.menu-overlay nav.mo-links a {
font-family: 'Playfair Display', serif;
font-size: 38px;
font-weight: 700;
color: rgba(255,255,255,0.92);
text-decoration: none;
padding: 6px 16px;
position: relative;
transition: color var(--t-fast), transform var(--t-fast);
}
.menu-overlay nav.mo-links a:hover {
color: var(--yellow);
transform: translateX(4px);
}
.menu-overlay nav.mo-links a::before {
content: "βΊ";
display: inline-block;
margin-right: 12px;
opacity: 0;
transform: translateX(-8px);
transition: opacity var(--t-fast), transform var(--t-fast);
color: var(--yellow);
}
.menu-overlay nav.mo-links a:hover::before {
opacity: 1;
transform: translateX(0);
}
.menu-overlay .mo-secondary {
margin-top: 36px;
display: flex;
gap: 22px;
font-size: 13px;
color: rgba(255,255,255,0.7);
}
.menu-overlay .mo-secondary a {
color: rgba(255,255,255,0.7);
text-decoration: none;
border-bottom: 1px solid rgba(255,255,255,0.2);
padding-bottom: 1px;
transition: color var(--t-fast), border-color var(--t-fast);
}
.menu-overlay .mo-secondary a:hover {
color: var(--yellow);
border-color: var(--yellow);
}
.menu-overlay .mo-foot {
padding: 18px 28px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 12px;
color: rgba(255,255,255,0.6);
border-top: 1px solid rgba(255,255,255,0.10);
position: relative;
z-index: 1;
}
/* Fade-in stagger for links when overlay opens */
.menu-overlay nav.mo-links a {
opacity: 0;
transform: translateY(12px);
transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), color var(--t-fast);
}
.menu-overlay.is-open nav.mo-links a {
opacity: 1;
transform: translateY(0);
}
.menu-overlay.is-open nav.mo-links a:nth-child(1) { transition-delay: 0.05s; }
.menu-overlay.is-open nav.mo-links a:nth-child(2) { transition-delay: 0.10s; }
.menu-overlay.is-open nav.mo-links a:nth-child(3) { transition-delay: 0.15s; }
.menu-overlay.is-open nav.mo-links a:nth-child(4) { transition-delay: 0.20s; }
.menu-overlay.is-open nav.mo-links a:nth-child(5) { transition-delay: 0.25s; }
.menu-overlay.is-open nav.mo-links a:nth-child(6) { transition-delay: 0.30s; }
.menu-overlay.is-open nav.mo-links a:nth-child(7) { transition-delay: 0.35s; }
/* Lock body scroll while overlay is open */
body.menu-open { overflow: hidden; }
@media (max-width: 640px) {
.menu-overlay nav.mo-links a { font-size: 28px; }
.menu-overlay .mo-brand { font-size: 28px; }
}
/* ============================================================
LUXE LAYER β page heroes, image-rich cards, auto-scroll
marquees, hover effects. Built on the existing navy/yellow/
Playfair charter β no palette or font change.
============================================================ */
/* ---------- Page hero ---------- */
.lux-hero {
position: relative;
overflow: hidden;
background: var(--navy);
color: #fff;
isolation: isolate;
}
.lux-hero__bg { position: absolute; inset: 0; z-index: -2; }
.lux-hero__bg img {
width: 100%; height: 100%; object-fit: cover; display: block;
transform: scale(1.06);
animation: lux-kenburns 26s ease-in-out infinite alternate;
}
@keyframes lux-kenburns {
from { transform: scale(1.05) translate(0, 0); }
to { transform: scale(1.15) translate(-1.6%, -1.4%); }
}
.lux-hero::before {
content: ""; position: absolute; inset: 0; z-index: -1;
background:
linear-gradient(108deg, rgba(4,30,77,0.95) 0%, rgba(5,41,98,0.86) 36%, rgba(5,41,98,0.52) 68%, rgba(5,41,98,0.34) 100%),
linear-gradient(0deg, rgba(3,18,46,0.72), rgba(3,18,46,0) 52%);
}
.lux-hero__inner {
max-width: 1280px; margin: 0 auto;
padding: 88px 24px 76px;
position: relative;
}
.lux-hero__inner.narrow { max-width: 980px; }
.lux-hero__kicker {
display: inline-flex; align-items: center; gap: 8px;
background: var(--yellow); color: var(--navy);
font-weight: 800; font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
padding: 6px 14px; border-radius: 2px; margin-bottom: 22px;
}
.lux-hero__kicker .icon-svg { width: 13px; height: 13px; }
.lux-hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(38px, 5.2vw, 62px);
line-height: 1.05; font-weight: 800; margin: 0 0 18px;
letter-spacing: -0.01em;
}
.lux-hero h1 .accent { color: var(--yellow); }
.lux-hero .lux-hero__lead {
font-size: clamp(16px, 1.55vw, 19px); line-height: 1.62;
max-width: 58ch; opacity: 0.92; margin: 0 0 30px;
}
.lux-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.lux-hero__actions .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.lux-hero__actions .btn-outline:hover { background: #fff; color: var(--navy); }
.lux-hero__stats {
display: flex; flex-wrap: wrap; gap: 44px;
margin-top: 48px; padding-top: 26px;
border-top: 1px solid rgba(255,255,255,0.18);
}
.lux-hero__stats .s strong {
display: block; font-family: 'Playfair Display', serif;
font-size: 30px; font-weight: 800; color: var(--yellow); line-height: 1; margin-bottom: 4px;
}
.lux-hero__stats .s span { font-size: 12.5px; opacity: 0.78; letter-spacing: 0.3px; }
/* Hero variant: framed image alongside the copy */
.lux-hero--split .lux-hero__inner {
display: grid; grid-template-columns: 1.05fr 0.92fr; gap: 56px; align-items: center;
}
.lux-hero--split::before { background: linear-gradient(120deg, rgba(4,30,77,0.97), rgba(5,41,98,0.9)); }
.lux-hero--split .lux-hero__bg img { filter: blur(3px) brightness(0.45); }
.lux-hero__figure {
position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3;
box-shadow: 0 44px 88px -28px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.12);
}
.lux-hero__figure > img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.lux-hero__figure:hover > img { transform: scale(1.06); }
.lux-hero__figure .fig-tag {
position: absolute; left: 14px; bottom: 14px; z-index: 2;
display: inline-flex; align-items: center; gap: 7px;
background: rgba(3,18,46,0.78); backdrop-filter: blur(6px);
color: #fff; font-size: 12px; font-weight: 600; padding: 8px 12px; border-radius: var(--r-sm);
border: 1px solid rgba(255,255,255,0.14);
}
.lux-hero__figure .fig-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,0.22); }
.lux-hero__figure::after { content: ""; position: absolute; left: 0; bottom: 0; width: 72px; height: 4px; background: var(--yellow); z-index: 3; }
@media (max-width: 900px) {
.lux-hero--split .lux-hero__inner { grid-template-columns: 1fr; gap: 30px; }
.lux-hero__inner { padding: 56px 20px 50px; }
.lux-hero__stats { gap: 28px; }
}
/* ---------- Auto horizontal scroll (marquee) ---------- */
.marquee {
position: relative; overflow: hidden;
-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
display: flex; width: max-content;
animation: lux-marquee var(--mq-dur, 46s) linear infinite;
will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee[data-reverse="true"] .marquee__track { animation-direction: reverse; }
.marquee__track > * { margin-right: var(--mq-gap, 22px); }
@keyframes lux-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* Image tile inside a marquee */
.mq-card {
flex: 0 0 auto; width: 296px; border-radius: var(--r);
overflow: hidden; position: relative; background: #0a1b3c;
box-shadow: var(--sh-md); text-decoration: none; color: #fff;
display: block;
}
.mq-card img { width: 100%; height: 188px; object-fit: cover; display: block; transition: transform .7s var(--ease-out); }
.mq-card:hover img { transform: scale(1.08); }
.mq-card .mq-cap {
position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 13px;
background: linear-gradient(0deg, rgba(3,18,46,0.94), rgba(3,18,46,0.55) 50%, rgba(3,18,46,0));
font-size: 13px; font-weight: 600; line-height: 1.35;
}
.mq-card .mq-tag {
position: absolute; top: 11px; left: 11px;
font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px;
padding: 4px 8px; border-radius: 2px; background: var(--yellow); color: var(--navy);
}
.mq-card .mq-tag.is-real { background: var(--green); color: #fff; }
.mq-card .mq-tag.is-fake { background: var(--red); color: #fff; }
.mq-card .mq-tag.is-warn { background: #92400e; color: #fff; }
/* Text/logo marquee */
.marquee--logos { --mq-gap: 0px; }
.marquee--logos .mq-logo {
flex: 0 0 auto; font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700;
color: var(--ink-faint); padding: 0 30px; white-space: nowrap; opacity: 0.65; letter-spacing: 0.2px;
display: inline-flex; align-items: center; gap: 30px;
}
.marquee--logos .mq-logo::before { content: "β¦"; color: var(--yellow); font-size: 12px; opacity: 0.85; }
/* Strip wrapper (title + marquee) */
.lux-strip { padding: 30px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lux-strip.on-navy { background: var(--navy-dark); border-color: rgba(255,255,255,0.08); }
.lux-strip__head {
max-width: 1280px; margin: 0 auto 18px; padding: 0 24px;
display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.lux-strip__head .t { font-family: 'Playfair Display', serif; font-size: 22px; margin: 0; }
.lux-strip.on-navy .lux-strip__head .t { color: #fff; }
.lux-strip__head .s { font-size: 13px; color: var(--ink-faint); }
.lux-strip.on-navy .lux-strip__head .s { color: rgba(255,255,255,0.6); }
/* ---------- Image-rich module cards ---------- */
.modules-lux {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
max-width: 1280px; margin: 0 auto; padding: 6px 24px;
}
@media (max-width: 1000px) { .modules-lux { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .modules-lux { grid-template-columns: 1fr; } }
.mod-card {
--mc: var(--navy);
position: relative; display: flex; flex-direction: column;
background: #fff; border-radius: var(--r-lg); overflow: hidden;
border: 1px solid var(--line); box-shadow: var(--sh-sm);
text-decoration: none; color: inherit;
transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.mod-card:hover {
transform: translateY(-8px);
box-shadow: 0 32px 64px -20px var(--navy-glow), 0 16px 30px -14px rgba(15,23,42,0.16);
border-color: transparent;
}
.mod-card::before {
content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 4;
background: var(--mc); transform: scaleX(0); transform-origin: left;
transition: transform .5s var(--ease-out);
}
.mod-card:hover::before { transform: scaleX(1); }
.mod-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.mod-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s var(--ease-out); }
.mod-card:hover .mod-card__media img { transform: scale(1.09); }
.mod-card__media::after {
content: ""; position: absolute; inset: 0; pointer-events: none;
background:
linear-gradient(180deg, rgba(4,21,53,0) 42%, rgba(4,21,53,0.06) 66%, rgba(4,21,53,0.32) 100%),
linear-gradient(125deg, color-mix(in srgb, var(--mc) 32%, transparent), transparent 55%);
transition: opacity .4s; opacity: 0.9;
}
.mod-card:hover .mod-card__media::after { opacity: 0.7; }
.mod-card__badge {
position: absolute; top: 14px; left: 14px; z-index: 3;
display: inline-flex; align-items: center; gap: 6px;
background: var(--yellow); color: var(--navy);
font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.7px;
padding: 5px 10px; border-radius: 2px;
}
.mod-card__icon {
position: absolute; left: 18px; bottom: -24px; z-index: 4;
width: 52px; height: 52px; border-radius: 14px;
display: flex; align-items: center; justify-content: center;
background: #fff; color: var(--mc);
box-shadow: 0 12px 26px -8px rgba(15,23,42,0.3);
border: 1px solid var(--line-soft);
}
.mod-card__icon .icon-svg { width: 24px; height: 24px; }
.mod-card__body { padding: 36px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.mod-card__no {
font-family: 'Playfair Display', serif; font-size: 11.5px; font-weight: 700;
color: var(--ink-faint); letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 6px;
}
.mod-card h3 { font-family: 'Playfair Display', serif; font-size: 21px; line-height: 1.16; margin: 0 0 9px; }
.mod-card .mod-card__sub { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 14px; }
.mod-card__formats { font-size: 10.5px; color: var(--mc); font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; margin: 0 0 16px; opacity: 0.85; }
.mod-card__meta {
margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px;
padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.mod-card__stats { display: flex; gap: 16px; font-size: 10px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.4px; }
.mod-card__stats b { display: block; font-family: 'Playfair Display', serif; font-size: 16px; color: var(--navy); letter-spacing: 0; text-transform: none; }
.mod-card__cta { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 13px; color: var(--navy); white-space: nowrap; }
.mod-card__cta .icon-svg { width: 14px; height: 14px; transition: transform .25s; }
.mod-card:hover .mod-card__cta .icon-svg { transform: translateX(4px); }
/* ---------- Centered section heading ---------- */
.lux-shead { text-align: center; max-width: 720px; margin: 0 auto 38px; padding: 0 20px; }
.lux-shead .k {
display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
color: var(--navy); background: var(--yellow-soft); padding: 5px 12px; border-radius: 2px; margin-bottom: 14px;
}
.lux-shead h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; margin: 0 0 12px; }
.lux-shead p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
/* ---------- Shine sweep on hover ---------- */
.lux-shine { position: relative; overflow: hidden; }
.lux-shine::after {
content: ""; position: absolute; top: -10%; left: -130%; width: 55%; height: 120%;
background: linear-gradient(110deg, transparent, rgba(255,255,255,0.4), transparent);
transform: skewX(-20deg); transition: left .75s var(--ease-out); pointer-events: none;
}
.lux-shine:hover::after { left: 140%; }
/* ---------- Floating CTA banner with image ---------- */
.lux-cta {
position: relative; overflow: hidden; border-radius: var(--r-xl);
max-width: 1180px; margin: 64px auto; padding: 56px 48px; color: #fff;
}
.lux-cta__bg { position: absolute; inset: 0; z-index: -2; }
.lux-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.lux-cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(115deg, rgba(4,30,77,0.95), rgba(5,41,98,0.78)); }
.lux-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 36px); margin: 0 0 10px; line-height: 1.12; }
.lux-cta p { font-size: 16px; opacity: 0.9; max-width: 56ch; margin: 0 0 24px; line-height: 1.6; }
@media (max-width: 700px) { .lux-cta { padding: 40px 26px; margin: 40px 16px; } }
/* ============================================================
MODULE PAGE HERO β cinematic full-bleed image + live "analysis
console" + spec ribbon. Deliberately distinct from .lux-hero.
============================================================ */
.mhero {
--mc: #3b82f6;
position: relative; overflow: hidden; color: #fff; isolation: isolate;
min-height: clamp(500px, 66vh, 640px);
display: flex; align-items: stretch;
}
.mhero__img { position: absolute; inset: 0; z-index: 0; }
.mhero__img img {
width: 100%; height: 100%; object-fit: cover; display: block;
transform: scale(1.05); animation: lux-kenburns 30s ease-in-out infinite alternate;
}
.mhero::before {
content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
background:
linear-gradient(180deg, rgba(3,15,38,0.5) 0%, rgba(3,15,38,0.18) 28%, rgba(3,15,38,0.55) 66%, rgba(3,15,38,0.93) 100%),
linear-gradient(96deg, rgba(3,15,38,0.88) 0%, rgba(3,15,38,0.42) 46%, rgba(3,15,38,0.08) 100%),
linear-gradient(0deg, color-mix(in srgb, var(--mc) 26%, transparent), transparent 58%);
}
.mhero__scan {
position: absolute; left: 0; right: 0; top: 6%; height: 2px; z-index: 2; pointer-events: none;
background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--mc) 92%, white), transparent);
box-shadow: 0 0 22px 2px color-mix(in srgb, var(--mc) 55%, transparent);
opacity: 0.5; animation: mhero-scan 6.5s cubic-bezier(.45,0,.55,1) infinite;
}
@keyframes mhero-scan { 0% { top: 5%; } 50% { top: 95%; } 100% { top: 5%; } }
.mhero__ghost {
position: absolute; right: 1.5%; bottom: -13%; z-index: 1; pointer-events: none; user-select: none;
font-family: 'Playfair Display', serif; font-weight: 800; line-height: 1;
font-size: clamp(200px, 31vw, 450px); color: rgba(255,255,255,0.055);
}
.mhero__inner {
position: relative; z-index: 3; width: 100%;
max-width: 1280px; margin: 0 auto; padding: 26px 24px 40px;
display: flex; flex-direction: column;
}
.mhero__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mhero__crumb a {
color: rgba(255,255,255,0.78); text-decoration: none; font-size: 13px;
display: inline-flex; align-items: center; gap: 7px; transition: color .15s;
}
.mhero__crumb a:hover { color: #fff; }
.mhero__idx { font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase; color: rgba(255,255,255,0.65); display: inline-flex; align-items: center; gap: 10px; }
.mhero__idx::before { content: ""; width: 36px; height: 1px; background: rgba(255,255,255,0.35); }
.mhero__idx b { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; letter-spacing: 0; font-weight: 800; }
.mhero__idx i { font-style: normal; opacity: 0.5; }
.mhero__main { margin-top: auto; padding-top: 56px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: end; }
.mhero__chip {
display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
font-size: 11px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; color: #fff;
padding: 7px 14px; border-radius: 9999px;
background: color-mix(in srgb, var(--mc) 24%, rgba(255,255,255,0.05));
border: 1px solid color-mix(in srgb, var(--mc) 58%, transparent);
}
.mhero__chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mc); box-shadow: 0 0 0 4px color-mix(in srgb, var(--mc) 24%, transparent); }
.mhero h1 {
font-family: 'Playfair Display', serif; font-weight: 800; letter-spacing: -0.01em;
font-size: clamp(34px, 4.4vw, 56px); line-height: 1.06; margin: 0 0 16px; max-width: 17ch;
}
.mhero__lead { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.6; opacity: 0.9; max-width: 52ch; margin: 0 0 26px; }
.mhero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.mhero__actions .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.mhero__actions .btn-outline:hover { background: #fff; color: var(--navy); }
/* live analysis console */
.mhero__console {
background: rgba(7,18,42,0.55); -webkit-backdrop-filter: blur(14px) saturate(1.3); backdrop-filter: blur(14px) saturate(1.3);
border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-lg);
padding: 18px 18px 16px; box-shadow: 0 32px 64px -22px rgba(0,0,0,0.62);
font-size: 13px;
}
.mhero__console .cc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.mhero__console .cc-title { font-weight: 700; display: inline-flex; align-items: center; gap: 9px; letter-spacing: 0.2px; }
.mhero__console .cc-live { width: 8px; height: 8px; border-radius: 50%; background: var(--mc); animation: mhero-pulse 1.6s ease-out infinite; }
@keyframes mhero-pulse {
0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--mc) 55%, transparent); }
70% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--mc) 0%, transparent); }
100% { box-shadow: 0 0 0 0 transparent; }
}
.mhero__console .cc-dots { display: inline-flex; gap: 4px; }
.mhero__console .cc-dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); animation: cc-dots 1.2s ease-in-out infinite; }
.mhero__console .cc-dots i:nth-child(2) { animation-delay: 0.18s; }
.mhero__console .cc-dots i:nth-child(3) { animation-delay: 0.36s; }
@keyframes cc-dots { 0%, 100% { opacity: 0.25; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-2px); } }
.mhero__console .cc-bar { height: 6px; border-radius: 9999px; background: rgba(255,255,255,0.12); overflow: hidden; margin-bottom: 14px; }
.mhero__console .cc-bar > i { display: block; height: 100%; width: 100%; transform-origin: left center; border-radius: 9999px; background: linear-gradient(90deg, var(--mc), color-mix(in srgb, var(--mc) 35%, white)); animation: cc-load 3s ease-in-out infinite; will-change: transform; }
@keyframes cc-load { 0% { transform: scaleX(.08); } 55% { transform: scaleX(.74); } 100% { transform: scaleX(.08); } }
.mhero__console ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.mhero__console li { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.82); }
.mhero__console li .s { margin-left: auto; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.mhero__console li .s.ok { color: #4ade80; }
.mhero__console li .s.run { color: color-mix(in srgb, var(--mc) 55%, white); animation: cc-blink 1.4s ease-in-out infinite; }
@keyframes cc-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
.mhero__console li .mk { width: 14px; height: 14px; border-radius: 4px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; font-size: 9px; }
.mhero__console li .mk.ok { background: rgba(74,222,128,0.18); color: #4ade80; }
.mhero__console li .mk.run { background: color-mix(in srgb, var(--mc) 20%, transparent); color: color-mix(in srgb, var(--mc) 55%, white); }
/* spec ribbon under the module hero */
.mspec { background: var(--navy-dark); color: #fff; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mspec__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; flex-wrap: wrap; align-items: stretch; }
.mspec__item { display: flex; align-items: center; gap: 11px; padding: 16px 26px 16px 0; }
.mspec__item + .mspec__item { padding-left: 26px; border-left: 1px solid rgba(255,255,255,0.1); }
.mspec__item strong { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; }
.mspec__item span { font-size: 11.5px; opacity: 0.62; text-transform: uppercase; letter-spacing: 0.5px; }
.mspec__item.is-formats { margin-left: auto; padding-left: 26px; border-left: 1px solid rgba(255,255,255,0.1); font-size: 11.5px; letter-spacing: 0.5px; text-transform: uppercase; opacity: 0.82; }
.mspec__item.is-formats b { color: var(--yellow); font-weight: 700; margin-right: 6px; }
@media (max-width: 920px) {
.mhero__main { grid-template-columns: 1fr; gap: 24px; padding-top: 36px; }
.mhero__console { max-width: 440px; }
.mhero__inner { padding-bottom: 32px; }
}
@media (max-width: 600px) {
.mhero { min-height: auto; }
.mhero__idx b { font-size: 18px; }
.mhero__idx::before { width: 20px; }
.mspec__inner { gap: 0; }
.mspec__item { padding: 11px 16px 11px 0; }
.mspec__item + .mspec__item, .mspec__item.is-formats { padding-left: 16px; }
.mspec__item.is-formats { margin-left: 0; width: 100%; border-left: 0; border-top: 1px solid rgba(255,255,255,0.1); }
}
@media (prefers-reduced-motion: reduce) {
.mhero__img img, .mhero__scan, .mhero__console .cc-bar > i, .mhero__console .cc-dots i,
.mhero__console .cc-live, .mhero__console li .s.run { animation: none; }
}
/* ---------- Live verdict ticker ---------- */
.ticker-bar { display: flex; align-items: stretch; background: var(--navy-dark); color: #fff; overflow: hidden; }
.ticker-bar .ticker-label {
flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px;
background: var(--yellow); color: var(--navy);
font-weight: 800; font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
padding: 0 22px; position: relative; z-index: 2; white-space: nowrap;
}
.ticker-bar .ticker-label .pulse-dot {
width: 8px; height: 8px; border-radius: 50%; background: var(--red);
animation: lux-pulse 1.7s ease-out infinite;
}
@keyframes lux-pulse {
0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.55); }
70% { box-shadow: 0 0 0 9px rgba(220,38,38,0); }
100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}
.ticker-bar .marquee { flex: 1 1 auto; min-width: 0; }
.marquee--ticker { --mq-gap: 0px; }
.marquee--ticker .mq-tick {
flex: 0 0 auto; display: inline-flex; align-items: center; gap: 12px;
padding: 13px 24px; font-size: 13.5px; white-space: nowrap; color: rgba(255,255,255,0.9);
}
.marquee--ticker .mq-tick > a { color: inherit; text-decoration: none; }
.marquee--ticker .mq-tick > a:hover { color: #fff; text-decoration: underline; }
.marquee--ticker .mq-tick .v {
font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px;
padding: 3px 8px; border-radius: 3px;
}
.marquee--ticker .mq-tick .v.is-real { background: var(--green); color: #fff; }
.marquee--ticker .mq-tick .v.is-fake { background: var(--red); color: #fff; }
.marquee--ticker .mq-tick .v.is-warn { background: #92400e; color: #fff; }
@media (max-width: 600px) { .ticker-bar .ticker-label { font-size: 10px; padding: 0 14px; letter-spacing: 1px; } }
/* ---------- Big image gallery rows (auto-scroll) ---------- */
.lux-gallery { display: flex; flex-direction: column; gap: 18px; padding: 4px 0; }
.lux-gallery .mq-card { width: 340px; }
.lux-gallery .mq-card img { height: 214px; }
/* ---------- Module finder β creative redesign ---------- */
.finder {
position: relative; overflow: hidden;
background: linear-gradient(135deg, #041a40 0%, #052962 46%, #0a3d8f 100%);
color: #fff; padding: 58px 24px 62px; border-bottom: 4px solid var(--yellow);
}
.finder::before {
content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
top: -200px; right: -120px; pointer-events: none;
background: radial-gradient(circle, rgba(255,229,0,0.16), transparent 65%);
}
.finder::after {
content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
bottom: -280px; left: -160px; pointer-events: none;
background: radial-gradient(circle, rgba(96,165,250,0.18), transparent 65%);
}
.finder .container { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.finder .kicker {
display: inline-flex; align-items: center; gap: 7px;
background: var(--yellow); color: var(--navy);
font-weight: 800; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
padding: 5px 12px; border-radius: 2px; margin-bottom: 16px;
}
.finder .kicker .icon-svg { width: 12px; height: 12px; }
.finder h2 {
font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.4vw, 38px);
line-height: 1.08; margin: 0 0 8px; letter-spacing: -0.01em;
}
.finder .lead { font-size: 15.5px; opacity: 0.88; margin: 0 0 28px; max-width: 620px; line-height: 1.55; }
.finder .use-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 940px) { .finder .use-cases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .finder .use-cases { grid-template-columns: 1fr; } }
.finder .uc {
--uc-c: var(--yellow);
position: relative; display: flex; gap: 14px; align-items: center;
padding: 13px 16px 13px 14px;
background: rgba(255,255,255,0.055);
border: 1px solid rgba(255,255,255,0.13);
border-radius: 14px; text-decoration: none; color: #fff; overflow: hidden;
transition: transform .35s var(--ease-out), background .25s, border-color .25s, box-shadow .35s;
}
.finder .uc::before {
content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
background: var(--uc-c); transform: scaleY(0); transform-origin: top;
transition: transform .35s var(--ease-out);
}
.finder .uc:hover, .finder .uc:focus-visible, .finder .uc.active {
transform: translateY(-4px);
background: rgba(255,255,255,0.095);
border-color: color-mix(in srgb, var(--uc-c) 55%, rgba(255,255,255,0.13));
box-shadow: 0 20px 38px -16px rgba(0,0,0,0.55), 0 0 0 1px color-mix(in srgb, var(--uc-c) 25%, transparent);
}
.finder .uc:hover::before, .finder .uc.active::before { transform: scaleY(1); }
.finder .uc .uc-thumb {
flex: 0 0 auto; width: 62px; height: 62px; border-radius: 11px; overflow: hidden;
position: relative; box-shadow: 0 8px 18px -8px rgba(0,0,0,0.6);
}
.finder .uc .uc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease-out); }
.finder .uc:hover .uc-thumb img { transform: scale(1.13); }
.finder .uc .uc-thumb::after {
content: ""; position: absolute; inset: 0;
background: linear-gradient(140deg, color-mix(in srgb, var(--uc-c) 48%, transparent), transparent 62%);
}
.finder .uc .uc-text { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.finder .uc .uc-title { font-weight: 600; font-size: 13.5px; line-height: 1.35; }
.finder .uc .uc-reco {
display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
font-size: 11px; font-weight: 800; letter-spacing: 0.2px; color: var(--uc-c);
background: color-mix(in srgb, var(--uc-c) 14%, transparent);
border: 1px solid color-mix(in srgb, var(--uc-c) 30%, transparent);
padding: 4px 10px; border-radius: 9999px; line-height: 1.3; max-width: 100%;
}
.finder .uc .uc-reco .icon-svg { width: 11px; height: 11px; flex: 0 0 auto; transition: transform .25s; }
.finder .uc:hover .uc-reco .icon-svg { transform: translateX(3px); }
/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
.lux-hero__bg img { animation: none; }
.marquee__track { animation-duration: 200s; }
.mod-card, .mod-card__media img, .mq-card img, .lux-hero__figure > img,
.finder .uc, .finder .uc .uc-thumb img { transition: none; }
}
/* ============================================================
"VERIFY A FILE" MEGA-MENU β luxe redesign of .dropdown-panel
============================================================ */
.has-dropdown > a::after { display: inline-block; transition: transform .2s var(--ease-out); }
.has-dropdown:hover > a::after, .has-dropdown:focus-within > a::after { transform: rotate(180deg); }
.dropdown-panel {
width: 700px; left: -20px; margin-top: 14px; padding: 0;
display: grid; grid-template-columns: 198px 1fr; gap: 0;
overflow: hidden; border-radius: 16px; border-top: 4px solid var(--yellow);
box-shadow: 0 30px 64px -16px rgba(5,41,98,0.30), 0 12px 28px -10px rgba(15,23,42,0.18);
/* animated open/close instead of display:none */
opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px) scale(0.985); transform-origin: top center;
transition: opacity .2s ease, transform .26s var(--ease-out), visibility 0s linear .2s;
background: #fff;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
display: grid; opacity: 1; visibility: visible; pointer-events: auto; transform: none;
transition: opacity .2s ease, transform .26s var(--ease-out), visibility 0s;
}
/* Invisible "hover bridge" so the cursor can travel from the nav link down to
the panel without the menu closing. It must NOT live on .dropdown-panel
(which is overflow:hidden β would clip it) β put it on .has-dropdown, which
isn't clipped, and only render it while the menu is open. */
.has-dropdown { position: relative; }
.has-dropdown::before {
content: ""; position: absolute; top: 100%; left: -20px; width: 700px; height: 22px;
pointer-events: none;
}
.has-dropdown:hover::before, .has-dropdown:focus-within::before { pointer-events: auto; }
/* left rail */
.dropdown-panel .dd-rail {
position: relative; overflow: hidden;
background: linear-gradient(165deg, var(--navy) 0%, #0a3d8f 100%);
color: #fff; padding: 22px 20px; display: flex; flex-direction: column;
}
.dropdown-panel .dd-rail::after {
content: ""; position: absolute; width: 210px; height: 210px; border-radius: 50%;
top: -95px; right: -75px; pointer-events: none;
background: radial-gradient(circle, rgba(255,229,0,0.18), transparent 65%);
}
.dropdown-panel .dd-rail-kicker {
align-self: flex-start; font-size: 9.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
color: var(--navy); background: var(--yellow); padding: 5px 10px; border-radius: 2px; margin-bottom: 14px; position: relative; z-index: 1;
}
.dropdown-panel .dd-rail-pitch { font-family: 'Playfair Display', serif; font-size: 16px; line-height: 1.32; margin: 0 0 16px; position: relative; z-index: 1; }
.dropdown-panel .dd-rail-cta {
align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
font-size: 12.5px; font-weight: 700; color: #fff; text-decoration: none;
padding: 8px 13px; border-radius: 9999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
transition: background .15s, border-color .15s, gap .15s; position: relative; z-index: 1;
}
.dropdown-panel .dd-rail-cta:hover { background: rgba(255,229,0,0.16); border-color: var(--yellow); gap: 11px; }
.dropdown-panel .dd-rail-cta span { transition: transform .15s; }
.dropdown-panel .dd-rail-cta:hover span { transform: translateX(2px); }
.dropdown-panel .dd-rail-links {
margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.14);
display: flex; flex-direction: column; gap: 9px; position: relative; z-index: 1;
}
.dropdown-panel .dd-rail-links a { font-size: 12.5px; color: rgba(255,255,255,0.78); text-decoration: none; padding: 0; transition: color .15s; }
.dropdown-panel .dd-rail-links a:hover { color: var(--yellow); }
/* module list */
.dropdown-panel .dd-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; padding: 12px; background: #fff; }
.dropdown-panel .dd-modules a {
--m-bg: #eef1f7; --m-fg: var(--navy);
position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px;
padding: 11px 12px; border-radius: 11px; text-decoration: none; color: var(--ink); font-family: 'Inter', sans-serif; font-size: 14px;
transition: background .18s, transform .18s var(--ease-out);
}
.dropdown-panel .dd-modules a::before {
content: ""; position: absolute; left: 0; top: 11px; bottom: 11px; width: 3px; border-radius: 0 3px 3px 0;
background: var(--m-fg); transform: scaleY(0); transform-origin: center; transition: transform .2s var(--ease-out);
}
.dropdown-panel .dd-modules a:hover { background: color-mix(in srgb, var(--m-bg) 55%, #fff); transform: translateX(3px); }
.dropdown-panel .dd-modules a:hover::before { transform: scaleY(1); }
.dropdown-panel .dd-modules .icon-tile.sm { width: 34px; height: 34px; border-radius: 9px; transition: transform .18s var(--ease-out); }
.dropdown-panel .dd-modules a:hover .icon-tile.sm { transform: scale(1.07); }
.dropdown-panel .dd-text { min-width: 0; }
.dropdown-panel .dd-title {
font-family: 'Playfair Display', serif; font-weight: 700; font-size: 14.5px; color: var(--navy);
display: flex; align-items: center; gap: 7px; margin-bottom: 2px; line-height: 1.2;
}
.dropdown-panel .dd-title .dd-tag {
font-style: normal; font-family: 'Inter', sans-serif; font-size: 8px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase;
color: var(--navy); background: var(--yellow); padding: 2px 6px; border-radius: 9999px; flex: 0 0 auto;
}
.dropdown-panel .dd-sub { display: block; font-size: 11.5px; color: var(--ink-soft); line-height: 1.4; }
.dropdown-panel .dd-arrow {
align-self: center; color: var(--m-fg); display: inline-flex; opacity: 0; transform: translateX(-4px);
transition: opacity .18s, transform .18s var(--ease-out);
}
.dropdown-panel .dd-modules a:hover .dd-arrow { opacity: 1; transform: translateX(0); }
.dropdown-panel .dd-arrow .icon-svg { width: 14px; height: 14px; }
@media (max-width: 1080px) {
.dropdown-panel { width: 560px; }
}
@media (max-width: 820px) {
.dropdown-panel { width: 100%; left: 0; grid-template-columns: 1fr; }
.dropdown-panel .dd-rail { display: none; }
.dropdown-panel .dd-modules { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
.dropdown-panel, .dropdown-panel .dd-modules a, .dropdown-panel .icon-tile.sm,
.has-dropdown > a::after, .dropdown-panel .dd-arrow { transition: none; }
}
/* ---------- "Misleading" verdict (added for real fact-check data) ---------- */
.v-misl { background: #b45309; }
.fc-tab.misl.active { background: #b45309; }
.fc-tab.misl.active .fc-tab-count { background: rgba(255,255,255,0.20); }
.fc-card.misleading .fc-card-cta { background: #b45309; }
.fc-card.misleading:hover .fc-card-cta { background: #92400e; }
.fc-verdict-banner.v-misl { background: linear-gradient(135deg, #b45309, #78350f); }
/* ============================================================
HOMEPAGE "VERIFY TOOLKIT" β interactive editorial showcase
(replaces the old .mf-grid mosaic)
============================================================ */
.toolkit { padding: 64px 0 70px; background: #fff; }
.toolkit .tk-head {
max-width: 1280px; margin: 0 auto 26px; padding: 0 24px;
display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.toolkit .tk-head .k {
display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
color: var(--navy); background: var(--yellow-soft); padding: 5px 12px; border-radius: 2px; margin-bottom: 12px;
}
.toolkit .tk-head h2 {
font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; margin: 0; max-width: 22ch;
}
.toolkit .tk-grid {
max-width: 1280px; margin: 0 auto; padding: 0 24px;
display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 36px; align-items: stretch;
}
/* left: editorial directory of the six modules */
.tk-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.tk-row {
--mc: var(--navy);
position: relative; display: grid; grid-template-columns: 30px 40px 1fr 16px; align-items: center; gap: 16px;
padding: 18px 14px 18px 16px; border-bottom: 1px solid var(--line);
text-decoration: none; color: inherit; cursor: pointer;
transition: background .3s var(--ease-out), padding-left .3s var(--ease-out);
}
.tk-row::before {
content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--mc);
transform: scaleY(0); transform-origin: center; transition: transform .35s var(--ease-out);
}
.tk-row .tk-no { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--ink-faint); letter-spacing: 1px; transition: color .25s; }
.tk-row .tk-tile {
width: 40px; height: 40px; border-radius: 11px; flex: 0 0 auto;
display: flex; align-items: center; justify-content: center;
transition: transform .3s var(--ease-out);
}
.tk-row .tk-tile .icon-svg { width: 20px; height: 20px; }
.tk-row .tk-info h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 2px; line-height: 1.2; }
.tk-row .tk-info p { font-size: 12.5px; color: var(--ink-soft); margin: 0; line-height: 1.4; }
.tk-row .tk-chev { color: var(--ink-faint); opacity: 0; transform: translateX(-5px); transition: opacity .25s, transform .25s var(--ease-out), color .25s; }
.tk-row .tk-chev .icon-svg { width: 16px; height: 16px; }
.tk-row:hover, .tk-row.is-current {
background: linear-gradient(90deg, color-mix(in srgb, var(--mc) 7%, #fff) 0%, #fff 70%);
padding-left: 22px;
}
.tk-row.is-current::before { transform: scaleY(1); }
.tk-row.is-current .tk-no { color: var(--mc); }
.tk-row:hover .tk-tile, .tk-row.is-current .tk-tile { transform: scale(1.07); }
.tk-row:hover .tk-chev, .tk-row.is-current .tk-chev { opacity: 1; transform: translateX(0); color: var(--mc); }
/* right: the live preview panel (panels stacked in one grid cell, cross-fade) */
.tk-stage { display: grid; }
.tk-panel {
grid-area: 1 / 1; opacity: 0; visibility: hidden; pointer-events: none; transform: scale(0.985) translateY(8px);
transition: opacity .4s ease, transform .55s var(--ease-out), visibility 0s linear .4s;
display: flex; flex-direction: column; overflow: hidden;
border: 1px solid var(--line); border-radius: var(--r-xl); background: #fff;
box-shadow: 0 24px 50px -22px var(--navy-glow), 0 10px 22px -12px rgba(15,23,42,0.12);
}
.tk-panel.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: opacity .4s ease, transform .55s var(--ease-out), visibility 0s; }
.tk-panel .tk-pm { position: relative; aspect-ratio: 16 / 9; overflow: hidden; flex: 0 0 auto; }
.tk-panel .tk-pm img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.04); transition: transform 6s ease-out; }
.tk-panel.is-active .tk-pm img { transform: scale(1.12); }
.tk-panel .tk-pm::after {
content: ""; position: absolute; inset: 0;
background: linear-gradient(180deg, rgba(4,21,53,0) 45%, rgba(4,21,53,0.1) 70%, rgba(4,21,53,0.42) 100%),
linear-gradient(120deg, color-mix(in srgb, var(--mc) 30%, transparent), transparent 55%);
}
.tk-panel .tk-pm .tk-pm-tag {
position: absolute; top: 16px; left: 16px; z-index: 2;
display: inline-flex; align-items: center; gap: 7px;
background: rgba(3,18,46,0.6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
border: 1px solid rgba(255,255,255,0.16); color: #fff;
font-size: 11px; font-weight: 700; padding: 7px 11px; border-radius: 9999px;
}
.tk-panel .tk-pm .tk-pm-tag .d { width: 6px; height: 6px; border-radius: 50%; background: var(--mc); box-shadow: 0 0 0 4px color-mix(in srgb, var(--mc) 30%, transparent); }
.tk-panel .tk-picon {
position: absolute; left: 22px; bottom: -24px; z-index: 3;
width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
background: #fff; box-shadow: 0 12px 26px -8px rgba(15,23,42,0.3); border: 1px solid var(--line-soft);
}
.tk-panel .tk-picon .icon-svg { width: 24px; height: 24px; }
.tk-panel .tk-pb { padding: 38px 28px 26px; display: flex; flex-direction: column; flex: 1; }
.tk-panel .tk-pb .tk-pno { font-family: 'Playfair Display', serif; font-size: 11.5px; font-weight: 700; color: var(--ink-faint); letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 6px; }
.tk-panel .tk-pb h3 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.14; margin: 0 0 10px; color: var(--navy); }
.tk-panel .tk-pb .tk-lead { font-size: 14.5px; line-height: 1.62; color: var(--ink-soft); margin: 0 0 20px; }
.tk-panel .tk-pstats { display: flex; gap: 26px; padding: 15px 0; margin-bottom: 22px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.tk-panel .tk-pstats b { display: block; font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 800; color: var(--navy); }
.tk-panel .tk-pstats span { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--ink-faint); }
.tk-panel .tk-cta {
align-self: flex-start; margin-top: auto; display: inline-flex; align-items: center; gap: 9px;
background: var(--navy); color: #fff; font-weight: 700; font-size: 14px;
padding: 12px 20px; border-radius: 9999px; text-decoration: none; transition: background .2s, gap .2s;
}
.tk-panel .tk-cta:hover { background: var(--navy-dark); gap: 12px; }
.tk-panel .tk-cta .icon-svg { width: 15px; height: 15px; }
@media (max-width: 940px) {
.toolkit .tk-grid { grid-template-columns: 1fr; gap: 22px; }
.tk-stage { display: none; }
.tk-row { grid-template-columns: 26px 38px 1fr 16px; }
}
@media (prefers-reduced-motion: reduce) {
.tk-row, .tk-panel, .tk-panel .tk-pm img, .tk-row .tk-tile, .tk-row .tk-chev { transition: none; }
}
/* ---------- Module names: switch from Playfair serif to Inter sans ---------- */
.tk-row .tk-info h3,
.tk-panel .tk-pb h3,
.mod-card h3,
.mhero h1 {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
letter-spacing: -0.018em;
}
.mod-card h3 { font-weight: 700; }
.tk-row .tk-info h3 { font-weight: 700; }
.tk-panel .tk-pb h3 { font-weight: 800; }
.mhero h1 { font-weight: 800; letter-spacing: -0.022em; }
/* ============================================================
ANALYSIS RESULT MODAL β fullscreen luxe popup for module reports
Module result HTML (#result-ioX, #process-ioX) is moved into one
of these modals at runtime by inline JS in verifier-module.html.
============================================================ */
.result-modal[hidden] { display: none; }
.result-modal {
position: fixed; inset: 0; z-index: 1000;
display: flex; flex-direction: column;
opacity: 0; visibility: hidden;
transition: opacity .38s ease, visibility 0s linear .38s;
}
.result-modal.is-open {
opacity: 1; visibility: visible;
transition: opacity .38s ease, visibility 0s linear 0s;
}
.result-modal__backdrop {
position: absolute; inset: 0; cursor: pointer;
background:
radial-gradient(120% 80% at 50% 0%, rgba(5,41,98,0.55), rgba(3,16,40,0.86) 60%, rgba(3,16,40,0.94)),
rgba(3,16,40,0.6);
-webkit-backdrop-filter: blur(10px) saturate(1.15);
backdrop-filter: blur(10px) saturate(1.15);
}
.result-modal__panel {
position: relative; z-index: 1; align-self: center;
margin: 4vh auto; width: calc(100% - 32px); max-width: 1180px;
max-height: 92vh; display: flex; flex-direction: column;
background: #fff; border-radius: 20px; overflow: hidden;
box-shadow: 0 60px 110px -28px rgba(0,0,0,0.55), 0 24px 48px -22px rgba(0,0,0,0.3);
transform: translateY(36px) scale(0.985);
transition: transform .55s var(--ease-out);
}
.result-modal.is-open .result-modal__panel { transform: translateY(0) scale(1); }
/* coloured top stripe β themed per module (--mc set on .result-modal) */
.result-modal__panel::before {
content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3;
background: linear-gradient(90deg, var(--mc, var(--yellow)) 0%, color-mix(in srgb, var(--mc, var(--yellow)) 55%, white) 100%);
}
/* faint colored aura around the panel */
.result-modal__panel::after {
content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--mc, var(--navy)) 10%, transparent);
border-radius: 20px;
}
.result-modal__head {
position: sticky; top: 0; z-index: 2;
padding: 18px 28px 14px; border-bottom: 1px solid var(--line);
background: rgba(255,255,255,0.95);
-webkit-backdrop-filter: blur(12px) saturate(1.2);
backdrop-filter: blur(12px) saturate(1.2);
}
.result-modal__head .rm-head-top { display: flex; align-items: center; gap: 16px; }
/* small thematic "report cover" thumbnail */
.result-modal__head .rm-head-thumb {
flex: 0 0 auto; width: 60px; height: 60px; border-radius: 13px; overflow: hidden; position: relative;
border: 1px solid color-mix(in srgb, var(--mc, var(--navy)) 28%, var(--line));
box-shadow: 0 8px 20px -10px color-mix(in srgb, var(--mc, var(--navy)) 45%, transparent), 0 1px 2px rgba(15,23,42,0.08);
}
.result-modal__head .rm-head-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.result-modal__head .rm-head-thumb::after {
content: ""; position: absolute; inset: 0;
background: linear-gradient(155deg, color-mix(in srgb, var(--mc, var(--navy)) 30%, transparent), transparent 55%),
linear-gradient(0deg, rgba(4,21,53,0.28), transparent 60%);
}
.result-modal__head .rm-head-titles { display: flex; flex-direction: column; gap: 6px; min-width: 0; flex: 1; }
.result-modal__head .rm-head-titles .rm-kicker { align-self: flex-start; }
.result-modal__head .rm-kicker {
font-size: 10px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
color: var(--navy); background: var(--yellow); padding: 5px 11px; border-radius: 2px; white-space: nowrap;
}
.result-modal__head .rm-title {
font-family: 'Playfair Display', serif; font-size: clamp(19px, 2vw, 24px); font-weight: 800;
margin: 0; color: var(--navy); line-height: 1.15; letter-spacing: -0.01em;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}
.result-modal__head .rm-actions { margin-left: auto; display: flex; gap: 8px; align-items: center; flex: 0 0 auto; }
.result-modal__head .rm-btn {
display: inline-flex; align-items: center; gap: 7px;
background: transparent; border: 1px solid var(--line); color: var(--navy);
font-family: 'Inter', sans-serif; font-weight: 600; font-size: 12.5px;
padding: 8px 14px; border-radius: 9999px; cursor: pointer;
transition: background .15s, border-color .15s, color .15s;
}
.result-modal__head .rm-btn:hover { background: var(--bg-soft); border-color: var(--navy); }
.result-modal__head .rm-close {
width: 38px; height: 38px; border-radius: 50%;
background: var(--bg-soft); border: 1px solid var(--line); color: var(--navy);
font-size: 14px; font-weight: 700; cursor: pointer;
display: inline-flex; align-items: center; justify-content: center;
transition: background .15s, color .15s, transform .25s var(--ease-out);
}
.result-modal__head .rm-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }
/* report metadata row */
.result-modal__head .rm-meta {
margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line-soft);
display: flex; flex-wrap: wrap; gap: 18px;
font-size: 11px; color: var(--ink-faint); letter-spacing: 0.5px; text-transform: uppercase;
}
.result-modal__head .rm-meta-item { display: inline-flex; align-items: center; gap: 7px; }
.result-modal__head .rm-meta-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mc, var(--navy)); opacity: 0.85; }
.result-modal__head .rm-meta b {
color: var(--navy); font-weight: 800; text-transform: none; letter-spacing: 0;
font-family: 'Playfair Display', serif; font-size: 14px;
}
.result-modal__body {
flex: 1 1 auto; overflow-y: auto; padding: 30px 36px 0;
scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.result-modal__body::-webkit-scrollbar { width: 10px; }
.result-modal__body::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; border: 2px solid #fff; }
.result-modal__body::-webkit-scrollbar-thumb:hover { background: var(--ink-faint); }
.result-modal__body > [id^="result-"],
.result-modal__body > [id^="process-"] { margin: 0; }
/* staggered fade-in of report sections on open */
.result-modal.is-open .result-modal__body [id^="result-"] > *,
.result-modal.is-open .result-modal__body > .rm-footer {
animation: rm-rise .55s var(--ease-out) backwards;
}
.result-modal.is-open .result-modal__body [id^="result-"] > *:nth-child(1) { animation-delay: 0.14s; }
.result-modal.is-open .result-modal__body [id^="result-"] > *:nth-child(2) { animation-delay: 0.22s; }
.result-modal.is-open .result-modal__body [id^="result-"] > *:nth-child(3) { animation-delay: 0.30s; }
.result-modal.is-open .result-modal__body [id^="result-"] > *:nth-child(4) { animation-delay: 0.38s; }
.result-modal.is-open .result-modal__body [id^="result-"] > *:nth-child(5) { animation-delay: 0.46s; }
.result-modal.is-open .result-modal__body [id^="result-"] > *:nth-child(6) { animation-delay: 0.54s; }
.result-modal.is-open .result-modal__body > .rm-footer { animation-delay: 0.60s; }
@keyframes rm-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
/* in-body footer with actions */
.rm-footer {
margin: 38px -36px 0; padding: 28px 36px 32px;
border-top: 1px solid var(--line);
background: linear-gradient(180deg, #ffffff, #f8fafc);
display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
}
.rm-footer .rm-foot-msg { font-size: 13.5px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 9px; }
.rm-footer .rm-foot-msg .seal {
width: 28px; height: 28px; border-radius: 50%;
background: color-mix(in srgb, var(--mc, var(--navy)) 14%, #fff);
color: var(--mc, var(--navy));
display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
}
.rm-footer .rm-foot-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.rm-footer .rm-foot-btn {
display: inline-flex; align-items: center; gap: 8px;
background: var(--navy); color: #fff; font-weight: 700; font-size: 13px;
padding: 11px 18px; border-radius: 9999px; text-decoration: none; cursor: pointer;
border: 0; font-family: inherit;
transition: background .15s, gap .15s;
}
.rm-footer .rm-foot-btn:hover { background: var(--navy-dark); gap: 11px; }
.rm-footer .rm-foot-btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--navy); }
.rm-footer .rm-foot-btn.ghost:hover { background: var(--bg-soft); border-color: var(--navy); }
/* hard scroll-lock when a modal is open */
body.result-open { overflow: hidden; }
@media (max-width: 720px) {
.result-modal__panel { margin: 0; max-height: 100vh; width: 100%; border-radius: 0; }
.result-modal__body { padding: 20px 18px 0; }
.result-modal__head { padding: 14px 16px 12px; }
.result-modal__head .rm-head-top { gap: 10px; }
.result-modal__head .rm-head-thumb { width: 46px; height: 46px; border-radius: 10px; }
.result-modal__head .rm-title { font-size: 16px; }
.result-modal__head .rm-btn { font-size: 11.5px; padding: 7px 11px; }
.result-modal__head .rm-btn .lbl { display: none; }
.result-modal__head .rm-meta { gap: 12px; font-size: 10.5px; }
.result-modal__head .rm-meta b { font-size: 12.5px; }
.rm-footer { margin: 28px -18px 0; padding: 22px 18px 26px; flex-direction: column; align-items: flex-start; gap: 14px; }
.rm-footer .rm-foot-actions { width: 100%; }
.rm-footer .rm-foot-btn { flex: 1 1 auto; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
.result-modal, .result-modal__panel { transition: none; }
.result-modal.is-open .result-modal__body > * { animation: none; }
.result-modal__head .rm-close:hover { transform: none; }
}
/* PRINT: turn the modal body into the printed page */
@media print {
body { background: #fff !important; overflow: visible !important; }
body > *:not(.result-modal) { display: none !important; }
.result-modal { position: static !important; opacity: 1 !important; visibility: visible !important; transform: none !important; display: block !important; }
.result-modal[hidden] { display: block !important; }
.result-modal__backdrop, .result-modal__head .rm-actions, .rm-footer { display: none !important; }
.result-modal.is-open .result-modal__body > * { animation: none !important; }
.result-modal__panel { box-shadow: none !important; border-radius: 0; max-height: none !important; transform: none !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; }
.result-modal__panel::before { display: none; }
.result-modal__head { position: static !important; padding: 0 0 12px; border-bottom: 1px solid #ddd; background: #fff !important; }
.result-modal__body { overflow: visible !important; padding: 16px 0 0 !important; }
}
/* ============================================================
ADVANCED REPORT LAYER β TOC sidebar, watermark, intro overlay,
forensic signature seal. Layered on top of the .result-modal base.
============================================================ */
/* ββ Layout: head + (toc | body), instead of head + body ββββββββββββ */
.result-modal__panel.has-rm-layout { display: grid; grid-template-rows: auto 1fr; }
.result-modal__panel.has-rm-layout .rm-layout {
display: grid; grid-template-columns: 248px 1fr;
min-height: 0; overflow: hidden; position: relative;
}
.result-modal__panel.has-rm-layout .result-modal__body { min-height: 0; }
@media (max-width: 880px) {
.result-modal__panel.has-rm-layout .rm-layout { grid-template-columns: 1fr; }
.result-modal__panel.has-rm-layout .rm-toc { display: none; }
}
/* ββ TOC sidebar ββββββββββββββββββββββββββββββββββββββββββββββββββββ */
.rm-toc {
background: linear-gradient(180deg, #fafbfd 0%, #f4f7fa 100%);
border-right: 1px solid var(--line);
padding: 26px 22px 28px; overflow-y: auto;
font-family: 'Inter', sans-serif;
}
.rm-toc h4 {
font-size: 9.5px; font-weight: 800; letter-spacing: 1.4px;
text-transform: uppercase; color: var(--ink-faint); margin: 0 0 14px;
}
.rm-toc__nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px; }
.rm-toc__nav a {
display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: center;
padding: 9px 11px; border-radius: 9px; cursor: pointer;
font-size: 13px; color: var(--ink-soft); text-decoration: none; line-height: 1.35;
border-left: 2px solid transparent;
transition: background .15s, color .15s, border-color .2s, padding-left .2s;
}
.rm-toc__nav a .n {
font-family: 'Playfair Display', serif; font-weight: 800; font-size: 13px;
color: var(--ink-faint); transition: color .15s;
}
.rm-toc__nav a:hover { background: rgba(0,0,0,0.03); color: var(--navy); }
.rm-toc__nav a.is-current {
background: color-mix(in srgb, var(--mc, var(--navy)) 10%, #fff);
color: var(--navy); border-left-color: var(--mc, var(--navy)); padding-left: 13px;
}
.rm-toc__nav a.is-current .n { color: var(--mc, var(--navy)); }
.rm-toc__about { border-top: 1px solid var(--line); padding-top: 18px; }
.rm-toc__about h5 {
font-size: 9.5px; font-weight: 800; letter-spacing: 1.4px;
text-transform: uppercase; color: var(--ink-faint); margin: 0 0 10px;
}
.rm-toc__about p { font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 12px; }
.rm-toc__about ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.rm-toc__about li {
font-size: 11.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px;
}
.rm-toc__about li::before {
content: ""; width: 5px; height: 5px; border-radius: 50%;
background: var(--mc, var(--navy)); flex: 0 0 auto; opacity: 0.7;
}
/* ββ Watermark behind the body ββββββββββββββββββββββββββββββββββββββ */
.rm-watermark {
position: absolute; right: -4%; bottom: -6%;
font-family: 'Playfair Display', serif; font-weight: 800;
font-size: clamp(180px, 24vw, 320px); line-height: 1;
color: rgba(5, 41, 98, 0.028);
letter-spacing: -0.04em;
pointer-events: none; user-select: none;
transform: rotate(-10deg);
z-index: 0;
}
.result-modal__body > * { position: relative; z-index: 1; }
/* ββ Compilation intro overlay (modal open theatrics) ββββββββββββββ */
.rm-intro {
position: absolute; inset: 0; z-index: 10;
background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(248,250,253,0.97));
-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
opacity: 1; transition: opacity .55s ease;
}
.rm-intro.is-hidden { opacity: 0; pointer-events: none; }
.rm-intro .label {
font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 800; letter-spacing: 1.8px;
text-transform: uppercase; color: var(--ink-faint);
display: inline-flex; align-items: center; gap: 8px;
}
.rm-intro .label .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--mc, var(--navy)); animation: rm-intro-pulse 1.4s ease-out infinite; }
@keyframes rm-intro-pulse {
0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--mc, var(--navy)) 50%, transparent); }
70% { box-shadow: 0 0 0 10px transparent; }
100% { box-shadow: 0 0 0 0 transparent; }
}
.rm-intro .text {
font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.6vw, 30px); font-weight: 700;
color: var(--navy); letter-spacing: -0.01em;
}
.rm-intro .bar {
width: 240px; max-width: 60vw; height: 3px; background: #eef1f5; border-radius: 99px; overflow: hidden;
}
.rm-intro .bar > i {
display: block; height: 100%; width: 28%;
background: linear-gradient(90deg, transparent, var(--mc, var(--navy)), transparent);
animation: rm-intro-bar 1.3s ease-in-out infinite;
}
@keyframes rm-intro-bar {
0% { transform: translateX(-110%); }
100% { transform: translateX(440%); }
}
.rm-intro .scan {
position: absolute; left: 0; right: 0; top: 40%; height: 2px;
background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--mc, var(--navy)) 80%, white), transparent);
box-shadow: 0 0 24px 2px color-mix(in srgb, var(--mc, var(--navy)) 50%, transparent);
opacity: 0.6;
animation: rm-intro-scan 1.6s linear infinite;
}
@keyframes rm-intro-scan {
0% { top: 18%; opacity: 0; }
10% { opacity: 0.8; }
90% { opacity: 0.8; }
100% { top: 82%; opacity: 0; }
}
/* ββ Forensic signature seal block ββββββββββββββββββββββββββββββββββ */
.rm-signature {
margin: 36px 0 0; padding: 26px 28px;
background: linear-gradient(135deg, #fbfcfe 0%, #f5f7fa 100%);
border: 1px solid var(--line); border-radius: 14px;
display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
position: relative; overflow: hidden;
}
.rm-signature::before {
content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
background: linear-gradient(180deg, var(--mc, var(--navy)), color-mix(in srgb, var(--mc, var(--navy)) 50%, white));
}
.rm-signature .seal {
width: 86px; height: 86px; border-radius: 50%;
border: 2px solid var(--mc, var(--navy));
display: flex; align-items: center; justify-content: center; flex-direction: column;
color: var(--mc, var(--navy));
font-family: 'Inter', sans-serif; font-weight: 800; font-size: 8.5px; letter-spacing: 1.4px;
position: relative; text-align: center;
transform: rotate(-7deg);
flex: 0 0 auto;
}
.rm-signature .seal::before {
content: ""; position: absolute; inset: 5px; border-radius: 50%; border: 1px dashed currentColor;
}
.rm-signature .seal strong {
font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 800;
letter-spacing: -0.01em; margin: 2px 0; line-height: 1; color: var(--mc, var(--navy));
}
.rm-signature .seal .yr { font-size: 8.5px; letter-spacing: 1.2px; opacity: 0.85; }
.rm-signature .meta {
display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 14px 26px; margin: 0;
}
.rm-signature .meta dt {
font-size: 9.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
color: var(--ink-faint); margin: 0;
}
.rm-signature .meta dd {
font-size: 13px; color: var(--navy); margin: 2px 0 0; font-weight: 600;
font-variant-numeric: tabular-nums;
}
.rm-signature .meta dd.mono { font-family: ui-monospace, Menlo, monospace; font-size: 11px; font-weight: 500; color: var(--ink-soft); }
.rm-signature .by {
display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
border-left: 1px solid var(--line); padding-left: 24px;
}
.rm-signature .by .lbl { font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-faint); font-weight: 800; }
.rm-signature .by .name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -0.015em; }
.rm-signature .by .name .ai { color: var(--mc, var(--navy)); font-style: italic; }
@media (max-width: 720px) {
.rm-signature { grid-template-columns: auto 1fr; gap: 18px; padding: 20px; }
.rm-signature .by { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); padding: 16px 0 0; align-items: flex-start; }
.rm-watermark { font-size: 140px; right: -10%; bottom: -10%; }
}
/* keep the staggered fade-in working alongside new sibling elements */
.result-modal.is-open .result-modal__body > .rm-signature { animation: rm-rise .55s var(--ease-out) backwards; animation-delay: 0.56s; }
/* PRINT: hide TOC, intro, watermark; keep the seal block (it's part of the report) */
@media print {
.rm-toc, .rm-intro, .rm-watermark { display: none !important; }
.result-modal__panel.has-rm-layout .rm-layout { display: block !important; }
.rm-signature { page-break-inside: avoid; }
}
/* ============================================================
DASHBOARD MODE β the result report renders as an analytics
bento dashboard (KPI strip + status bar + bento panels).
============================================================ */
/* canvas: faint dot-grid behind the report */
.result-modal__body {
background-image: radial-gradient(circle, rgba(15,23,42,0.04) 1px, transparent 1.5px);
background-size: 26px 26px; background-attachment: local;
}
/* ββ Status bar (top of the report body) ββββββββββββββββββββββββββββ */
.rm-statusbar {
display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
margin: 0 0 18px; padding: 12px 18px;
background: var(--navy-dark); color: #fff; border-radius: 12px;
font-family: 'Inter', sans-serif; font-size: 12px;
}
.rm-statusbar .st-led {
display: inline-flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: 0.4px;
}
.rm-statusbar .st-led .dot {
width: 8px; height: 8px; border-radius: 50%; background: #34d399;
box-shadow: 0 0 0 0 rgba(52,211,153,0.5); animation: rm-led 1.9s ease-out infinite;
}
@keyframes rm-led { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); } 70% { box-shadow: 0 0 0 7px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
.rm-statusbar .st-item { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.7); }
.rm-statusbar .st-item b { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.rm-statusbar .st-item .mono { font-family: ui-monospace, Menlo, monospace; font-size: 11px; }
.rm-statusbar .st-item + .st-item::before { content: ""; width: 1px; height: 12px; background: rgba(255,255,255,0.16); margin-right: 7px; }
.rm-statusbar .st-spacer { margin-left: auto; }
.rm-statusbar .st-bars { display: inline-flex; gap: 3px; align-items: flex-end; height: 16px; }
.rm-statusbar .st-bars i { width: 3px; background: var(--mc, #34d399); border-radius: 1px; animation: rm-bars 1.2s ease-in-out infinite; opacity: 0.85; }
.rm-statusbar .st-bars i:nth-child(1) { height: 40%; animation-delay: 0s; }
.rm-statusbar .st-bars i:nth-child(2) { height: 75%; animation-delay: .15s; }
.rm-statusbar .st-bars i:nth-child(3) { height: 55%; animation-delay: .3s; }
.rm-statusbar .st-bars i:nth-child(4) { height: 90%; animation-delay: .45s; }
.rm-statusbar .st-bars i:nth-child(5) { height: 30%; animation-delay: .6s; }
@keyframes rm-bars { 0%,100% { transform: scaleY(.6); } 50% { transform: scaleY(1); } }
/* ββ KPI tile strip βββββββββββββββββββββββββββββββββββββββββββββββββ */
.rm-kpi {
display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px;
margin: 0 0 20px;
}
.rm-kpi__tile {
position: relative; overflow: hidden;
background: linear-gradient(160deg, #ffffff 0%, #f7f9fc 100%);
border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px 15px;
box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.rm-kpi__tile::before {
content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
background: var(--kpi-c, var(--mc, var(--navy)));
}
.rm-kpi__tile::after {
content: ""; position: absolute; right: -28px; top: -28px; width: 80px; height: 80px; border-radius: 50%;
background: radial-gradient(circle, color-mix(in srgb, var(--kpi-c, var(--mc, var(--navy))) 12%, transparent), transparent 65%);
pointer-events: none;
}
.rm-kpi__tile .lbl { font-size: 9.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-faint); position: relative; z-index: 1; }
.rm-kpi__tile .val { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-top: 6px; line-height: 1.05; letter-spacing: -0.015em; position: relative; z-index: 1; }
.rm-kpi__tile .val.sm { font-size: 17px; line-height: 1.25; }
.rm-kpi__tile .val.is-fake { color: #b91c1c; }
.rm-kpi__tile .val.is-real { color: #15803d; }
.rm-kpi__tile .bar { margin-top: 10px; height: 5px; border-radius: 99px; background: #eef1f5; overflow: hidden; position: relative; z-index: 1; }
.rm-kpi__tile .bar > i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--kpi-c, var(--mc, var(--navy))), color-mix(in srgb, var(--kpi-c, var(--mc, var(--navy))) 50%, white)); transition: width 1s var(--ease-out); }
.rm-kpi__tile .led2 { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--navy); margin-top: 6px; position: relative; z-index: 1; }
.rm-kpi__tile .led2 .dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 0 rgba(22,163,74,0.5); animation: rm-led 1.9s ease-out infinite; }
.rm-kpi__tile .spark { display: flex; gap: 2px; align-items: flex-end; height: 18px; margin-top: 8px; position: relative; z-index: 1; }
.rm-kpi__tile .spark i { flex: 1; background: color-mix(in srgb, var(--kpi-c, var(--mc, var(--navy))) 35%, #eef1f5); border-radius: 1px; }
/* ββ Bento panels for the result content (.coh-results) βββββββββββββ */
.result-modal .coh-results {
display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
gap: 18px; align-items: start;
}
.result-modal .coh-results > [class*="hero"],
.result-modal .coh-results > [class*="banner"],
.result-modal .coh-results > .coh-card:last-child { grid-column: 1 / -1; }
.result-modal .coh-results > .coh-card:has(.io1-heat-grid),
.result-modal .coh-results > .coh-card:has(.io1-explain),
.result-modal .coh-results > .coh-card:has([class*="grid"]) { grid-column: 1 / -1; }
.result-modal .coh-results > .coh-card { margin-top: 0 !important; }
/* dashboard "panel chrome" on each card */
.result-modal .coh-results > .coh-card { position: relative; }
.result-modal .coh-results > .coh-card::after {
content: "β’β’β’"; position: absolute; top: 16px; right: 18px;
color: var(--line); font-size: 14px; letter-spacing: 1px; line-height: 1;
pointer-events: none;
}
/* spacing of the body's flow children now that there's a KPI strip */
.result-modal__body > .rm-kpi { animation: rm-rise .55s var(--ease-out) backwards; animation-delay: 0.10s; }
.result-modal.is-open .result-modal__body > .rm-statusbar { animation: rm-rise .5s var(--ease-out) backwards; animation-delay: 0.06s; }
/* ββ Sidebar verdict widget (top of TOC) ββββββββββββββββββββββββββββ */
.rm-toc__verdict {
margin-bottom: 18px; padding: 14px 14px 13px; border-radius: 12px;
background: linear-gradient(160deg, color-mix(in srgb, var(--mc, var(--navy)) 8%, #fff), #fff);
border: 1px solid color-mix(in srgb, var(--mc, var(--navy)) 18%, var(--line));
}
.rm-toc__verdict .vw-lbl { font-size: 9px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-faint); }
.rm-toc__verdict .vw-val { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 800; color: var(--navy); margin-top: 4px; line-height: 1.15; }
.rm-toc__verdict .vw-val.is-fake { color: #b91c1c; }
.rm-toc__verdict .vw-val.is-real { color: #15803d; }
.rm-toc__verdict .vw-conf { display: flex; align-items: center; gap: 8px; margin-top: 9px; font-size: 12px; color: var(--ink-soft); }
.rm-toc__verdict .vw-conf .ring { width: 28px; height: 28px; border-radius: 50%; background: conic-gradient(var(--mc, var(--navy)) calc(var(--p, 0) * 1%), #eef1f5 0); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.rm-toc__verdict .vw-conf .ring::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: #fff; }
@media (max-width: 720px) {
.rm-statusbar { gap: 10px; padding: 11px 14px; }
.rm-statusbar .st-spacer { display: none; }
.rm-kpi { grid-template-columns: repeat(2, 1fr); }
.result-modal__body { background-size: 22px 22px; }
}
@media (prefers-reduced-motion: reduce) {
.rm-statusbar .st-led .dot, .rm-statusbar .st-bars i, .rm-kpi__tile .led2 .dot { animation: none; }
}
@media print {
.rm-statusbar .st-bars, .result-modal .coh-results > .coh-card::after { display: none !important; }
.result-modal__body { background-image: none !important; }
}
/* ============================================================
CINEMATIC BACKDROP β when a result opens, the whole screen
becomes a heavily-blurred, navy-tinted view of the analysed
media; the clean white report card floats on top.
============================================================ */
.result-modal__bgimg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.result-modal__bgimg img {
width: 100%; height: 100%; object-fit: cover; display: block;
filter: blur(64px) saturate(1.05) brightness(0.5); transform: scale(1.34);
animation: lux-kenburns 38s ease-in-out infinite alternate;
}
/* the dimming layer over the blurred image β semi-transparent so the image reads through */
.result-modal__backdrop {
z-index: 1;
background:
radial-gradient(120% 80% at 50% -10%, color-mix(in srgb, var(--mc, var(--navy)) 22%, transparent), transparent 55%),
linear-gradient(165deg, rgba(5,41,98,0.52) 0%, rgba(3,16,40,0.74) 52%, rgba(3,16,40,0.86) 100%);
}
/* the report card β clean white, a colour-tinted glow, the blurred backdrop softly showing through */
.result-modal__panel {
z-index: 2;
background: rgba(255,255,255,0.93);
-webkit-backdrop-filter: blur(26px) saturate(1.4); backdrop-filter: blur(26px) saturate(1.4);
box-shadow:
0 0 0 1px color-mix(in srgb, var(--mc, var(--navy)) 12%, transparent),
0 50px 120px -24px rgba(0,0,0,0.6),
0 24px 60px -28px color-mix(in srgb, var(--mc, var(--navy)) 50%, transparent);
}
.result-modal__panel::after { box-shadow: none; } /* drop the old inset aura β the new shadow covers it */
/* panel-internal surfaces stay frosted-white so the soft undertone shows */
.result-modal__head {
background: rgba(255,255,255,0.78);
-webkit-backdrop-filter: blur(22px) saturate(1.5); backdrop-filter: blur(22px) saturate(1.5);
}
.result-modal__body { background-image: none; }
.rm-toc {
background: rgba(250,252,254,0.62);
-webkit-backdrop-filter: blur(18px) saturate(1.3); backdrop-filter: blur(18px) saturate(1.3);
}
.rm-statusbar {
background: rgba(3,16,40,0.82);
-webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
border: 1px solid rgba(255,255,255,0.08);
}
.rm-statusbar .st-bars i { background: var(--yellow); }
.rm-kpi__tile {
background: linear-gradient(160deg, rgba(255,255,255,0.74), rgba(246,248,251,0.66));
-webkit-backdrop-filter: blur(18px) saturate(1.5); backdrop-filter: blur(18px) saturate(1.5);
border-color: rgba(255,255,255,0.55);
box-shadow: 0 12px 30px -16px rgba(5,41,98,0.24), 0 1px 2px rgba(15,23,42,0.04);
}
.rm-signature { background: linear-gradient(135deg, rgba(255,255,255,0.76), rgba(245,247,250,0.7)); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.rm-footer { background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(248,250,253,0.8)); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.rm-intro { background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,253,0.93)); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
/* fallback where backdrop-filter is unsupported β solid surfaces, the image still shows around the card */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
.result-modal__panel { background: #fff; }
.result-modal__head { background: #fff; }
.rm-toc { background: linear-gradient(180deg, #fafbfd, #f4f7fa); }
.rm-statusbar { background: var(--navy-dark); }
.rm-kpi__tile { background: linear-gradient(160deg, #fff, #f7f9fc); }
}
@media (prefers-reduced-motion: reduce) { .result-modal__bgimg img { animation: none; } }
@media print {
.result-modal__bgimg { display: none !important; }
.result-modal__panel { background: #fff !important; -webkit-backdrop-filter: none; backdrop-filter: none; }
.result-modal__backdrop { display: none !important; }
}
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
XAI β Β« Lecture du rΓ©sultat Β»
La carte qui traduit chaque verdict en langage clair, sans jargon, pour
l'utilisateur qui consulte son analyse. Rendue par window.VerifyXAI.narrativeCard()
(components.js) et utilisΓ©e par les 5 modules. --xai-accent = couleur du module.
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
.xai-read{
position:relative; margin:26px 0; padding:24px 30px 20px 34px;
background:
radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--xai-accent,#052962) 7%, transparent), transparent 60%),
linear-gradient(180deg,#ffffff,#fbfaf6);
border:1px solid var(--line,#e6e3da); border-radius:18px;
box-shadow:0 1px 2px rgba(15,23,42,.05), 0 22px 48px -30px color-mix(in srgb, var(--xai-accent,#052962) 26%, transparent);
overflow:hidden;
}
.xai-read__rail{ position:absolute; left:0; top:0; bottom:0; width:5px; background:var(--xai-accent,#052962); }
.xai-read--ok { --xai-accent:#15803d; }
.xai-read--alert { --xai-accent:#b91c1c; }
.xai-read--warn { --xai-accent:#b45309; }
.xai-read__head{ display:flex; align-items:center; gap:16px 26px; flex-wrap:wrap; }
.xai-read__kicker{
flex-basis:100%; font-family:ui-monospace,Menlo,monospace; font-size:10.5px; letter-spacing:2.2px;
text-transform:uppercase; color:#9ca3af; margin-bottom:2px;
}
.xai-read__verdict{ display:flex; align-items:center; gap:13px; flex:1; min-width:220px; }
.xai-read__ico{
width:38px; height:38px; flex:none; border-radius:50%; display:grid; place-items:center;
background:color-mix(in srgb, var(--xai-accent,#052962) 13%, #fff); color:var(--xai-accent,#052962);
}
.xai-read__ico svg{ width:20px; height:20px; }
.xai-read__verdict h3{
margin:0; font-family:'Playfair Display',Georgia,serif; font-weight:800; line-height:1.1;
font-size:clamp(20px,2.4vw,28px); color:#0f1b33;
}
.xai-read__conf{ display:flex; flex-direction:column; gap:6px; min-width:168px; }
.xai-read__conf-bar{ height:7px; border-radius:99px; background:#eceae3; overflow:hidden; }
.xai-read__conf-bar i{ display:block; height:100%; border-radius:99px; background:var(--xai-accent,#052962); transition:width 1s var(--ease-out,ease); }
.xai-read__conf-lbl{ font-size:12px; font-weight:700; color:var(--xai-accent,#052962); letter-spacing:.2px; }
.xai-read__lede{
margin:16px 0 2px; font-family:'Playfair Display',Georgia,serif; font-size:clamp(16px,1.8vw,19px);
line-height:1.62; color:#243043;
}
.xai-read__cols{ display:grid; grid-template-columns:1fr 1fr; gap:16px 30px; margin-top:18px; }
@media (max-width:680px){ .xai-read__cols{ grid-template-columns:1fr; } }
.xai-read__col-h{
display:flex; align-items:center; gap:9px; font-size:11px; font-family:ui-monospace,Menlo,monospace;
letter-spacing:1.2px; text-transform:uppercase; color:#6b7280; margin-bottom:9px;
}
.xai-read__col-h svg{ width:15px; height:15px; color:var(--xai-accent,#052962); flex:none; }
.xai-read__col ul{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:8px; }
.xai-read__col li{ position:relative; padding-left:20px; font-size:14px; line-height:1.5; color:#3b4658; }
.xai-read__col li::before{
content:""; position:absolute; left:2px; top:7px; width:7px; height:7px; border-radius:2px;
background:var(--xai-accent,#052962); transform:rotate(45deg);
}
.xai-read__col--checked li::before{
background:transparent; border:1.6px solid color-mix(in srgb,var(--xai-accent,#052962) 55%,#fff);
border-radius:50%; transform:none; top:6px; width:8px; height:8px;
}
.xai-read__note{
margin:18px 0 0; padding:11px 14px; border-radius:11px;
background:color-mix(in srgb,var(--xai-accent,#052962) 6%, #fff);
border:1px dashed color-mix(in srgb,var(--xai-accent,#052962) 32%, #fff);
font-size:13px; line-height:1.5; color:#4b5563;
}
.xai-read__sign{
margin-top:18px; padding-top:12px; border-top:1px solid #ece9e1;
font-family:ui-monospace,Menlo,monospace; font-size:10px; letter-spacing:1.3px; text-transform:uppercase; color:#b6b0a3;
}
/* dans le rapport modal : aligne la carte sous la colonne Γ©ditoriale, comme les .coh-card */
.result-modal .xai-read{ margin-left:0; }
@media print{ .xai-read{ box-shadow:none; border-color:#d8d4c8; } .xai-read__sign{ display:none; } }
/* en mode "tableau de bord" du rapport modal, la Lecture du rΓ©sultat occupe toute la largeur */
.result-modal .coh-results > .xai-read{ grid-column:1 / -1; }
/* βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Verify Assistant β luxe chatbot widget
Mounted on every page (bottom-left, opposite the verify FAB).
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
.vchat{
position: fixed;
bottom: 24px;
left: 24px;
z-index: 65;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.vchat__launcher{
display: inline-flex;
align-items: center;
gap: 10px;
padding: 12px 18px 12px 14px;
background: linear-gradient(135deg, #041e4d 0%, #052962 60%, #1e4faf 100%);
color: #fff;
border: 0;
border-radius: 9999px;
font-family: inherit;
font-weight: 700;
font-size: 13px;
letter-spacing: 0.4px;
cursor: pointer;
box-shadow:
0 18px 40px -12px rgba(5, 41, 98, 0.55),
inset 0 0 0 1px rgba(255, 229, 0, 0.25);
transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.vchat__launcher:hover{
transform: translateY(-2px);
box-shadow:
0 22px 48px -12px rgba(5, 41, 98, 0.65),
inset 0 0 0 1px rgba(255, 229, 0, 0.45);
}
.vchat__avatar{
width: 30px; height: 30px;
border-radius: 50%;
display: inline-flex; align-items: center; justify-content: center;
background: radial-gradient(circle at 30% 30%, #ffe500 0%, #ffd200 70%);
color: #052962;
font-weight: 900;
font-family: 'Playfair Display', Georgia, serif;
font-size: 15px;
box-shadow: inset 0 0 0 1px rgba(5, 41, 98, 0.18);
position: relative;
}
.vchat__avatar::after{
content: "";
position: absolute;
inset: -3px;
border-radius: 50%;
border: 2px solid rgba(255, 229, 0, 0.45);
animation: vchat-ring 2.4s ease-in-out infinite;
}
@keyframes vchat-ring{
0%,100% { opacity: 0.8; transform: scale(1); }
50% { opacity: 0; transform: scale(1.35); }
}
.vchat__label{ display: inline-block; }
.vchat__chev{ font-size: 11px; opacity: 0.7; margin-left: 2px; }
/* ββ panel ββ */
.vchat__panel{
position: absolute;
bottom: 64px;
left: 0;
width: 380px;
max-width: calc(100vw - 32px);
height: 560px;
max-height: calc(100vh - 120px);
background: #fff;
border-radius: 18px;
overflow: hidden;
display: none;
flex-direction: column;
box-shadow:
0 40px 80px -20px rgba(5, 41, 98, 0.35),
0 10px 30px -8px rgba(15, 23, 42, 0.18);
border: 1px solid rgba(5, 41, 98, 0.08);
transform-origin: bottom left;
animation: vchat-pop 0.32s var(--ease-out);
}
.vchat.is-open .vchat__panel{ display: flex; }
@keyframes vchat-pop{
from { opacity: 0; transform: translateY(10px) scale(0.96); }
to { opacity: 1; transform: translateY(0) scale(1); }
}
/* head */
.vchat__head{
position: relative;
padding: 16px 18px 14px;
background:
radial-gradient(120% 80% at 0% 0%, rgba(255,229,0,0.18) 0%, transparent 55%),
linear-gradient(135deg, #041e4d 0%, #052962 60%, #1e4faf 100%);
color: #fff;
border-bottom: 2px solid #ffe500;
}
.vchat__head .vchat__kicker{
display: inline-flex; align-items: center; gap: 6px;
font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase;
color: rgba(255, 229, 0, 0.95);
font-weight: 700;
}
.vchat__head h3{
margin: 6px 0 2px;
font-family: 'Playfair Display', Georgia, serif;
font-weight: 700;
font-size: 22px;
line-height: 1.1;
}
.vchat__head p{
margin: 0;
font-size: 12px;
color: rgba(255,255,255,0.78);
line-height: 1.4;
}
.vchat__close{
position: absolute;
top: 12px; right: 12px;
width: 30px; height: 30px;
border-radius: 50%;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.18);
color: #fff;
cursor: pointer;
display: inline-flex; align-items: center; justify-content: center;
font-size: 16px;
line-height: 1;
transition: background 0.18s;
}
.vchat__close:hover{ background: rgba(255,255,255,0.22); }
/* messages */
.vchat__body{
flex: 1;
overflow-y: auto;
padding: 16px 16px 8px;
background:
radial-gradient(80% 60% at 100% 0%, rgba(5,41,98,0.04) 0%, transparent 60%),
#fafaf7;
display: flex;
flex-direction: column;
gap: 10px;
scroll-behavior: smooth;
}
.vchat__body::-webkit-scrollbar{ width: 6px; }
.vchat__body::-webkit-scrollbar-thumb{ background: rgba(5,41,98,0.18); border-radius: 4px; }
.vchat__msg{
display: flex;
gap: 8px;
max-width: 88%;
animation: vchat-fade 0.28s var(--ease-out);
}
@keyframes vchat-fade{
from { opacity: 0; transform: translateY(4px); }
to { opacity: 1; transform: translateY(0); }
}
.vchat__msg--assistant{ align-self: flex-start; }
.vchat__msg--user{ align-self: flex-end; flex-direction: row-reverse; }
.vchat__bubble{
padding: 10px 13px;
border-radius: 14px;
font-size: 13.5px;
line-height: 1.55;
color: var(--ink);
word-wrap: break-word;
white-space: pre-wrap;
}
.vchat__msg--assistant .vchat__bubble{
background: #fff;
border: 1px solid #ece9e1;
border-top-left-radius: 4px;
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.vchat__msg--user .vchat__bubble{
background: linear-gradient(135deg, #052962 0%, #1e4faf 100%);
color: #fff;
border-top-right-radius: 4px;
box-shadow: 0 4px 10px -4px rgba(5, 41, 98, 0.4);
}
.vchat__mini{
width: 26px; height: 26px;
flex-shrink: 0;
border-radius: 50%;
background: radial-gradient(circle at 30% 30%, #ffe500 0%, #ffd200 70%);
color: #052962;
font-family: 'Playfair Display', Georgia, serif;
font-weight: 800;
font-size: 12px;
display: inline-flex; align-items: center; justify-content: center;
box-shadow: inset 0 0 0 1px rgba(5, 41, 98, 0.18);
}
/* typing indicator */
.vchat__typing{
display: inline-flex; gap: 4px;
padding: 12px 14px;
}
.vchat__typing span{
width: 6px; height: 6px;
background: #052962;
opacity: 0.35;
border-radius: 50%;
animation: vchat-dot 1.2s infinite ease-in-out;
}
.vchat__typing span:nth-child(2){ animation-delay: 0.15s; }
.vchat__typing span:nth-child(3){ animation-delay: 0.3s; }
@keyframes vchat-dot{
0%, 80%, 100% { transform: scale(0.7); opacity: 0.3; }
40% { transform: scale(1); opacity: 0.9; }
}
/* suggestions */
.vchat__suggest{
display: flex; flex-wrap: wrap; gap: 6px;
padding: 4px 4px 6px;
}
.vchat__chip{
padding: 7px 11px;
background: #fff;
border: 1px solid #e7e3d6;
border-radius: 9999px;
font-size: 12px;
font-weight: 600;
color: var(--navy);
cursor: pointer;
transition: border-color 0.18s, background 0.18s, transform 0.18s;
font-family: inherit;
}
.vchat__chip:hover{
border-color: var(--navy);
background: #fffbe5;
transform: translateY(-1px);
}
/* foot */
.vchat__foot{
border-top: 1px solid var(--line);
padding: 10px 12px;
background: #fff;
display: flex;
flex-direction: column;
gap: 6px;
}
.vchat__inputrow{
display: flex;
align-items: flex-end;
gap: 8px;
background: #f7f6f1;
border: 1px solid #ece9e1;
border-radius: 14px;
padding: 6px 6px 6px 12px;
transition: border-color 0.18s, background 0.18s;
}
.vchat__inputrow:focus-within{
border-color: var(--navy);
background: #fff;
box-shadow: 0 0 0 3px rgba(5, 41, 98, 0.10);
}
.vchat__input{
flex: 1;
border: 0;
outline: 0;
background: transparent;
resize: none;
font-family: inherit;
font-size: 13.5px;
line-height: 1.45;
color: var(--ink);
padding: 8px 0;
max-height: 110px;
min-height: 22px;
}
.vchat__send{
width: 36px; height: 36px;
border: 0;
border-radius: 50%;
background: linear-gradient(135deg, #052962 0%, #1e4faf 100%);
color: #fff;
cursor: pointer;
display: inline-flex; align-items: center; justify-content: center;
flex-shrink: 0;
transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
box-shadow: 0 6px 14px -4px rgba(5, 41, 98, 0.4);
}
.vchat__send:hover:not(:disabled){
transform: translateY(-1px) scale(1.04);
box-shadow: 0 10px 18px -4px rgba(5, 41, 98, 0.5);
}
.vchat__send:disabled{ opacity: 0.4; cursor: not-allowed; }
.vchat__send svg{ width: 16px; height: 16px; }
.vchat__hint{
font-size: 10.5px;
color: var(--ink-faint);
letter-spacing: 0.2px;
text-align: center;
padding-bottom: 2px;
}
.vchat__hint strong{ color: var(--navy); font-weight: 700; }
/* mobile: full-width bottom sheet */
@media (max-width: 540px){
.vchat{ bottom: 16px; left: 16px; right: 16px; }
.vchat__launcher .vchat__label{ display: none; }
.vchat__launcher{ padding: 10px; }
.vchat__panel{
position: fixed;
inset: 16px;
width: auto;
height: auto;
max-height: none;
border-radius: 18px;
}
}
/* avoid clash when both FAB and chat are open at once: nothing, they're on
opposite corners. But on small screens hide vchat label so the two pills don't fight. */
/* ββ header actions (reset + close) ββ */
.vchat__head-actions{
position: absolute;
top: 12px; right: 12px;
display: inline-flex; gap: 6px;
}
.vchat__head-actions .vchat__close{ position: static; }
.vchat__reset{
width: 30px; height: 30px;
border-radius: 50%;
background: rgba(255,255,255,0.10);
border: 1px solid rgba(255,255,255,0.18);
color: #fff;
cursor: pointer;
display: inline-flex; align-items: center; justify-content: center;
transition: background 0.18s, transform 0.18s;
}
.vchat__reset:hover{ background: rgba(255,255,255,0.22); transform: rotate(-30deg); }
.vchat__reset svg{ width: 15px; height: 15px; }
/* ββ attach button in the input row ββ */
.vchat__attach{
width: 32px; height: 32px;
border: 0;
background: transparent;
color: var(--navy);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center; justify-content: center;
flex-shrink: 0;
transition: background 0.18s, transform 0.18s;
}
.vchat__attach svg{ width: 18px; height: 18px; }
.vchat__attach:hover{ background: rgba(5, 41, 98, 0.08); transform: rotate(-12deg); }
/* ββ upload preview chip above the input row ββ */
.vchat__preview{ padding: 0 0 8px; }
.vchat__prev-card{
display: flex; align-items: center; gap: 10px;
padding: 8px 10px 8px 8px;
background: linear-gradient(135deg, rgba(255,229,0,0.10) 0%, rgba(5,41,98,0.05) 100%);
border: 1px solid rgba(5, 41, 98, 0.15);
border-radius: 12px;
position: relative;
}
.vchat__prev-card img{
width: 42px; height: 42px;
object-fit: cover;
border-radius: 8px;
flex-shrink: 0;
box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.vchat__prev-vid{
width: 42px; height: 42px;
border-radius: 8px;
background: var(--navy);
color: #ffe500;
display: inline-flex; align-items: center; justify-content: center;
font-size: 20px;
flex-shrink: 0;
}
.vchat__prev-meta{ flex: 1; min-width: 0; }
.vchat__prev-name{
font-weight: 700; font-size: 12.5px; color: var(--navy);
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vchat__prev-sub{ font-size: 11px; color: var(--ink-faint); }
.vchat__prev-x{
width: 24px; height: 24px;
background: rgba(5, 41, 98, 0.10);
border: 0;
border-radius: 50%;
cursor: pointer;
color: var(--navy);
font-size: 15px;
line-height: 1;
flex-shrink: 0;
}
.vchat__prev-x:hover{ background: rgba(5, 41, 98, 0.20); }
/* ββ media bubble (user upload, in the thread) ββ */
.vchat__bubble--media{ padding: 6px 6px 8px; max-width: 240px; }
.vchat__media img{
display: block;
width: 100%;
max-width: 220px;
max-height: 180px;
object-fit: cover;
border-radius: 10px;
}
.vchat__media--video{
display: flex; align-items: center; gap: 8px;
padding: 10px;
background: rgba(255, 255, 255, 0.12);
border-radius: 10px;
}
.vchat__media-ico{ font-size: 20px; }
.vchat__media-name{
font-size: 12.5px; color: #fff; font-weight: 600;
max-width: 160px;
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.vchat__media-cap{
margin-top: 6px;
padding: 0 6px;
font-size: 12.5px;
line-height: 1.45;
}
/* ββ verdict bubble (assistant β result of io1 analysis) ββ */
.vchat__bubble--verdict{
background: #fff !important;
border: 1px solid #ece9e1;
border-left: 4px solid var(--navy);
border-top-left-radius: 4px;
padding: 14px 14px 12px;
max-width: 100%;
box-shadow: 0 4px 14px -6px rgba(15, 23, 42, 0.12);
}
.vchat__verdict--alert{ border-left-color: var(--red); }
.vchat__verdict--ok{ border-left-color: var(--green); }
.vchat__verdict--neutral{ border-left-color: var(--navy); }
.vchat__verdict-head{
display: flex; align-items: flex-start; gap: 10px;
margin-bottom: 8px;
}
.vchat__verdict-ico{
width: 32px; height: 32px;
border-radius: 9px;
flex-shrink: 0;
display: inline-flex; align-items: center; justify-content: center;
}
.vchat__verdict--alert .vchat__verdict-ico{ background: #fee2e2; color: var(--red); }
.vchat__verdict--ok .vchat__verdict-ico{ background: #dcfce7; color: var(--green); }
.vchat__verdict--neutral .vchat__verdict-ico{ background: rgba(5, 41, 98, 0.10); color: var(--navy); }
.vchat__verdict-ico svg{ width: 18px; height: 18px; }
.vchat__verdict-title{
font-family: 'Playfair Display', Georgia, serif;
font-weight: 700;
font-size: 17px;
line-height: 1.15;
color: var(--navy);
}
.vchat__verdict-conf{
margin-top: 2px;
font-size: 10.5px;
letter-spacing: 0.8px;
text-transform: uppercase;
font-weight: 700;
color: var(--ink-faint);
}
.vchat__verdict-sum{
margin: 4px 0 8px;
font-size: 13px;
line-height: 1.55;
color: var(--ink);
}
.vchat__verdict-sig{
margin: 0 0 6px;
padding: 0;
list-style: none;
display: flex;
flex-direction: column;
gap: 4px;
}
.vchat__verdict-sig li{
position: relative;
padding-left: 14px;
font-size: 12.5px;
line-height: 1.5;
color: #1f2937;
}
.vchat__verdict-sig li::before{
content: "";
position: absolute;
left: 2px; top: 8px;
width: 5px; height: 5px;
border-radius: 50%;
background: var(--navy);
}
.vchat__verdict--alert .vchat__verdict-sig li::before{ background: var(--red); }
.vchat__verdict--ok .vchat__verdict-sig li::before{ background: var(--green); }
.vchat__verdict-note{
margin: 6px 0 0;
padding: 8px 10px;
background: #fafaf3;
border: 1px dashed #e7e3d6;
border-radius: 8px;
font-size: 11.5px;
line-height: 1.45;
color: #4b5563;
}
/* ββ drag & drop overlay on the panel ββ */
.vchat__panel.is-drop::after{
content: "Drop a photo or a video to verify";
position: absolute; inset: 0;
background: rgba(5, 41, 98, 0.92);
color: #ffe500;
display: flex; align-items: center; justify-content: center;
font-family: 'Playfair Display', Georgia, serif;
font-weight: 700;
font-size: 18px;
text-align: center;
border: 3px dashed #ffe500;
border-radius: 18px;
z-index: 10;
pointer-events: none;
}
|