<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Verily Research Registry</title> <style> @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap'); *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'DM Sans', sans-serif; background: #0f1624; min-height: 100vh; padding: 3rem 3.5rem; position: relative; overflow: hidden; } .accent-bar { position: fixed; top: 0; left: 0; right: 0; height: 12px; background: linear-gradient(90deg, #4caf8f, #6bbfa0, #a8c8d8, #c9a8d4, #c8a0b8); } .orb { position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.15; pointer-events: none; } .orb-1 { width: 350px; height: 350px; background: #662BA6; top: -100px; right: -80px; } .orb-2 { width: 250px; height: 250px; background: #087a6a; bottom: -80px; left: -60px; } .content { position: relative; max-width: 720px; padding-top: 1.5rem; } .label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #2CD5D7; margin-bottom: 1.4rem; } .label-dot { width: 8px; height: 8px; border-radius: 50%; background: #2CD5D7; box-shadow: 0 0 10px #2CD5D7; } h2 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; line-height: 1.15; color: #fff; margin-bottom: 2rem; } h2 em { font-style: italic; background: linear-gradient(135deg, #FFC323, #C53695); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.8rem; } .tag { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 100px; border: 1px solid; } .tag-teal { color: #2CD5D7; border-color: rgba(44,213,215,0.3); background: rgba(44,213,215,0.08); } .tag-green { color: #81C649; border-color: rgba(129,198,73,0.3); background: rgba(129,198,73,0.08); } .tag-orange { color: #EC6440; border-color: rgba(236,100,64,0.3); background: rgba(236,100,64,0.08); } .tag-blue { color: #1B81E5; border-color: rgba(27,129,229,0.3); background: rgba(27,129,229,0.08); } .tag-purple { color: #B95ED6; border-color: rgba(185,94,214,0.3); background: rgba(185,94,214,0.08); } p { color: #fff; font-size: 1rem; line-height: 1.78; font-weight: 300; margin-bottom: 2.2rem; } .btn { display: inline-block; padding: 0.75rem 2rem; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; color: #fff; background: linear-gradient(90deg, #087a6a, #1B81E5, #662BA6, #EA3948); background-size: 250% 100%; background-position: 0% 50%; transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease; box-shadow: 0 4px 20px rgba(102, 43, 166, 0.4); } .btn:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(102, 43, 166, 0.6); } </style> </head> <body> <div class="accent-bar"></div> <div class="orb orb-1"></div> <div class="orb orb-2"></div> <div class="content"> <div class="label"> <span class="label-dot"></span> Introducing Verily Lifelong Health Study </div> <h2>A <em>living window</em> into how health changes over time</h2> <p>The Lifelong Health Study is a Verily-sponsored research program. Our goal is to better understand the many factors that contribute to long-term health. These insights help fill the gaps in medical research, which can lead to breakthroughs that may benefit us all.</p> <a class="btn" href="https://verily.com/perspectives/introducing-the-lifelong-health-study" target="_blank">Learn more →</a> </div> </body> </html>