report.css 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. /* ============================================================
  2. DESIGN TOKENS
  3. ============================================================ */
  4. :root {
  5. --bg: #0b0f0e;
  6. --bg-1: #111614;
  7. --bg-2: #181e1b;
  8. --bg-card: #141a17;
  9. --border: rgba(255,255,255,0.07);
  10. --border-hover: rgba(255,255,255,0.14);
  11. --accent: #2ddc8a;
  12. --accent-dim: rgba(45,220,138,0.12);
  13. --accent-glow: rgba(45,220,138,0.25);
  14. --text-primary: #eaf0ec;
  15. --text-secondary:#8fa899;
  16. --text-muted: #4f6459;
  17. --serif: 'DM Serif Display', Georgia, serif;
  18. --sans: 'DM Sans', system-ui, sans-serif;
  19. --radius-sm: 6px;
  20. --radius: 12px;
  21. --radius-lg: 18px;
  22. --radius-xl: 26px;
  23. --transition: 0.18s cubic-bezier(0.4,0,0.2,1);
  24. }
  25. /* ============================================================
  26. RESET & BASE
  27. ============================================================ */
  28. *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  29. html { scroll-behavior: smooth; }
  30. body {
  31. font-family: var(--sans);
  32. background: var(--bg);
  33. color: var(--text-primary);
  34. font-size: 16px;
  35. line-height: 1.65;
  36. -webkit-font-smoothing: antialiased;
  37. }
  38. a { color: var(--accent); text-decoration: none; transition: opacity var(--transition); }
  39. a:hover { opacity: 0.8; }
  40. ::selection { background: var(--accent); color: #0b0f0e; }
  41. /* ============================================================
  42. LAYOUT UTILITIES
  43. ============================================================ */
  44. .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
  45. .section { padding: 96px 0; }
  46. .section-sm { padding: 64px 0; }
  47. .section-tight { padding: 32px 0; }
  48. /* ============================================================
  49. TYPOGRAPHY
  50. ============================================================ */
  51. .display { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.12; letter-spacing: -0.02em; }
  52. .display em { font-style: italic; color: var(--accent); }
  53. h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.18; letter-spacing: -0.015em; }
  54. h3 { font-size: 1.05rem; font-weight: 500; letter-spacing: -0.01em; }
  55. .lead { font-size: 1.125rem; color: var(--text-secondary); font-weight: 300; line-height: 1.7; }
  56. .section-label {
  57. display: inline-flex; align-items: center; gap: 8px;
  58. font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  59. color: var(--accent); margin-bottom: 20px;
  60. }
  61. .section-label::before {
  62. content: ''; display: block; width: 18px; height: 1px; background: var(--accent);
  63. }
  64. /* ============================================================
  65. NAV
  66. ============================================================ */
  67. .site-nav {
  68. position: sticky; top: 0; z-index: 100;
  69. background: rgba(11,15,14,0.85);
  70. backdrop-filter: blur(12px);
  71. -webkit-backdrop-filter: blur(12px);
  72. border-bottom: 1px solid var(--border);
  73. }
  74. .nav-inner {
  75. display: flex; align-items: center; justify-content: space-between;
  76. height: 60px;
  77. }
  78. .nav-brand {
  79. display: flex; align-items: center; gap: 10px;
  80. font-weight: 500; font-size: 0.9rem; color: var(--text-primary);
  81. text-decoration: none;
  82. }
  83. .nav-brand img { width: 28px; height: 28px; border-radius: 6px; }
  84. .nav-links { display: flex; align-items: center; gap: 6px; }
  85. .nav-links a {
  86. font-size: 0.85rem; color: var(--text-secondary); padding: 6px 12px;
  87. border-radius: var(--radius-sm); transition: all var(--transition);
  88. text-decoration: none;
  89. }
  90. .nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
  91. .nav-status {
  92. display: flex; align-items: center; gap: 6px;
  93. font-size: 0.78rem; color: var(--text-secondary);
  94. }
  95. .status-dot {
  96. width: 7px; height: 7px; border-radius: 50%;
  97. background: var(--accent);
  98. box-shadow: 0 0 6px var(--accent-glow);
  99. animation: pulse 2.5s ease-in-out infinite;
  100. }
  101. @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
  102. /* Mobile nav toggle */
  103. .nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text-secondary); padding: 6px 10px; border-radius: var(--radius-sm); cursor: pointer; font-size: 1.1rem; }
  104. @media(max-width:768px){
  105. .nav-links { display: none; position: absolute; top: 60px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--bg-1); border-bottom: 1px solid var(--border); padding: 12px; gap: 2px; }
  106. .nav-links.open { display: flex; }
  107. .nav-toggle { display: block; }
  108. }
  109. /* ============================================================
  110. BUTTONS
  111. ============================================================ */
  112. .btn {
  113. display: inline-flex; align-items: center; gap: 8px;
  114. padding: 11px 22px; border-radius: var(--radius);
  115. font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  116. cursor: pointer; transition: all var(--transition); border: none; text-decoration: none;
  117. }
  118. .btn-primary {
  119. background: var(--accent); color: #0b0f0e;
  120. box-shadow: 0 0 0 0 var(--accent-glow);
  121. }
  122. .btn-primary:hover {
  123. background: #3bf59a; color: #0b0f0e; opacity: 1;
  124. box-shadow: 0 0 20px var(--accent-glow);
  125. transform: translateY(-1px);
  126. }
  127. .btn-outline {
  128. background: transparent; color: var(--text-primary);
  129. border: 1px solid var(--border-hover);
  130. }
  131. .btn-outline:hover { border-color: var(--accent); color: var(--accent); opacity: 1; transform: translateY(-1px); }
  132. .btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
  133. .btn-ghost:hover { border-color: var(--border-hover); color: var(--text-primary); opacity: 1; }
  134. .btn-sm { padding: 7px 16px; font-size: 0.82rem; border-radius: var(--radius-sm); }
  135. .btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius-lg); }
  136. /* Quick-action pills */
  137. .pill-bar { display: flex; flex-wrap: wrap; gap: 8px; }
  138. .qa-pill {
  139. display: inline-flex; align-items: center; gap: 6px;
  140. padding: 7px 14px; border-radius: 999px;
  141. border: 1px solid var(--border);
  142. background: var(--bg-2); color: var(--text-secondary);
  143. font-size: 0.82rem; font-weight: 500; cursor: pointer;
  144. transition: all var(--transition);
  145. }
  146. .qa-pill:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); transform: translateY(-1px); }
  147. .qa-pill i { font-size: 0.75rem; }
  148. /* ============================================================
  149. SEARCH FORM
  150. ============================================================ */
  151. .search-wrap {
  152. position: relative; margin-top: 28px;
  153. }
  154. .search-input {
  155. width: 100%;
  156. background: var(--bg-1);
  157. border: 1px solid var(--border);
  158. border-radius: var(--radius-lg);
  159. padding: 16px 140px 16px 52px;
  160. color: var(--text-primary);
  161. font-family: var(--sans);
  162. font-size: 0.95rem;
  163. transition: border-color var(--transition), box-shadow var(--transition);
  164. outline: none;
  165. }
  166. .search-input::placeholder { color: var(--text-muted); }
  167. .search-input:focus {
  168. border-color: var(--accent);
  169. box-shadow: 0 0 0 3px var(--accent-dim);
  170. }
  171. .search-icon {
  172. position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  173. color: var(--text-muted); font-size: 1rem; pointer-events: none;
  174. }
  175. .search-btn {
  176. position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  177. background: var(--accent); color: #0b0f0e;
  178. border: none; border-radius: var(--radius);
  179. padding: 9px 20px; font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  180. cursor: pointer; transition: all var(--transition);
  181. }
  182. .search-btn:hover { background: #3bf59a; transform: translateY(calc(-50% - 1px)); }
  183. .search-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; padding-left: 4px; }
  184. .search-hint a { color: var(--text-secondary); border-bottom: 1px solid var(--border); }
  185. .search-hint a:hover { color: var(--accent); border-color: var(--accent); opacity: 1; }
  186. /* ============================================================
  187. HERO
  188. ============================================================ */
  189. .hero {
  190. padding: 80px 0 72px;
  191. position: relative; overflow: hidden;
  192. }
  193. /* Subtle grid background */
  194. .hero::before {
  195. content: '';
  196. position: absolute; inset: 0;
  197. background-image:
  198. linear-gradient(rgba(45,220,138,0.03) 1px, transparent 1px),
  199. linear-gradient(90deg, rgba(45,220,138,0.03) 1px, transparent 1px);
  200. background-size: 48px 48px;
  201. mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
  202. pointer-events: none;
  203. }
  204. /* Top glow */
  205. .hero::after {
  206. content: '';
  207. position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  208. width: 600px; height: 300px;
  209. background: radial-gradient(ellipse, rgba(45,220,138,0.1) 0%, transparent 70%);
  210. pointer-events: none;
  211. }
  212. .hero-content { position: relative; z-index: 1; max-width: 720px; }
  213. .hero-badge {
  214. display: inline-flex; align-items: center; gap: 8px;
  215. border: 1px solid rgba(45,220,138,0.3);
  216. background: rgba(45,220,138,0.07);
  217. border-radius: 999px; padding: 5px 14px;
  218. font-size: 0.78rem; font-weight: 500; color: var(--accent);
  219. margin-bottom: 28px;
  220. }
  221. .trust-line {
  222. display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
  223. margin-top: 28px; padding-top: 24px;
  224. border-top: 1px solid var(--border);
  225. }
  226. .trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--text-muted); }
  227. .trust-item i { color: var(--accent); font-size: 0.85rem; }
  228. /* Coming soon rail */
  229. .coming-rail { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
  230. .coming-chip {
  231. display: inline-flex; align-items: center; gap: 6px;
  232. padding: 5px 12px; border-radius: 999px;
  233. border: 1px solid var(--border); font-size: 0.78rem; color: var(--text-secondary);
  234. }
  235. .coming-chip.new { border-color: rgba(45,220,138,0.3); color: var(--accent); background: var(--accent-dim); }
  236. .coming-chip a { color: inherit; text-decoration: none; }
  237. .coming-chip a:hover { opacity: 0.8; }
  238. /* ============================================================
  239. RESULTS SECTION
  240. ============================================================ */
  241. .results-section { padding: 48px 0; border-top: 1px solid var(--border); }
  242. .results-grid { display: grid; grid-template-columns: 1fr 300px; gap: 16px; }
  243. @media(max-width:900px){ .results-grid { grid-template-columns: 1fr; } }
  244. .result-card {
  245. background: var(--bg-card); border: 1px solid var(--border);
  246. border-radius: var(--radius-lg); padding: 24px;
  247. }
  248. .sources-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
  249. .answer-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
  250. #answerText { white-space: pre-wrap; min-height: 160px; font-size: 0.93rem; line-height: 1.7; color: var(--text-secondary); }
  251. .status-bar { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }
  252. .spinner { width: 16px; height: 16px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.7s linear infinite; }
  253. @keyframes spin { to { transform: rotate(360deg); } }
  254. /* ============================================================
  255. HOW IT WORKS
  256. ============================================================ */
  257. .steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px; }
  258. @media(max-width:768px){ .steps-grid { grid-template-columns: 1fr; } }
  259. .step-card { background: var(--bg-card); padding: 36px 32px; position: relative; }
  260. .step-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
  261. .step-card:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
  262. @media(max-width:768px){ .step-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; } .step-card:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); } }
  263. .step-num {
  264. font-family: var(--serif); font-size: 3rem; line-height: 1;
  265. color: var(--border-hover); position: absolute; top: 24px; right: 28px;
  266. }
  267. .step-icon {
  268. width: 44px; height: 44px; border-radius: var(--radius);
  269. background: var(--accent-dim); border: 1px solid rgba(45,220,138,0.2);
  270. display: flex; align-items: center; justify-content: center;
  271. color: var(--accent); font-size: 1.1rem; margin-bottom: 20px;
  272. }
  273. .step-card h3 { margin-bottom: 10px; }
  274. .step-card p { color: var(--text-secondary); font-size: 0.9rem; }
  275. /* ============================================================
  276. BENEFITS
  277. ============================================================ */
  278. .benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
  279. @media(max-width:900px){ .benefits-grid { grid-template-columns: repeat(2,1fr); } }
  280. @media(max-width:580px){ .benefits-grid { grid-template-columns: 1fr; } }
  281. .benefit-card {
  282. background: var(--bg-card); border: 1px solid var(--border);
  283. border-radius: var(--radius-lg); padding: 28px;
  284. transition: border-color var(--transition), transform var(--transition);
  285. }
  286. .benefit-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
  287. .benefit-icon { font-size: 1.3rem; color: var(--accent); margin-bottom: 14px; }
  288. .benefit-card h3 { margin-bottom: 8px; }
  289. .benefit-card p { color: var(--text-secondary); font-size: 0.88rem; }
  290. /* ============================================================
  291. COMING SOON SECTIONS (NCC / AS)
  292. ============================================================ */
  293. .coming-section {
  294. border-top: 1px solid var(--border);
  295. padding: 80px 0;
  296. }
  297. .coming-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
  298. @media(max-width:768px){ .coming-grid { grid-template-columns: 1fr; } }
  299. .glow-card {
  300. background: var(--bg-card);
  301. border: 1px solid var(--border);
  302. border-radius: var(--radius-lg); padding: 28px;
  303. position: relative; overflow: hidden;
  304. transition: border-color var(--transition);
  305. }
  306. .glow-card:hover { border-color: rgba(45,220,138,0.2); }
  307. .glow-card::after {
  308. content: '';
  309. position: absolute; bottom: -40px; right: -40px;
  310. width: 120px; height: 120px;
  311. background: radial-gradient(circle, rgba(45,220,138,0.08), transparent 70%);
  312. pointer-events: none;
  313. }
  314. .glow-card h3 { margin-bottom: 10px; }
  315. .glow-card p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 16px; }
  316. /* ============================================================
  317. BUILT FOR TAS
  318. ============================================================ */
  319. .built-card {
  320. background: var(--bg-1); border: 1px solid var(--border);
  321. border-radius: var(--radius-xl); padding: 48px;
  322. display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  323. }
  324. @media(max-width:768px){ .built-card { grid-template-columns: 1fr; gap: 28px; } }
  325. .built-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  326. .built-card ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-secondary); font-size: 0.9rem; }
  327. .built-card ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-top: 8px; flex-shrink: 0; }
  328. /* ============================================================
  329. PRO SECTION
  330. ============================================================ */
  331. .pro-section {
  332. position: relative; overflow: hidden;
  333. background: var(--bg-1);
  334. border-top: 1px solid var(--border);
  335. border-bottom: 1px solid var(--border);
  336. padding: 96px 0;
  337. }
  338. .pro-section::before {
  339. content: '';
  340. position: absolute; top: -100px; right: -100px;
  341. width: 500px; height: 500px;
  342. background: radial-gradient(circle, rgba(45,220,138,0.06), transparent 65%);
  343. pointer-events: none;
  344. }
  345. .pro-features { display: flex; flex-direction: column; gap: 10px; margin: 28px 0 32px; }
  346. .pro-feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
  347. .pro-feature i { color: var(--accent); width: 16px; }
  348. .waitlist-form { display: flex; gap: 10px; max-width: 440px; }
  349. .waitlist-form input[type="email"] {
  350. flex: 1; background: var(--bg-2); border: 1px solid var(--border);
  351. border-radius: var(--radius); padding: 11px 16px;
  352. color: var(--text-primary); font-family: var(--sans); font-size: 0.9rem; outline: none;
  353. transition: border-color var(--transition);
  354. }
  355. .waitlist-form input:focus { border-color: var(--accent); }
  356. .waitlist-form input::placeholder { color: var(--text-muted); }
  357. .waitlist-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; }
  358. /* ============================================================
  359. SOCIAL PROOF
  360. ============================================================ */
  361. .testimonial {
  362. background: var(--bg-card); border: 1px solid var(--border);
  363. border-left: 3px solid var(--accent);
  364. border-radius: var(--radius-lg); padding: 28px 32px;
  365. display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  366. margin-top: 48px;
  367. }
  368. .avatar {
  369. width: 44px; height: 44px; border-radius: 50%;
  370. background: var(--accent-dim); border: 1px solid rgba(45,220,138,0.2);
  371. display: flex; align-items: center; justify-content: center;
  372. color: var(--accent); font-size: 0.85rem; font-weight: 500; flex-shrink: 0;
  373. }
  374. .testimonial blockquote { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 8px; }
  375. .testimonial cite { font-size: 0.8rem; color: var(--text-muted); font-style: normal; }
  376. /* ============================================================
  377. CTA SECTION
  378. ============================================================ */
  379. .cta-section { padding: 96px 0; text-align: center; }
  380. .cta-section h2 { margin-bottom: 16px; }
  381. .cta-section p { color: var(--text-secondary); margin-bottom: 36px; }
  382. .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  383. .cta-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 18px; }
  384. /* ============================================================
  385. DEMO MODAL
  386. ============================================================ */
  387. .modal-overlay {
  388. display: none; position: fixed; inset: 0; z-index: 200;
  389. background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  390. align-items: center; justify-content: center; padding: 20px;
  391. }
  392. .modal-overlay.open { display: flex; }
  393. .modal-box {
  394. background: var(--bg-1); border: 1px solid var(--border);
  395. border-radius: var(--radius-xl); width: 100%; max-width: 900px;
  396. max-height: 90vh; overflow: hidden; display: flex; flex-direction: column;
  397. animation: modalIn 0.2s cubic-bezier(0.34,1.56,0.64,1);
  398. }
  399. @keyframes modalIn { from { opacity:0; transform: scale(0.95) translateY(10px); } to { opacity:1; transform: none; } }
  400. .modal-header {
  401. display: flex; align-items: center; justify-content: space-between;
  402. padding: 20px 28px; border-bottom: 1px solid var(--border);
  403. }
  404. .modal-header h5 { font-size: 1rem; font-weight: 500; }
  405. .modal-close { background: none; border: 1px solid var(--border); color: var(--text-secondary); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; transition: all var(--transition); display: flex; align-items: center; justify-content: center; }
  406. .modal-close:hover { border-color: var(--text-primary); color: var(--text-primary); }
  407. .modal-body { display: grid; grid-template-columns: 280px 1fr; flex: 1; overflow: hidden; }
  408. @media(max-width:680px){ .modal-body { grid-template-columns: 1fr; } }
  409. .modal-sidebar { padding: 24px; border-right: 1px solid var(--border); overflow-y: auto; }
  410. .modal-main { padding: 24px; display: flex; flex-direction: column; overflow-y: auto; }
  411. .modal-footer { padding: 16px 28px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; }
  412. .sample-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
  413. .sample-list { display: flex; flex-direction: column; gap: 6px; }
  414. .sample-btn {
  415. background: var(--bg-2); border: 1px solid var(--border);
  416. border-radius: var(--radius); padding: 10px 12px;
  417. color: var(--text-secondary); font-size: 0.82rem; font-family: var(--sans);
  418. text-align: left; cursor: pointer; transition: all var(--transition); line-height: 1.5;
  419. }
  420. .sample-btn:hover { border-color: var(--border-hover); color: var(--text-primary); }
  421. .sample-btn.active { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
  422. .modal-form-label { font-size: 0.78rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
  423. .modal-textarea {
  424. width: 100%; background: var(--bg-2); border: 1px solid var(--border);
  425. border-radius: var(--radius); padding: 14px 16px;
  426. color: var(--text-primary); font-family: var(--sans); font-size: 0.9rem; resize: vertical;
  427. min-height: 90px; outline: none; transition: border-color var(--transition); margin-bottom: 14px;
  428. }
  429. .modal-textarea:focus { border-color: var(--accent); }
  430. .modal-results {
  431. flex: 1; background: var(--bg-2); border: 1px solid var(--border);
  432. border-radius: var(--radius); padding: 16px;
  433. min-height: 220px; white-space: pre-wrap; font-size: 0.88rem;
  434. color: var(--text-secondary); line-height: 1.7; overflow-y: auto;
  435. }
  436. .tps-toggle { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  437. .toggle-track { position: relative; width: 36px; height: 20px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 999px; cursor: pointer; transition: background var(--transition), border-color var(--transition); }
  438. .toggle-track:has(input:checked) { background: var(--accent); border-color: var(--accent); }
  439. .toggle-track input { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; margin: 0; }
  440. .toggle-knob { position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; background: #fff; border-radius: 50%; transition: transform var(--transition); pointer-events: none; }
  441. .toggle-track:has(input:checked) .toggle-knob { transform: translateX(16px); }
  442. .toggle-label { font-size: 0.82rem; color: var(--text-secondary); }
  443. .api-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; }
  444. .api-note code { color: var(--accent); font-size: 0.68rem; }
  445. /* ============================================================
  446. FOOTER
  447. ============================================================ */
  448. .site-footer {
  449. border-top: 1px solid var(--border);
  450. padding: 28px 0;
  451. }
  452. .footer-inner {
  453. display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  454. }
  455. .footer-copy { font-size: 0.8rem; color: var(--text-muted); }
  456. .footer-links { display: flex; align-items: center; gap: 20px; }
  457. .footer-links a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
  458. .footer-links a:hover { color: var(--text-secondary); opacity: 1; }
  459. /* ============================================================
  460. ANIMATIONS
  461. ============================================================ */
  462. @media (prefers-reduced-motion: no-preference) {
  463. .fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
  464. .fade-up.visible { opacity: 1; transform: none; }
  465. .fade-up:nth-child(2) { transition-delay: 0.08s; }
  466. .fade-up:nth-child(3) { transition-delay: 0.16s; }
  467. .fade-up:nth-child(4) { transition-delay: 0.24s; }
  468. .fade-up:nth-child(5) { transition-delay: 0.32s; }
  469. .fade-up:nth-child(6) { transition-delay: 0.40s; }
  470. }