
:root {
  --primary: #0a6fc2;
  --primary-light: #3b9fe8;
  --primary-pale: #e8f4fd;
  --primary-mid: #1a82d8;
  --accent: #00c6ff;
  --white: #ffffff;
  --off-white: #f5faff;
  --text-dark: #0d1f3c;
  --text-mid: #3a5474;
  --text-light: #6b8aad;
  --border: #d0e8f8;
  --shadow: 0 8px 32px rgba(10,111,194,0.10);
  --shadow-lg: 0 20px 60px rgba(10,111,194,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --font-head: "Roboto", sans-serif;
  --font-body: 'Outfit', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; }

/* ===================== COOKIE BANNER ===================== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--text-dark); color: #fff;
  padding: 18px 32px; display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transform: translateY(100%); transition: transform .5s cubic-bezier(.4,0,.2,1);
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { flex: 1; font-size: .93rem; min-width: 220px; }
#cookie-banner a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button {
  padding: 9px 22px; border-radius: 50px; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: .9rem; transition: all .2s;
}
#cookie-accept { background: var(--primary); color: #fff; }
#cookie-accept:hover { background: var(--primary-light); }
#cookie-decline { background: transparent; color: #aaa; border: 1px solid #444; }
#cookie-decline:hover { color: #fff; border-color: #888; }

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 4%; height: 95px;
  display: flex; align-items: center; justify-content: space-between;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(10,111,194,0.10);
  transition: height .3s, box-shadow .3s;
}
#navbar.scrolled {
  height: 92px;
  box-shadow: 0 4px 28px rgba(10,111,194,0.14);
}

/* Logo image */
.nav-logo {
  display: flex; align-items: center; text-decoration: none; flex-shrink: 0;
  max-width: 55vw;
}
.nav-logo img {
  height: 75px; width: auto; max-width: 100%;
  object-fit: contain; display: block;
  transition: height .3s;
}
#navbar.scrolled .nav-logo img { height: 75px; }

/* Desktop links */
.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--text-mid);
  text-decoration: none; padding: 7px 14px; border-radius: 50px;
  transition: all .22s; letter-spacing: .01em; white-space: nowrap;
}
.nav-links a:hover { background: var(--primary-pale); color: var(--primary); }
.nav-cta {
  padding: 9px 20px !important;
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(10,111,194,0.28) !important;
}
.nav-cta:hover {
  background: var(--primary-light) !important;
  box-shadow: 0 6px 20px rgba(10,111,194,0.38) !important;
  transform: translateY(-1px);
}

/* Hamburger — always dark since navbar is white */
.ham {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 8px; background: none; border: none;
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px;
  transition: background .2s;
}
.ham:hover { background: var(--primary-pale); }
.ham span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: all .3s;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0;
  background: #ffffff;
  border-top: 2px solid var(--primary-pale);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  padding: 8px 5% 20px;
  box-shadow: 0 16px 40px rgba(10,111,194,0.13);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  /* Slide down animation */
  transform-origin: top;
  animation: none;
}
.mobile-menu.open { display: flex; animation: slideDown .25s ease; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu a {
  padding: 14px 12px;
  color: var(--text-mid); text-decoration: none;
  font-weight: 500; font-size: 1rem;
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
  border-radius: 8px;
  display: flex; align-items: center; gap: 8px;
}
.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 8px;
  background: var(--primary);
  color: #fff; font-weight: 700;
  border-radius: 12px;
  justify-content: center;
  padding: 14px;
}
.mobile-menu a:not(:last-child):hover {
  color: var(--primary); background: var(--primary-pale);
}

/* ---- Responsive breakpoints ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .ham { display: flex; }
}
@media (max-width: 480px) {
  #navbar { padding: 0 4%; height: 64px; }
  .nav-logo img { height: 44px; }
  .mobile-menu { top: 64px; }
}

/* ===================== HERO ===================== */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #053a72 0%, #0a6fc2 45%, #0ea5e9 100%);
  display: flex; align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.hero-circle-1 { width: 600px; height: 600px; top: -200px; right: -150px; animation: float1 8s ease-in-out infinite; }
.hero-circle-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation: float2 10s ease-in-out infinite; }
.hero-circle-3 { width: 250px; height: 250px; top: 40%; right: 10%; animation: float1 6s ease-in-out infinite 2s; }
@keyframes float1 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-24px) scale(1.03)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(18px) rotate(5deg)} }

