/* ======================================== */
/* Global Styles & Resets        */
/* ======================================== */

:root {
  --ink: #0b0f1c;
  --seer-purple: #8A2BE2;
  /* A deeper, more mysterious violet */
  --fool-gold: #DAA520;
  /* A rich, warm goldenrod */
  --white: #ffffff;
  --gray-300: #d1d5db;
  --gray-text: rgba(255, 255, 255, 0.85);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background-color: var(--ink);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::selection {
  background-color: rgba(138, 43, 226, 0.25);
}

section {
  margin-top: 5rem;
}

@media (min-width: 768px) {
  section {
    margin-top: 7rem;
  }
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ======================================== */
/* Reusable Components           */
/* ======================================== */

.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--seer-purple), var(--fool-gold));
  border-radius: 999px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .8rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: .85rem;
  cursor: pointer;
}

.chip.is-active {
  background: var(--seer-purple);
  color: var(--white);
  font-weight: 600;
  border-color: transparent;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.icon-btn:hover {
  color: var(--white);
  border-color: var(--seer-purple);
  background-color: rgba(138, 43, 226, 0.1);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.35);
  transform: translateY(-2px);
}

.ico {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.icon {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

/* ======================================== */
/* Background & Glows            */
/* ======================================== */

.bg-container {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
}

.bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27200%27 height=%27200%27 viewBox=%270 0 200 200%27%3E%3Cfilter id=%27n%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%270.9%27 numOctaves=%271%27 stitchTiles=%27stitch%27/%3E%3CfeColorMatrix type=%27saturate%27 values=%270%27/%3E%3C/filter%3E%3Crect width=%27200%27 height=%27200%27 filter=%27url(%23n)%27 opacity=%270.035%27/%3E%3C/svg%3E");
}

.glow-top-left {
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 420px;
  height: 420px;
  border-radius: 9999px;
  filter: blur(48px);
  opacity: 0.3;
  /* More subtle opacity */
  background: radial-gradient(closest-side, rgba(138, 43, 226, 0.25), transparent);
}

.glow-middle-right {
  position: absolute;
  top: 33.33%;
  right: -5rem;
  width: 360px;
  height: 360px;
  border-radius: 9999px;
  filter: blur(48px);
  opacity: 0.3;
  /* More subtle opacity */
  background: radial-gradient(closest-side, rgba(218, 165, 32, 0.2), transparent);
}

/* ======================================== */
/* Header                  */
/* ======================================== */

header {
  position: sticky;
  top: 0;
  z-index: 50;
}

header nav {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease-in-out;
}

header.scrolled nav {
  background-color: rgba(11, 15, 28, 0.7);
  backdrop-filter: blur(10px);
}

header .logo {
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--white);
}

header .logo-accent {
  color: var(--seer-purple);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--white);
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-link.active {
  color: var(--seer-purple);
  text-underline-offset: 6px;
  text-decoration: underline;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hire-me-btn {
  display: none;
  background: linear-gradient(90deg, var(--seer-purple), var(--fool-gold));
  color: var(--ink);
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.6rem 1.1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hire-me-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(218, 165, 32, .35);
}

@media (min-width: 640px) {
  .hire-me-btn {
    display: inline-block;
  }
}

/* ======================================== */
/* Hero                   */
/* ======================================== */

h1 {
  font-weight: 800;
  line-height: 1.2;
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 2.75rem;
  }
}

h1+p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray-300);
}

@media (min-width: 640px) {
  h1+p {
    font-size: 0.9375rem;
  }
}

.hero-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-btn-primary {
  background: linear-gradient(90deg, var(--seer-purple), var(--fool-gold));
  color: var(--ink);
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(218, 165, 32, .35);
}

