styles.css 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603
  1. :root {
  2. --black: #020403;
  3. --graphite: #101614;
  4. --deep-green: #05241b;
  5. --green: #15ff80;
  6. --acid: #d7ff36;
  7. --muted: #b8c3b7;
  8. --glass: rgba(8, 22, 17, 0.55);
  9. --line: rgba(188, 255, 83, 0.22);
  10. }
  11. * {
  12. box-sizing: border-box;
  13. }
  14. html {
  15. scroll-behavior: auto;
  16. }
  17. body {
  18. margin: 0;
  19. background: var(--black);
  20. color: #f4fff6;
  21. font-family: "Oswald", Arial, sans-serif;
  22. overflow-x: hidden;
  23. }
  24. body.menu-open {
  25. overflow: hidden;
  26. }
  27. a {
  28. color: inherit;
  29. text-decoration: none;
  30. }
  31. button {
  32. color: inherit;
  33. font: inherit;
  34. }
  35. .loader {
  36. position: fixed;
  37. inset: 0;
  38. z-index: 1000;
  39. display: grid;
  40. place-content: center;
  41. gap: 24px;
  42. text-align: center;
  43. background: radial-gradient(circle at center, #0b3a22 0%, #020403 58%);
  44. transition: opacity 0.8s ease, visibility 0.8s ease;
  45. }
  46. .loader.is-hidden {
  47. opacity: 0;
  48. visibility: hidden;
  49. }
  50. .loader__formula {
  51. font-family: "Orbitron", sans-serif;
  52. font-size: 96px;
  53. color: var(--acid);
  54. text-shadow: 0 0 34px rgba(215, 255, 54, 0.75);
  55. }
  56. .loader p,
  57. .eyebrow {
  58. margin: 0;
  59. font-family: "Orbitron", sans-serif;
  60. font-size: 12px;
  61. letter-spacing: 0.22em;
  62. color: var(--acid);
  63. }
  64. .loader__line {
  65. width: min(420px, 70vw);
  66. height: 2px;
  67. background: rgba(255, 255, 255, 0.14);
  68. overflow: hidden;
  69. }
  70. .loader__line span {
  71. display: block;
  72. width: 45%;
  73. height: 100%;
  74. background: linear-gradient(90deg, transparent, var(--green), transparent);
  75. animation: loadline 1.1s infinite;
  76. }
  77. .noise,
  78. .scanlines,
  79. .mouse-glow {
  80. position: fixed;
  81. inset: 0;
  82. pointer-events: none;
  83. z-index: 20;
  84. }
  85. .noise {
  86. opacity: 0.16;
  87. mix-blend-mode: overlay;
  88. background-image:
  89. radial-gradient(circle at 25% 20%, rgba(255,255,255,.22) 0 1px, transparent 1px),
  90. radial-gradient(circle at 70% 60%, rgba(255,255,255,.13) 0 1px, transparent 1px);
  91. background-size: 3px 3px, 5px 5px;
  92. animation: grain 0.45s steps(2) infinite;
  93. }
  94. .scanlines {
  95. opacity: 0.12;
  96. background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(170,255,92,.16) 4px);
  97. }
  98. .mouse-glow {
  99. width: 460px;
  100. height: 460px;
  101. inset: auto;
  102. border-radius: 50%;
  103. opacity: 0.42;
  104. filter: blur(46px);
  105. background: radial-gradient(circle, rgba(37, 255, 129, 0.34), transparent 68%);
  106. transform: translate(-50%, -50%);
  107. }
  108. #particles {
  109. position: fixed;
  110. inset: 0;
  111. z-index: 3;
  112. pointer-events: none;
  113. }
  114. .navbar {
  115. position: fixed;
  116. top: 18px;
  117. left: 50%;
  118. z-index: 60;
  119. width: min(1180px, calc(100% - 32px));
  120. transform: translateX(-50%);
  121. display: flex;
  122. align-items: center;
  123. justify-content: space-between;
  124. padding: 10px 12px 10px 16px;
  125. border: 1px solid rgba(191, 255, 63, 0.18);
  126. border-radius: 8px;
  127. background: rgba(2, 9, 7, 0.54);
  128. backdrop-filter: blur(20px);
  129. box-shadow: 0 0 32px rgba(21, 255, 128, 0.08);
  130. }
  131. .brand {
  132. display: flex;
  133. gap: 7px;
  134. font-family: "Orbitron", sans-serif;
  135. font-weight: 800;
  136. }
  137. .brand span {
  138. display: grid;
  139. place-items: center;
  140. width: 38px;
  141. aspect-ratio: 1;
  142. border: 1px solid var(--acid);
  143. background: linear-gradient(135deg, rgba(21,255,128,.24), rgba(215,255,54,.07));
  144. color: var(--acid);
  145. box-shadow: inset 0 0 18px rgba(21,255,128,.12), 0 0 18px rgba(215,255,54,.18);
  146. }
  147. .navlinks {
  148. display: flex;
  149. gap: 28px;
  150. align-items: center;
  151. }
  152. .navlinks a {
  153. position: relative;
  154. font-family: "Orbitron", sans-serif;
  155. font-size: 12px;
  156. color: rgba(246, 255, 247, 0.78);
  157. transition: color .25s ease, text-shadow .25s ease;
  158. }
  159. .navlinks a::after {
  160. content: "";
  161. position: absolute;
  162. left: 0;
  163. bottom: -8px;
  164. width: 100%;
  165. height: 1px;
  166. transform: scaleX(0);
  167. transform-origin: left;
  168. background: var(--acid);
  169. box-shadow: 0 0 14px var(--green);
  170. transition: transform .25s ease;
  171. }
  172. .navlinks a:hover {
  173. color: #fff;
  174. text-shadow: 0 0 14px var(--green);
  175. }
  176. .navlinks a:hover::after {
  177. transform: scaleX(1);
  178. }
  179. .nav-toggle {
  180. display: none;
  181. width: 44px;
  182. aspect-ratio: 1;
  183. border: 1px solid var(--line);
  184. background: rgba(255,255,255,.03);
  185. }
  186. .nav-toggle span {
  187. display: block;
  188. width: 20px;
  189. height: 1px;
  190. margin: 7px auto;
  191. background: var(--acid);
  192. }
  193. .section {
  194. position: relative;
  195. min-height: 100vh;
  196. padding: 120px max(24px, 6vw);
  197. overflow: hidden;
  198. }
  199. .section__head {
  200. position: relative;
  201. z-index: 5;
  202. max-width: 850px;
  203. margin-bottom: 52px;
  204. }
  205. .section__head h2,
  206. .trailer h2,
  207. .ending h2 {
  208. margin: 10px 0 0;
  209. font-family: "Bebas Neue", sans-serif;
  210. font-size: 112px;
  211. line-height: .86;
  212. letter-spacing: 0;
  213. }
  214. .hero {
  215. display: grid;
  216. place-items: center;
  217. text-align: center;
  218. }
  219. .hero::after,
  220. .trailer::after,
  221. .ending::after {
  222. content: "";
  223. position: absolute;
  224. inset: 0;
  225. background:
  226. radial-gradient(circle at 50% 52%, transparent 0 22%, rgba(2,4,3,.72) 72%),
  227. linear-gradient(180deg, rgba(2,4,3,.2), var(--black));
  228. z-index: 1;
  229. }
  230. .hero__video,
  231. .trailer__video {
  232. position: absolute;
  233. inset: 0;
  234. width: 100%;
  235. height: 100%;
  236. object-fit: cover;
  237. filter: saturate(.72) contrast(1.15) brightness(.58);
  238. transform: scale(1.04);
  239. }
  240. .hero__smoke {
  241. position: absolute;
  242. inset: -15%;
  243. z-index: 2;
  244. opacity: .42;
  245. filter: blur(22px);
  246. background:
  247. radial-gradient(circle at 18% 70%, rgba(180, 255, 87, .22), transparent 25%),
  248. radial-gradient(circle at 82% 28%, rgba(21, 255, 128, .15), transparent 22%);
  249. animation: smoke 9s ease-in-out infinite alternate;
  250. }
  251. .hero__content {
  252. position: relative;
  253. z-index: 5;
  254. max-width: 1080px;
  255. }
  256. .hero__title {
  257. margin: 10px 0 0;
  258. font-family: "Bebas Neue", sans-serif;
  259. font-size: 210px;
  260. line-height: .8;
  261. letter-spacing: 0;
  262. text-shadow: 0 0 38px rgba(21,255,128,.24), 0 20px 60px rgba(0,0,0,.7);
  263. }
  264. .hero__quote {
  265. margin: 20px auto 34px;
  266. max-width: 780px;
  267. color: rgba(246, 255, 247, .86);
  268. font-size: 34px;
  269. font-weight: 300;
  270. }
  271. .hero__actions {
  272. display: flex;
  273. justify-content: center;
  274. gap: 16px;
  275. flex-wrap: wrap;
  276. }
  277. .button,
  278. .modal-close {
  279. display: inline-flex;
  280. align-items: center;
  281. justify-content: center;
  282. min-height: 54px;
  283. padding: 0 24px;
  284. border: 1px solid rgba(215, 255, 54, .38);
  285. border-radius: 4px;
  286. background: transparent;
  287. color: #fff;
  288. cursor: pointer;
  289. font-family: "Orbitron", sans-serif;
  290. font-size: 12px;
  291. transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  292. }
  293. .button--primary {
  294. background: linear-gradient(90deg, rgba(21,255,128,.96), rgba(215,255,54,.88));
  295. color: #03110b;
  296. box-shadow: 0 0 32px rgba(21, 255, 128, .35);
  297. }
  298. .button:hover,
  299. .modal-close:hover {
  300. transform: translateY(-3px);
  301. box-shadow: 0 0 28px rgba(215, 255, 54, .27);
  302. }
  303. .scroll-indicator {
  304. position: absolute;
  305. right: max(24px, 6vw);
  306. bottom: 38px;
  307. z-index: 5;
  308. display: grid;
  309. justify-items: center;
  310. gap: 10px;
  311. font-family: "Orbitron", sans-serif;
  312. font-size: 10px;
  313. color: rgba(255,255,255,.72);
  314. }
  315. .scroll-indicator span {
  316. width: 1px;
  317. height: 54px;
  318. background: linear-gradient(var(--acid), transparent);
  319. animation: scrollmark 1.6s infinite;
  320. }
  321. .lab {
  322. background:
  323. linear-gradient(115deg, rgba(2,4,3,.92), rgba(5,36,27,.85)),
  324. radial-gradient(circle at 78% 35%, rgba(21,255,128,.2), transparent 28%);
  325. }
  326. .story-preview {
  327. display: grid;
  328. align-content: center;
  329. gap: 32px;
  330. background:
  331. radial-gradient(circle at 78% 22%, rgba(215,255,54,.12), transparent 24%),
  332. radial-gradient(circle at 12% 70%, rgba(21,255,128,.1), transparent 28%),
  333. linear-gradient(135deg, rgba(2,4,3,.96), rgba(5,36,27,.86));
  334. }
  335. .story-preview__grid {
  336. position: relative;
  337. z-index: 5;
  338. display: grid;
  339. grid-template-columns: minmax(0, 1.1fr) 430px;
  340. gap: 42px;
  341. align-items: stretch;
  342. }
  343. .story-preview__copy {
  344. position: relative;
  345. min-height: 540px;
  346. padding: 36px;
  347. border: 1px solid rgba(215,255,54,.18);
  348. border-radius: 8px;
  349. background:
  350. linear-gradient(90deg, rgba(2,4,3,.76), rgba(2,4,3,.36)),
  351. rgba(255,255,255,.026);
  352. backdrop-filter: blur(16px);
  353. box-shadow: 0 32px 90px rgba(0,0,0,.28);
  354. }
  355. .story-preview__copy p {
  356. max-width: 920px;
  357. margin: 0 0 18px;
  358. color: rgba(232, 244, 231, .86);
  359. font-size: 20px;
  360. line-height: 1.55;
  361. }
  362. .story-preview__copy .formula {
  363. position: relative;
  364. top: auto;
  365. left: auto;
  366. display: block;
  367. margin-bottom: 18px;
  368. }
  369. .story-preview__poster {
  370. position: relative;
  371. min-height: 540px;
  372. overflow: hidden;
  373. border: 1px solid rgba(215,255,54,.2);
  374. border-radius: 8px;
  375. background: rgba(255,255,255,.03);
  376. box-shadow: 0 0 70px rgba(21,255,128,.13);
  377. }
  378. .story-preview__poster img {
  379. width: 100%;
  380. height: 100%;
  381. min-height: 540px;
  382. object-fit: cover;
  383. filter: brightness(.62) saturate(.82) contrast(1.12);
  384. transform: scale(1.04);
  385. }
  386. .story-preview__poster::after {
  387. content: "";
  388. position: absolute;
  389. inset: 0;
  390. background: linear-gradient(180deg, transparent 20%, rgba(2,4,3,.88));
  391. }
  392. .story-preview__stats {
  393. position: absolute;
  394. left: 22px;
  395. right: 22px;
  396. bottom: 22px;
  397. z-index: 2;
  398. display: grid;
  399. grid-template-columns: repeat(3, 1fr);
  400. gap: 12px;
  401. }
  402. .story-preview__stats span,
  403. .story-preview__stats strong {
  404. display: block;
  405. }
  406. .story-preview__stats span {
  407. color: var(--acid);
  408. font-family: "Orbitron", sans-serif;
  409. font-size: 10px;
  410. }
  411. .story-preview__stats strong {
  412. margin-top: 6px;
  413. color: #fff;
  414. font-family: "Bebas Neue", sans-serif;
  415. font-size: 34px;
  416. line-height: .9;
  417. }
  418. .story-preview__button {
  419. position: relative;
  420. z-index: 5;
  421. width: min(520px, 100%);
  422. justify-self: center;
  423. margin-top: 8px;
  424. }
  425. .lab__stage {
  426. position: relative;
  427. min-height: 560px;
  428. display: grid;
  429. grid-template-columns: minmax(0, 1fr) 420px;
  430. grid-template-areas:
  431. "copy reactor"
  432. "cards reactor";
  433. gap: 28px 52px;
  434. align-items: center;
  435. }
  436. .lab__copy {
  437. position: relative;
  438. z-index: 5;
  439. grid-area: copy;
  440. max-width: 760px;
  441. }
  442. .lab__copy p {
  443. max-width: 660px;
  444. color: var(--muted);
  445. font-size: 24px;
  446. line-height: 1.55;
  447. }
  448. .lab__reactor {
  449. position: relative;
  450. z-index: 4;
  451. grid-area: reactor;
  452. min-height: 520px;
  453. display: grid;
  454. place-items: center;
  455. border: 1px solid rgba(215,255,54,.14);
  456. border-radius: 8px;
  457. background:
  458. radial-gradient(circle at center, rgba(21,255,128,.18), transparent 58%),
  459. rgba(255,255,255,.025);
  460. box-shadow: inset 0 0 80px rgba(21,255,128,.07);
  461. }
  462. .formula {
  463. position: absolute;
  464. z-index: 1;
  465. font-family: "Orbitron", sans-serif;
  466. font-size: 60px;
  467. color: rgba(215, 255, 54, .2);
  468. text-shadow: 0 0 24px rgba(21,255,128,.22);
  469. animation: float 6s ease-in-out infinite;
  470. }
  471. .formula--one { top: -36px; left: 0; }
  472. .formula--two { right: 0; bottom: -20px; animation-delay: -2s; }
  473. .formula--three { top: 44px; right: 26px; animation-delay: -4s; }
  474. .story-preview__copy .formula {
  475. top: auto;
  476. left: auto;
  477. right: auto;
  478. bottom: auto;
  479. }
  480. .beaker {
  481. position: relative;
  482. width: 280px;
  483. aspect-ratio: .72;
  484. border: 1px solid rgba(215,255,54,.36);
  485. border-top: 0;
  486. border-radius: 0 0 34px 34px;
  487. background: rgba(255,255,255,.035);
  488. box-shadow: inset 0 0 45px rgba(21,255,128,.12), 0 0 80px rgba(21,255,128,.1);
  489. overflow: hidden;
  490. }
  491. .liquid {
  492. position: absolute;
  493. inset: auto 0 0;
  494. height: 52%;
  495. background: linear-gradient(180deg, rgba(215,255,54,.75), rgba(21,255,128,.4));
  496. filter: drop-shadow(0 0 26px rgba(215,255,54,.55));
  497. }
  498. .liquid::before {
  499. content: "";
  500. position: absolute;
  501. inset: -18px -20% auto;
  502. height: 38px;
  503. background: rgba(255,255,255,.16);
  504. border-radius: 50%;
  505. animation: wave 2.8s ease-in-out infinite;
  506. }
  507. .bubble {
  508. position: absolute;
  509. z-index: 2;
  510. bottom: 18%;
  511. width: 18px;
  512. aspect-ratio: 1;
  513. border: 1px solid rgba(255,255,255,.7);
  514. border-radius: 50%;
  515. animation: bubble 3s linear infinite;
  516. }
  517. .bubble--one { left: 25%; }
  518. .bubble--two { left: 55%; animation-delay: -1.2s; transform: scale(.75); }
  519. .bubble--three { left: 72%; animation-delay: -2.1s; transform: scale(1.2); }
  520. .lab__cards {
  521. position: relative;
  522. z-index: 5;
  523. grid-area: cards;
  524. display: grid;
  525. grid-template-columns: repeat(3, minmax(0, 1fr));
  526. gap: 18px;
  527. max-width: 920px;
  528. }
  529. .glass-card {
  530. min-height: 220px;
  531. padding: 26px;
  532. border: 1px solid var(--line);
  533. border-radius: 8px;
  534. background: var(--glass);
  535. backdrop-filter: blur(18px);
  536. box-shadow: 0 24px 80px rgba(0,0,0,.28);
  537. }
  538. .glass-card span,
  539. .dea__panel span {
  540. font-family: "Orbitron", sans-serif;
  541. color: var(--acid);
  542. font-size: 11px;
  543. }
  544. .glass-card strong {
  545. display: block;
  546. margin: 16px 0;
  547. font-family: "Bebas Neue", sans-serif;
  548. font-size: 46px;
  549. }
  550. .glass-card p,
  551. .character-card p,
  552. .timeline__item p,
  553. .dea__panel p,
  554. .footer p {
  555. color: var(--muted);
  556. font-size: 18px;
  557. line-height: 1.55;
  558. }
  559. .characters {
  560. background: linear-gradient(180deg, #020403, #06150f 55%, #020403);
  561. }
  562. .character-swiper {
  563. position: relative;
  564. z-index: 5;
  565. overflow: visible;
  566. }
  567. .character-card {
  568. position: relative;
  569. min-height: 620px;
  570. padding: 32px;
  571. display: flex;
  572. flex-direction: column;
  573. justify-content: flex-end;
  574. border: 1px solid rgba(215,255,54,.16);
  575. border-radius: 8px;
  576. overflow: hidden;
  577. background: #09100d;
  578. transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  579. }
  580. .character-card::before {
  581. content: "";
  582. position: absolute;
  583. inset: 0;
  584. background-image: var(--portrait);
  585. background-size: cover;
  586. background-position: center;
  587. filter: grayscale(.1) saturate(.78) contrast(1.08);
  588. transform: scale(1.02);
  589. transition: transform .6s ease, filter .35s ease;
  590. }
  591. .character-card::after {
  592. content: attr(data-quote);
  593. position: absolute;
  594. left: 24px;
  595. right: 24px;
  596. top: 28px;
  597. padding: 14px 16px;
  598. border: 1px solid rgba(215,255,54,.22);
  599. background: rgba(2,4,3,.56);
  600. color: var(--acid);
  601. font-family: "Orbitron", sans-serif;
  602. opacity: 0;
  603. transform: translateY(-14px);
  604. transition: opacity .32s ease, transform .32s ease;
  605. }
  606. .character-card__shade {
  607. position: absolute;
  608. inset: 0;
  609. background: linear-gradient(180deg, transparent 25%, rgba(2,4,3,.82) 72%, #020403 100%);
  610. }
  611. .character-card h3,
  612. .character-card p {
  613. position: relative;
  614. z-index: 2;
  615. }
  616. .character-card h3 {
  617. margin: 0;
  618. font-family: "Bebas Neue", sans-serif;
  619. font-size: 66px;
  620. }
  621. .bio-link {
  622. position: relative;
  623. z-index: 3;
  624. width: fit-content;
  625. margin-top: 18px;
  626. padding: 12px 14px;
  627. border: 1px solid rgba(215,255,54,.35);
  628. border-radius: 4px;
  629. background: rgba(2,4,3,.42);
  630. color: var(--acid);
  631. cursor: pointer;
  632. font-family: "Orbitron", sans-serif;
  633. font-size: 11px;
  634. transition: background .25s ease, box-shadow .25s ease;
  635. }
  636. .bio-link:hover {
  637. background: rgba(215,255,54,.13);
  638. box-shadow: 0 0 18px rgba(21,255,128,.25);
  639. }
  640. .supporting {
  641. background:
  642. radial-gradient(circle at 15% 25%, rgba(215,255,54,.11), transparent 24%),
  643. linear-gradient(180deg, #020403, #06150f);
  644. }
  645. .supporting__grid {
  646. position: relative;
  647. z-index: 5;
  648. display: grid;
  649. grid-template-columns: repeat(4, minmax(0, 1fr));
  650. gap: 18px;
  651. }
  652. .support-card {
  653. position: relative;
  654. min-height: 360px;
  655. display: flex;
  656. flex-direction: column;
  657. justify-content: flex-end;
  658. padding: 22px;
  659. overflow: hidden;
  660. border: 1px solid rgba(215,255,54,.18);
  661. border-radius: 8px;
  662. background: #07110d;
  663. }
  664. .support-card::before {
  665. content: "";
  666. position: absolute;
  667. inset: 0;
  668. background-image: var(--support);
  669. background-size: cover;
  670. background-position: center;
  671. filter: saturate(.75) contrast(1.08);
  672. transition: transform .45s ease;
  673. }
  674. .support-card--jane::before {
  675. background-position: center 22%;
  676. }
  677. .support-card--skyler::before {
  678. background-position: center 18%;
  679. }
  680. .support-card--empty::before {
  681. background:
  682. linear-gradient(135deg, rgba(21,255,128,.18), rgba(215,255,54,.06)),
  683. repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 18px);
  684. }
  685. .support-card::after {
  686. content: "";
  687. position: absolute;
  688. inset: 0;
  689. background: linear-gradient(180deg, transparent 20%, rgba(2,4,3,.9) 78%);
  690. }
  691. .support-card h3,
  692. .support-card p {
  693. position: relative;
  694. z-index: 2;
  695. }
  696. .support-card h3 {
  697. margin: 0;
  698. font-family: "Bebas Neue", sans-serif;
  699. font-size: 42px;
  700. }
  701. .support-card p {
  702. margin-bottom: 0;
  703. color: var(--muted);
  704. line-height: 1.45;
  705. }
  706. .support-card:hover::before {
  707. transform: scale(1.08);
  708. }
  709. .character-card:hover {
  710. transform: translateY(-14px) scale(1.015);
  711. border-color: rgba(215,255,54,.55);
  712. box-shadow: 0 0 44px rgba(21,255,128,.22);
  713. }
  714. .character-card:hover::before {
  715. transform: scale(1.11);
  716. filter: saturate(1) contrast(1.18);
  717. }
  718. .character-card:hover::after {
  719. opacity: 1;
  720. transform: translateY(0);
  721. }
  722. .swiper-pagination-bullet {
  723. background: var(--acid);
  724. }
  725. .timeline {
  726. background:
  727. radial-gradient(circle at 20% 20%, rgba(215,255,54,.12), transparent 24%),
  728. linear-gradient(180deg, #020403, #07110d);
  729. }
  730. .timeline__rail {
  731. position: relative;
  732. z-index: 5;
  733. max-width: 960px;
  734. margin: 0 auto;
  735. }
  736. .timeline__rail::before {
  737. content: "";
  738. position: absolute;
  739. left: 34px;
  740. top: 0;
  741. bottom: 0;
  742. width: 1px;
  743. background: linear-gradient(transparent, var(--acid), transparent);
  744. box-shadow: 0 0 22px rgba(215,255,54,.45);
  745. }
  746. .timeline__item {
  747. position: relative;
  748. margin: 0 0 28px 82px;
  749. padding: 26px 30px;
  750. border: 1px solid rgba(215,255,54,.18);
  751. border-radius: 8px;
  752. background: rgba(255,255,255,.035);
  753. backdrop-filter: blur(12px);
  754. }
  755. .timeline__item span {
  756. position: absolute;
  757. left: -74px;
  758. top: 24px;
  759. display: grid;
  760. place-items: center;
  761. width: 52px;
  762. aspect-ratio: 1;
  763. border: 1px solid var(--acid);
  764. background: #06150f;
  765. color: var(--acid);
  766. font-family: "Orbitron", sans-serif;
  767. box-shadow: 0 0 24px rgba(21,255,128,.24);
  768. }
  769. .timeline__item h3 {
  770. margin: 0;
  771. font-family: "Bebas Neue", sans-serif;
  772. font-size: 44px;
  773. }
  774. .trailer {
  775. display: grid;
  776. place-items: center;
  777. text-align: center;
  778. background: #020403;
  779. }
  780. .trailer__video {
  781. opacity: .56;
  782. }
  783. .trailer__content {
  784. position: relative;
  785. z-index: 5;
  786. max-width: 900px;
  787. }
  788. .play-button {
  789. width: 106px;
  790. aspect-ratio: 1;
  791. border: 1px solid rgba(215,255,54,.55);
  792. border-radius: 50%;
  793. background: rgba(21,255,128,.08);
  794. cursor: pointer;
  795. box-shadow: 0 0 50px rgba(21,255,128,.22);
  796. transition: transform .25s ease, background .25s ease;
  797. }
  798. .play-button span {
  799. display: block;
  800. width: 0;
  801. height: 0;
  802. margin-left: 40px;
  803. border-top: 18px solid transparent;
  804. border-bottom: 18px solid transparent;
  805. border-left: 28px solid var(--acid);
  806. }
  807. .play-button:hover {
  808. transform: scale(1.08);
  809. background: rgba(215,255,54,.13);
  810. }
  811. .dea {
  812. background: linear-gradient(140deg, #020403, #071c14);
  813. }
  814. .dea__grid {
  815. position: relative;
  816. z-index: 5;
  817. display: grid;
  818. grid-template-columns: minmax(280px, .86fr) 1fr;
  819. gap: 34px;
  820. align-items: stretch;
  821. }
  822. .dea__grid img {
  823. width: 100%;
  824. min-height: 520px;
  825. object-fit: cover;
  826. border-radius: 8px;
  827. filter: saturate(.8) contrast(1.1);
  828. }
  829. .dea__panel {
  830. padding: 56px;
  831. border: 1px solid rgba(215,255,54,.2);
  832. border-radius: 8px;
  833. background: rgba(2,4,3,.58);
  834. backdrop-filter: blur(14px);
  835. }
  836. .dea__panel h3 {
  837. margin: 12px 0 18px;
  838. font-family: "Bebas Neue", sans-serif;
  839. font-size: 88px;
  840. line-height: .9;
  841. }
  842. .dea__stats {
  843. display: grid;
  844. grid-template-columns: repeat(3, 1fr);
  845. gap: 18px;
  846. margin-top: 38px;
  847. }
  848. .dea__stats strong {
  849. display: block;
  850. color: var(--acid);
  851. font-family: "Bebas Neue", sans-serif;
  852. font-size: 56px;
  853. }
  854. .dea__stats small {
  855. color: var(--muted);
  856. }
  857. .ending {
  858. display: grid;
  859. align-items: end;
  860. background: #020403;
  861. }
  862. .ending__image {
  863. position: absolute;
  864. inset: 0;
  865. width: 100%;
  866. height: 100%;
  867. object-fit: cover;
  868. object-position: center;
  869. filter: brightness(.62) saturate(.78) contrast(1.08);
  870. transform: scale(1.02);
  871. }
  872. .ending__caption {
  873. position: relative;
  874. z-index: 5;
  875. max-width: 820px;
  876. }
  877. .ending__caption p:not(.eyebrow) {
  878. color: rgba(246,255,247,.86);
  879. font-size: 24px;
  880. line-height: 1.55;
  881. }
  882. .ending__caption .button {
  883. margin-top: 22px;
  884. }
  885. .ending__play {
  886. position: absolute;
  887. z-index: 6;
  888. right: 24%;
  889. top: 48%;
  890. transform: translate(50%, -50%);
  891. }
  892. .ending__play:hover {
  893. transform: translate(50%, -50%) scale(1.08);
  894. }
  895. .legacy {
  896. position: relative;
  897. display: grid;
  898. grid-template-columns: minmax(280px, .9fr) 1fr;
  899. gap: 48px;
  900. align-items: center;
  901. padding-bottom: 150px;
  902. background: linear-gradient(135deg, #020403, #06150f 62%, #020403);
  903. }
  904. .legacy__emmy-bg {
  905. position: absolute;
  906. right: 6%;
  907. top: 50%;
  908. z-index: 1;
  909. width: min(560px, 34vw);
  910. opacity: .09;
  911. filter: saturate(.85) drop-shadow(0 0 42px rgba(215,255,54,.32));
  912. transform: translateY(-50%) rotate(-8deg);
  913. pointer-events: none;
  914. }
  915. .legacy__image,
  916. .legacy__copy {
  917. position: relative;
  918. z-index: 5;
  919. }
  920. .legacy__image img {
  921. width: 100%;
  922. min-height: 560px;
  923. object-fit: cover;
  924. border-radius: 8px;
  925. border: 1px solid rgba(215,255,54,.18);
  926. filter: brightness(.74) saturate(.76);
  927. }
  928. .legacy__copy h2 {
  929. margin: 12px 0 24px;
  930. font-family: "Bebas Neue", sans-serif;
  931. font-size: 104px;
  932. line-height: .9;
  933. }
  934. .legacy__copy p:not(.eyebrow) {
  935. color: var(--muted);
  936. font-size: 20px;
  937. line-height: 1.55;
  938. }
  939. .quote-marquee {
  940. position: absolute;
  941. left: 0;
  942. right: 0;
  943. bottom: 44px;
  944. z-index: 6;
  945. overflow: hidden;
  946. border-top: 1px solid rgba(215,255,54,.18);
  947. border-bottom: 1px solid rgba(215,255,54,.18);
  948. background: rgba(2, 4, 3, .52);
  949. box-shadow: 0 0 42px rgba(21,255,128,.08);
  950. }
  951. .quote-marquee__track {
  952. display: flex;
  953. width: max-content;
  954. animation: marquee 24s linear infinite;
  955. }
  956. .quote-marquee span {
  957. padding: 18px 24px;
  958. color: var(--acid);
  959. font-family: "Orbitron", sans-serif;
  960. font-size: 18px;
  961. white-space: nowrap;
  962. text-shadow: 0 0 18px rgba(215,255,54,.35);
  963. }
  964. .footer {
  965. position: relative;
  966. z-index: 5;
  967. display: flex;
  968. align-items: center;
  969. justify-content: space-between;
  970. gap: 22px;
  971. padding: 32px max(24px, 6vw);
  972. background: #020403;
  973. border-top: 1px solid rgba(215,255,54,.16);
  974. }
  975. .brand--footer span {
  976. width: 34px;
  977. }
  978. .footer p {
  979. max-width: 620px;
  980. margin: 0;
  981. font-size: 14px;
  982. }
  983. .socials {
  984. display: flex;
  985. gap: 10px;
  986. }
  987. .socials a {
  988. display: grid;
  989. place-items: center;
  990. width: 42px;
  991. aspect-ratio: 1;
  992. border: 1px solid rgba(215,255,54,.28);
  993. color: var(--acid);
  994. font-family: "Orbitron", sans-serif;
  995. font-size: 12px;
  996. transition: background .25s ease, box-shadow .25s ease;
  997. }
  998. .socials a:hover {
  999. background: rgba(215,255,54,.12);
  1000. box-shadow: 0 0 18px rgba(21,255,128,.22);
  1001. }
  1002. .trailer-modal,
  1003. .ending-modal {
  1004. position: fixed;
  1005. inset: 0;
  1006. z-index: 200;
  1007. display: grid;
  1008. place-items: center;
  1009. padding: 24px;
  1010. background: rgba(0,0,0,.9);
  1011. opacity: 0;
  1012. visibility: hidden;
  1013. transition: opacity .3s ease, visibility .3s ease;
  1014. }
  1015. .bio-modal {
  1016. position: fixed;
  1017. inset: 0;
  1018. z-index: 210;
  1019. display: grid;
  1020. place-items: center;
  1021. padding: 22px;
  1022. background: rgba(0,0,0,.84);
  1023. opacity: 0;
  1024. visibility: hidden;
  1025. transition: opacity .3s ease, visibility .3s ease;
  1026. }
  1027. .bio-modal.is-open {
  1028. opacity: 1;
  1029. visibility: visible;
  1030. }
  1031. .bio-modal__panel {
  1032. position: relative;
  1033. width: min(840px, 94vw);
  1034. padding: 48px;
  1035. border: 1px solid rgba(215,255,54,.28);
  1036. border-radius: 8px;
  1037. background:
  1038. radial-gradient(circle at 100% 0%, rgba(21,255,128,.16), transparent 40%),
  1039. rgba(3, 12, 9, .96);
  1040. box-shadow: 0 0 70px rgba(21,255,128,.18);
  1041. }
  1042. .bio-modal__panel h2 {
  1043. margin: 12px 0 18px;
  1044. font-family: "Bebas Neue", sans-serif;
  1045. font-size: 78px;
  1046. line-height: .9;
  1047. }
  1048. .bio-modal__text {
  1049. color: var(--muted);
  1050. font-size: 22px;
  1051. line-height: 1.65;
  1052. }
  1053. .history-page {
  1054. background:
  1055. radial-gradient(circle at 15% 10%, rgba(215,255,54,.11), transparent 24%),
  1056. linear-gradient(180deg, #020403, #06150f 42%, #020403);
  1057. }
  1058. .history {
  1059. position: relative;
  1060. z-index: 4;
  1061. }
  1062. .history-hero {
  1063. position: relative;
  1064. min-height: 100vh;
  1065. display: grid;
  1066. align-items: end;
  1067. padding: 130px max(24px, 6vw) 80px;
  1068. overflow: hidden;
  1069. }
  1070. .history-hero img {
  1071. position: absolute;
  1072. inset: 0;
  1073. width: 100%;
  1074. height: 100%;
  1075. object-fit: cover;
  1076. filter: brightness(.5) saturate(.76) contrast(1.08);
  1077. }
  1078. .history-hero::after {
  1079. content: "";
  1080. position: absolute;
  1081. inset: 0;
  1082. background:
  1083. radial-gradient(circle at 65% 36%, transparent 0 18%, rgba(2,4,3,.62) 62%),
  1084. linear-gradient(180deg, rgba(2,4,3,.08), #020403 96%);
  1085. }
  1086. .history-hero__content {
  1087. position: relative;
  1088. z-index: 2;
  1089. max-width: 1060px;
  1090. }
  1091. .history-hero h1 {
  1092. margin: 12px 0 18px;
  1093. font-family: "Bebas Neue", sans-serif;
  1094. font-size: 132px;
  1095. line-height: .86;
  1096. }
  1097. .history-hero p:not(.eyebrow) {
  1098. max-width: 760px;
  1099. color: rgba(246,255,247,.86);
  1100. font-size: 26px;
  1101. line-height: 1.45;
  1102. }
  1103. .history-content {
  1104. width: min(1080px, calc(100% - 44px));
  1105. margin: 0 auto;
  1106. padding: 80px 0 120px;
  1107. }
  1108. .history-content article {
  1109. position: relative;
  1110. margin: 0 0 24px;
  1111. padding: 34px 38px;
  1112. border: 1px solid rgba(215,255,54,.16);
  1113. border-radius: 8px;
  1114. background:
  1115. linear-gradient(90deg, rgba(2,4,3,.74), rgba(5,36,27,.32)),
  1116. rgba(255,255,255,.026);
  1117. backdrop-filter: blur(14px);
  1118. }
  1119. .history-content article::before {
  1120. content: "";
  1121. position: absolute;
  1122. left: 0;
  1123. top: 28px;
  1124. bottom: 28px;
  1125. width: 2px;
  1126. background: var(--acid);
  1127. box-shadow: 0 0 18px rgba(215,255,54,.55);
  1128. }
  1129. .history-content h2 {
  1130. margin: 0 0 18px;
  1131. color: #f4fff6;
  1132. font-family: "Bebas Neue", sans-serif;
  1133. font-size: 58px;
  1134. line-height: .95;
  1135. }
  1136. .history-content p {
  1137. margin: 0 0 16px;
  1138. color: var(--muted);
  1139. font-size: 21px;
  1140. line-height: 1.65;
  1141. }
  1142. .history-content p:last-child {
  1143. margin-bottom: 0;
  1144. }
  1145. .history-back {
  1146. margin: 28px auto 0;
  1147. }
  1148. .trailer-modal.is-open,
  1149. .ending-modal.is-open {
  1150. opacity: 1;
  1151. visibility: visible;
  1152. }
  1153. .trailer-modal video,
  1154. .ending-modal video {
  1155. width: min(1100px, 94vw);
  1156. max-height: 78vh;
  1157. border: 1px solid rgba(215,255,54,.32);
  1158. box-shadow: 0 0 60px rgba(21,255,128,.22);
  1159. }
  1160. .modal-close {
  1161. position: absolute;
  1162. top: 22px;
  1163. right: 22px;
  1164. }
  1165. @keyframes loadline {
  1166. from { transform: translateX(-120%); }
  1167. to { transform: translateX(260%); }
  1168. }
  1169. @keyframes grain {
  1170. 0% { transform: translate(0, 0); }
  1171. 100% { transform: translate(2px, -3px); }
  1172. }
  1173. @keyframes smoke {
  1174. from { transform: translate3d(-2%, 1%, 0) scale(1); }
  1175. to { transform: translate3d(2%, -1%, 0) scale(1.08); }
  1176. }
  1177. @keyframes scrollmark {
  1178. 0%, 100% { transform: scaleY(.45); opacity: .4; }
  1179. 50% { transform: scaleY(1); opacity: 1; }
  1180. }
  1181. @keyframes float {
  1182. 0%, 100% { transform: translateY(0); }
  1183. 50% { transform: translateY(-24px); }
  1184. }
  1185. @keyframes bubble {
  1186. from { transform: translateY(0) scale(.7); opacity: 0; }
  1187. 20% { opacity: .9; }
  1188. to { transform: translateY(-210px) scale(1.25); opacity: 0; }
  1189. }
  1190. @keyframes wave {
  1191. 0%, 100% { transform: translateX(-8%); }
  1192. 50% { transform: translateX(8%); }
  1193. }
  1194. @keyframes marquee {
  1195. from { transform: translateX(0); }
  1196. to { transform: translateX(-33.333%); }
  1197. }
  1198. @media (max-width: 900px) {
  1199. .loader__formula {
  1200. font-size: 62px;
  1201. }
  1202. .nav-toggle {
  1203. display: block;
  1204. }
  1205. .navlinks {
  1206. position: fixed;
  1207. inset: 72px 16px auto;
  1208. display: grid;
  1209. gap: 0;
  1210. padding: 12px;
  1211. border: 1px solid var(--line);
  1212. border-radius: 8px;
  1213. background: rgba(2, 9, 7, .92);
  1214. backdrop-filter: blur(18px);
  1215. transform: translateY(-18px);
  1216. opacity: 0;
  1217. pointer-events: none;
  1218. transition: transform .25s ease, opacity .25s ease;
  1219. }
  1220. .navlinks.is-open {
  1221. transform: translateY(0);
  1222. opacity: 1;
  1223. pointer-events: auto;
  1224. }
  1225. .navlinks a {
  1226. padding: 16px;
  1227. }
  1228. .lab__cards,
  1229. .dea__grid,
  1230. .dea__stats,
  1231. .legacy,
  1232. .supporting__grid,
  1233. .story-preview__grid {
  1234. grid-template-columns: 1fr;
  1235. }
  1236. .section__head h2,
  1237. .trailer h2,
  1238. .ending h2,
  1239. .legacy__copy h2 {
  1240. font-size: 72px;
  1241. }
  1242. .legacy {
  1243. padding-bottom: 132px;
  1244. }
  1245. .legacy__emmy-bg {
  1246. right: 50%;
  1247. top: 58%;
  1248. width: 420px;
  1249. transform: translate(50%, -50%) rotate(-8deg);
  1250. }
  1251. .hero__title {
  1252. font-size: 118px;
  1253. }
  1254. .hero__quote {
  1255. font-size: 26px;
  1256. }
  1257. .lab__stage {
  1258. grid-template-columns: 1fr;
  1259. grid-template-areas:
  1260. "copy"
  1261. "reactor"
  1262. "cards";
  1263. }
  1264. .lab__reactor {
  1265. min-height: 420px;
  1266. }
  1267. .story-preview__copy,
  1268. .story-preview__poster,
  1269. .story-preview__poster img {
  1270. min-height: auto;
  1271. }
  1272. .story-preview__poster img {
  1273. height: 520px;
  1274. }
  1275. .history-hero h1 {
  1276. font-size: 82px;
  1277. }
  1278. .character-card {
  1279. min-height: 560px;
  1280. }
  1281. .character-card h3 {
  1282. font-size: 54px;
  1283. }
  1284. .dea__panel {
  1285. padding: 34px;
  1286. }
  1287. .dea__panel h3 {
  1288. font-size: 68px;
  1289. }
  1290. .footer {
  1291. align-items: flex-start;
  1292. flex-direction: column;
  1293. }
  1294. .ending__play {
  1295. right: 50%;
  1296. top: 43%;
  1297. }
  1298. }
  1299. @media (max-width: 560px) {
  1300. .section {
  1301. padding: 108px 18px;
  1302. }
  1303. .hero__actions {
  1304. display: grid;
  1305. }
  1306. .hero__title {
  1307. font-size: 74px;
  1308. }
  1309. .hero__quote,
  1310. .lab__copy p,
  1311. .ending__caption p:not(.eyebrow),
  1312. .legacy__copy p:not(.eyebrow),
  1313. .bio-modal__text {
  1314. font-size: 19px;
  1315. }
  1316. .section__head h2,
  1317. .trailer h2,
  1318. .ending h2,
  1319. .legacy__copy h2 {
  1320. font-size: 56px;
  1321. }
  1322. .quote-marquee span {
  1323. font-size: 14px;
  1324. padding: 14px 18px;
  1325. }
  1326. .formula {
  1327. font-size: 38px;
  1328. }
  1329. .beaker {
  1330. width: 220px;
  1331. }
  1332. .support-card {
  1333. min-height: 330px;
  1334. }
  1335. .bio-modal__panel {
  1336. padding: 30px 22px;
  1337. }
  1338. .bio-modal__panel h2 {
  1339. font-size: 54px;
  1340. }
  1341. .story-preview__copy {
  1342. padding: 24px;
  1343. }
  1344. .story-preview__copy p,
  1345. .history-content p {
  1346. font-size: 18px;
  1347. }
  1348. .story-preview__poster img {
  1349. height: 390px;
  1350. }
  1351. .story-preview__stats {
  1352. grid-template-columns: 1fr;
  1353. }
  1354. .history-hero h1 {
  1355. font-size: 58px;
  1356. }
  1357. .history-hero p:not(.eyebrow) {
  1358. font-size: 20px;
  1359. }
  1360. .history-content article {
  1361. padding: 26px 22px;
  1362. }
  1363. .history-content h2 {
  1364. font-size: 44px;
  1365. }
  1366. .button {
  1367. width: min(100%, 330px);
  1368. }
  1369. .scroll-indicator {
  1370. right: 18px;
  1371. }
  1372. .timeline__rail::before {
  1373. left: 24px;
  1374. }
  1375. .timeline__item {
  1376. margin-left: 64px;
  1377. padding: 22px;
  1378. }
  1379. .timeline__item span {
  1380. left: -62px;
  1381. width: 46px;
  1382. }
  1383. }