/* Animated SVG DNA/medical cross */
.hero-svg-anim {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  opacity: .18; width: 420px; height: 420px;
  display: none;
}
@media(min-width:960px){ .hero-svg-anim { display: block; } }

.hero-content {
  position: relative; z-index: 2; padding: 130px 5% 80px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; padding: 6px 16px 6px 8px;
  color: rgba(255,255,255,0.9); font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInUp .7s ease both;
}
.hero-badge-dot { width: 8px; height: 8px; background: #00e5ff; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(0,229,255,.6)} 50%{box-shadow:0 0 0 8px rgba(0,229,255,0)} }

.hero-title {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px;
  animation: fadeInUp .7s ease .15s both;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: clamp(.95rem, 2vw, 1.1rem); color: rgba(255,255,255,0.78);
  line-height: 1.75; margin-bottom: 36px; max-width: 560px;
  animation: fadeInUp .7s ease .3s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp .7s ease .45s both; }
.btn-primary {
  padding: 14px 32px; background: #fff; color: var(--primary);
  border-radius: 50px; font-weight: 700; font-size: .97rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2); transition: all .25s; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.25); }
.btn-ghost {
  padding: 14px 32px; background: transparent;
  border: 2px solid rgba(255,255,255,0.5); color: #fff;
  border-radius: 50px; font-weight: 600; font-size: .97rem;
  text-decoration: none; transition: all .25s; display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap;
  animation: fadeInUp .7s ease .6s both;
}
.hero-stat { text-align: left; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: #fff; font-family: var(--font-body); }
.hero-stat-num span { font-size: 1.1rem; color: var(--accent); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: .07em; }

@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ===================== ABOUT ===================== */
#about {
  padding: 100px 5%; background: var(--off-white);
  position: relative; overflow: hidden;
}
.about-blob {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,159,232,0.06) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.section-tag {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); background: var(--primary-pale); padding: 5px 14px;
  border-radius: 50px; display: inline-block; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 18px;
}
.section-title span { color: var(--primary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: .97rem; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px;
  background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.about-feature:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.about-feature-icon {
  width: 40px; height: 40px; background: var(--primary-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-feature-icon svg { width: 20px; height: 20px; color: var(--primary); }
.about-feature h4 { font-size: .92rem; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.about-feature p { font-size: .82rem; color: var(--text-light); margin: 0; line-height: 1.5; }
.about-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.about-visual-card {
  background: linear-gradient(135deg, var(--primary), #0ea5e9);
  border-radius: 24px; padding: 48px 36px; color: #fff; width: 100%;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about-visual-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 60%);
}
.about-visual-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; }
.about-visual-card p { font-size: .88rem; opacity: .82; line-height: 1.7; }
.about-visual-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.avc-stat { background: rgba(255,255,255,0.13); border-radius: 12px; padding: 16px; backdrop-filter: blur(4px); }
.avc-stat .num { font-size: 1.8rem; font-weight: 800; }
.avc-stat .lbl { font-size: .75rem; opacity: .75; }

@media(max-width:768px){
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ===================== HOW IT WORKS ===================== */
#how {
  padding: 100px 5%; background: #fff;
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 64px; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--primary-pale), var(--primary), var(--primary-pale));
  z-index: 0;
}
.how-step {
  position: relative; z-index: 1; text-align: center;
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 32px 20px 28px;
  transition: all .3s; cursor: default;
}
.how-step:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--primary-light); }
.how-step-num {
  width: 72px; height: 72px; background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem; font-weight: 800; color: #fff;
  box-shadow: 0 8px 24px rgba(10,111,194,0.3);
  position: relative;
}
.how-step-num::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px dashed rgba(10,111,194,0.25); animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.how-step h3 { font-size: 1.02rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.how-step p { font-size: .85rem; color: var(--text-light); line-height: 1.65; }
@media(max-width:900px) {
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
}
@media(max-width:560px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ===================== BRAND SLIDER ===================== */
#brands {
  padding: 70px 0; background: var(--off-white); overflow: hidden;
}
.brands-header { text-align: center; margin-bottom: 40px; padding: 0 5%; }
.brands-track-wrap { position: relative; overflow: hidden; }
.brands-track-wrap::before, .brands-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.brands-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--off-white), transparent); }
.brands-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--off-white), transparent); }
.brands-track {
  display: flex; gap: 0; width: max-content;
  animation: scrollTrack 28s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes scrollTrack { to { transform: translateX(-50%); } }
.brand-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0 32px; height: 80px; flex-shrink: 0;
  font-size: .88rem; font-weight: 700; color: var(--text-light);
  letter-spacing: .03em; white-space: nowrap;
  border-right: 1px solid var(--border); transition: color .25s;
}
.brand-item:hover { color: var(--primary); }
.brand-dot { width: 6px; height: 6px; background: var(--primary-light); border-radius: 50%; margin-right: 8px; flex-shrink: 0; }