.hero-btn-secondary {
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.hero-btn-secondary:hover {
  border-color: var(--seer-purple);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(138, 43, 226, .18), 0 4px 14px rgba(0, 0, 0, .25);
}

.hero-btn-secondary span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, var(--seer-purple), var(--fool-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 13px;
  opacity: 0.8;
}

.profile-card-container {
  position: relative;
  order: 1;
}

@media (min-width: 1024px) {
  .profile-card-container {
    order: 2;
  }
}

.profile-name {
  font-weight: 600;
  font-size: 1.125rem;
}

.profile-title {
  font-size: 0.875rem;
  opacity: 0.7;
}

.profile-stats {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  text-align: center;
}

.stat-item {
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
}

.profile-bio {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.85;
}

#home {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding-top: 0;
  margin-top: 0;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-text {
  order: 2;
}

@media (min-width: 1024px) {
  .hero-text {
    order: 1;
  }
}

.profile-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.75rem;
  max-width: 680px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .profile-card {
    padding: 2.25rem;
  }
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.profile-image-wrapper {
  position: relative;
}

.profile-image-glow {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  filter: blur(18px);
  opacity: 0.55;
  background: radial-gradient(closest-side, rgba(138, 43, 226, 0.45), transparent);
}

.profile-image {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .profile-image {
    width: 9rem;
    height: 9rem;
  }
}

/* ======================================== */
/* About                   */
/* ======================================== */

.about-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-main {
  padding: 1.5rem;
  border-radius: 1.5rem;
}

@media (min-width: 768px) {
  .about-main {
    grid-column: span 2 / span 2;
  }
}

.about-main p {
  color: var(--gray-text);
  line-height: 1.6;
}

.about-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
  list-style: none;
}