/* ===================== FORM ===================== */
#requirement {
  padding: 100px 5%; background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
  position: relative; overflow: hidden;
}
.req-inner { max-width: 960px; margin: 0 auto; }
.req-header { text-align: center; margin-bottom: 48px; }
.req-form-card {
  background: #fff; border-radius: 24px; padding: 48px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .82rem; font-weight: 600; color: var(--text-mid);
  text-transform: uppercase; letter-spacing: .05em;
}
.form-group input, .form-group select {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font-body); font-size: .93rem; color: var(--text-dark);
  background: var(--off-white); transition: all .2s; outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(10,111,194,0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b8aad' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.req-type-toggle {
  grid-column: 1 / -1; display: flex; gap: 12px; flex-wrap: wrap;
}
.type-btn {
  flex: 1; min-width: 130px; padding: 13px; border-radius: 10px;
  border: 2px solid var(--border); background: var(--off-white);
  font-family: var(--font-body); font-size: .93rem; font-weight: 600;
  color: var(--text-mid); cursor: pointer; transition: all .2s; text-align: center;
}
.type-btn.active { border-color: var(--primary); background: var(--primary-pale); color: var(--primary); }
.form-submit {
  margin-top: 28px; width: 100%; padding: 16px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: #fff; border: none; border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all .25s; letter-spacing: .02em;
  box-shadow: 0 6px 24px rgba(10,111,194,0.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(10,111,194,0.4); }
@media(max-width:640px) {
  .form-grid { grid-template-columns: 1fr; }
  .req-form-card { padding: 28px 20px; }
}

/* ===================== WHY CHOOSE US ===================== */
#why {
  padding: 100px 5%; background: #fff;
}
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header { text-align: center; margin-bottom: 60px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  padding: 32px 26px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--off-white); transition: all .3s; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); background: #fff; }
.why-icon {
  width: 52px; height: 52px; background: var(--primary-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.why-icon svg { width: 26px; height: 26px; color: var(--primary); }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.why-card p { font-size: .85rem; color: var(--text-light); line-height: 1.7; }
@media(max-width:900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px) { .why-grid { grid-template-columns: 1fr; } }

/* ===================== FOOTER ===================== */
footer {
  background: var(--text-dark); color: rgba(255,255,255,0.75);
  padding: 70px 5% 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; }
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand .brand { color: #fff !important; }
.footer-brand .sub { color: rgba(255,255,255,0.5) !important; }
.footer-brand p { font-size: .87rem; line-height: 1.75; max-width: 320px; margin-bottom: 20px; }
.footer-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.62); text-decoration: none; font-size: .87rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .87rem; }
.contact-icon { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-bottom {
  max-width: 1200px; margin: 48px auto 0;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
  font-size: .8rem; gap: 12px; flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--accent); }
@media(max-width:768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===================== FLOATING CTA ===================== */
.float-cta {
  position: fixed; bottom: 90px; right: 24px; z-index: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border-radius: 50px; padding: 12px 22px;
  font-family: var(--font-body); font-size: .85rem; font-weight: 700;
  box-shadow: 0 8px 28px rgba(10,111,194,0.45);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: all .25s; opacity: 0; pointer-events: none;
}
.float-cta.show { opacity: 1; pointer-events: auto; }
.float-cta:hover { transform: scale(1.05); box-shadow: 0 14px 36px rgba(10,111,194,0.55); }

/* ===================== SVG ANIMATIONS ===================== */
.pulse-ring {
  animation: pulseRing 2.5s ease-out infinite;
}
@keyframes pulseRing {
  0% { r: 40; opacity: 1; }
  100% { r: 80; opacity: 0; }
}