@media (min-width: 640px) {
  .about-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.quick-info {
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.quick-info h3 {
  font-weight: 600;
}

.quick-info dl {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.quick-info dl div {
  display: flex;
  justify-content: space-between;
}

.quick-info dd {
  opacity: 0.7;
}

/* ======================================== */
/* Skills                  */
/* ======================================== */
.skills-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}

.skills-header p {
  margin-top: 0.75rem;
  opacity: 0.8;
  max-width: 42rem;
}

.skills-toggle {
  display: flex;
  gap: 0.5rem;
}

.skills-constellation-grid {
  margin-top: 2rem;
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .skills-constellation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.constellation-wrapper {
  position: relative;
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
}

#constellation {
  width: 100%;
  height: 100%;
  display: block;
}

.legend {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.legend button {
  position: absolute;
  font-size: 0.75rem;
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  pointer-events: auto;
}

.constellation-tip {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

.skills-highlights {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .skills-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.skill-card {
  border-radius: 1rem;
  padding: 1.25rem;
}

.skill-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skill-card h4 {
  font-weight: 600;
}

.skill-percent {
  font-size: 1.5rem;
  font-weight: 700;
}

.skill-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.skill-tags {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  opacity: 0.9;
}

.skills-grid-fallback {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .skills-grid-fallback {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.skill-grid-item {
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skill-name {
  font-weight: 600;
}

.skill-desc {
  font-size: 0.75rem;
  opacity: 0.7;
}

.skill-grid-percent {
  font-size: 1.125rem;
  font-weight: 700;
}

.hidden {
  display: none !important;
}

/* ======================================== */
/* Projects                 */
/* ======================================== */
.projects-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  justify-content: space-between;
}

.projects-header p {
  margin-top: 0.75rem;
  opacity: 0.8;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-chip {
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  color: white;
}

.project-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pro-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .10);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(138, 43, 226, .18), 0 4px 14px rgba(0, 0, 0, .25);
  border-color: rgba(138, 43, 226, .35);
}

.pro-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.pro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .4s ease;
}

.pro-card:hover .pro-img {
  transform: scale(1.07);
}

.pro-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(1200px 300px at -10% -10%, rgba(138, 43, 226, .20), transparent 35%),
    linear-gradient(180deg, rgba(0, 0, 0, .00) 55%, rgba(0, 0, 0, .35));
}

.pro-body {
  display: flex;
  flex-direction: column;
  padding: 1rem .9rem;
  flex-grow: 1;
}

.pro-body-main {
  flex-grow: 1;
}

.pro-body-footer {
  margin-top: 1rem;
}

.pro-title {
  font-weight: 700;
  letter-spacing: .2px;
}

.pro-desc {
  opacity: .85;
  font-size: .92rem;
  line-height: 1.45;
  margin-top: 0.6rem;
}

.pro-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.btn-solid,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  font-size: .86rem;
  padding: .55rem .8rem;
  border-radius: 12px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
}

.btn-solid {
  color: var(--ink);
  background: linear-gradient(90deg, var(--seer-purple), var(--fool-gold));
}

.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(218, 165, 32, .35);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
}

.btn-ghost:hover {
  border-color: var(--seer-purple);
  box-shadow: 0 0 18px rgba(138, 43, 226, .28);
}

.btn-ico {
  font-weight: 800;
  font-size: .9rem;
}

.pro-tags {
  margin-top: 1rem;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.pill {
  padding: .2rem .5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .08);
  font-size: .7rem;
  border: 1px solid rgba(255, 255, 255, .14);
}

/* ======================================== */
/* Experience                */
/* ======================================== */

.timeline {
  margin-top: 2rem;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.timeline-item {
  margin-bottom: 2.5rem;
  margin-left: 1rem;
}

.timeline-dot {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--seer-purple);
  border-radius: 9999px;
  left: -0.375rem;
  margin-top: 0.625rem;
}

.timeline-item time {
  font-size: 0.75rem;
  opacity: 0.7;
}

.timeline-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.timeline-item p {
  opacity: 0.8;
}

.experience-list {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  list-style-position: inside;
  opacity: 0.9;
  list-style-type: disc;
  padding-left: 0.5rem;
}

/* ======================================== */
/* Certifications              */
/* ======================================== */
.certs-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .certs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .certs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cert-card {
  border-radius: 1rem;
  padding: 1rem;
}

.cert-title {
  font-weight: 600;
}

.cert-issuer {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ======================================== */
/* Contact                 */
/* ======================================== */
.contact-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-form {
  padding: 2rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contact-form {
    grid-column: span 2 / span 2;
  }
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.6rem 0.9rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--seer-purple);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-actions button {
  background: linear-gradient(90deg, var(--seer-purple), var(--fool-gold));
  color: var(--ink);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  transition: all 0.2s ease;
}

.form-actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(218, 165, 32, .35);
}

.form-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.form-status {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: color 0.3s ease;
}

.form-status.success {
  color: #34d399;
  opacity: 1;
}

.form-status.error {
  color: #f87171;
  opacity: 1;
}

.elsewhere {
  padding: 2rem;
  border-radius: 1.5rem;
}

.elsewhere h3 {
  font-weight: 600;
}

.elsewhere ul {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  list-style: none;
}

.elsewhere li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.elsewhere a {
  color: var(--white);
  text-decoration: none;
}

.elsewhere a:hover {
  text-decoration: underline;
}

.elsewhere .icon,
.elsewhere .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  flex-shrink: 0;
}

/* ======================================== */
/* Footer                 */
/* ======================================== */
footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0d1122;
  color: rgba(255, 255, 255, 0.9);
}

.footer-content {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-content p {
  font-size: 0.875rem;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icons a:hover {
  text-decoration: none;
}

/* ======================================== */
/* Freelance Pulse Animation     */
/* ======================================== */

.pulse-container-small {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  flex-shrink: 0;
}

.pulse-dot-small {
  width: 8px;
  height: 8px;
  background-color: #34d399;
  border-radius: 9999px;
  position: relative;
}

.pulse-ring-small {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: rgba(52, 211, 153, 0.3);
  animation: pulseRingSmall 1.5s infinite;
}

@keyframes pulseRingSmall {

  0% {
    transform: scale(.8);
    opacity: .8;
  }

  80%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

