:root {
  color-scheme: dark;
  --bg: #05121f;
  --bg-deep: #02070f;
  --surface: rgba(8, 24, 41, 0.78);
  --surface-strong: rgba(8, 26, 45, 0.86);
  --line: rgba(177, 204, 223, 0.18);
  --line-strong: rgba(116, 237, 171, 0.48);
  --text: #f2f7ff;
  --muted: #a4b7cf;
  --accent: #61dc9b;
  --accent-strong: #9cf8c7;
  --accent-soft: rgba(97, 220, 155, 0.22);
  --accent-glow: rgba(111, 240, 176, 0.34);
  --white-soft: rgba(255, 255, 255, 0.08);
  --radius-xl: 2.15rem;
  --radius-lg: 1.3rem;
  --shadow: 0 36px 96px rgba(0, 0, 0, 0.52);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg-deep);
}

body {
  position: relative;
  margin: 0;
  min-height: 100svh;
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    system-ui,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 14%, rgba(97, 220, 155, 0.18), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(49, 105, 203, 0.24), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(67, 170, 116, 0.08), transparent 28%),
    linear-gradient(180deg, #081729 0%, var(--bg) 34%, var(--bg-deep) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  opacity: 0.42;
  background:
    radial-gradient(circle at 20% 25%, rgba(156, 248, 199, 0.08), transparent 20%),
    radial-gradient(circle at 78% 18%, rgba(156, 248, 199, 0.06), transparent 18%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 34%, rgba(97, 220, 155, 0.05) 72%, transparent 100%);
}

body::after {
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 18%, transparent 82%, rgba(97, 220, 155, 0.04));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  flex: none;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  pointer-events: none;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-bg::before {
  inset: -18%;
  opacity: 0.26;
  filter: blur(78px);
  background:
    conic-gradient(
      from 200deg at 50% 50%,
      rgba(97, 220, 155, 0) 0deg,
      rgba(97, 220, 155, 0.18) 80deg,
      rgba(94, 135, 225, 0.12) 150deg,
      rgba(97, 220, 155, 0) 240deg,
      rgba(97, 220, 155, 0.14) 320deg,
      rgba(97, 220, 155, 0) 360deg
    );
  animation: aurora-sweep 26s linear infinite;
}

.site-bg::after {
  inset: 0;
  background: radial-gradient(circle at center, transparent 42%, rgba(1, 4, 10, 0.36) 100%);
}

.site-bg__glow,
.site-bg__grid {
  position: absolute;
}

.site-bg__glow {
  border-radius: 999px;
  filter: blur(108px);
  opacity: 0.58;
}

.site-bg__glow--green {
  top: -7rem;
  left: -5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(97, 220, 155, 0.42);
  animation: ambient-drift 18s ease-in-out infinite alternate;
}

.site-bg__glow--blue {
  right: -5rem;
  top: 9rem;
  width: 18rem;
  height: 18rem;
  background: rgba(60, 111, 220, 0.24);
  animation: ambient-drift 22s ease-in-out infinite alternate-reverse;
}

.site-bg__grid {
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at center, rgba(97, 220, 155, 0.08), transparent 52%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 78%);
  animation: grid-drift 28s linear infinite;
}

.card-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  min-height: 100svh;
  margin: 0 auto;
  padding:
    calc(18px + env(safe-area-inset-top))
    calc(16px + env(safe-area-inset-right))
    calc(22px + env(safe-area-inset-bottom))
    calc(16px + env(safe-area-inset-left));
  display: grid;
  align-content: center;
  gap: 0.9rem;
  perspective: 1200px;
}

.business-card {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 18%),
    linear-gradient(140deg, rgba(98, 225, 162, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(97, 220, 155, 0.14), transparent 24%),
    var(--surface-strong);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 56px rgba(97, 220, 155, 0.12);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  transform: translateZ(0);
  animation: card-enter 720ms var(--ease-premium) both;
}

.business-card::before,
.business-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.business-card::before {
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%, transparent 72%, rgba(97, 220, 155, 0.12));
  opacity: 0.72;
}

.business-card::after {
  border-radius: inherit;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 32%, rgba(97, 220, 155, 0.06) 72%, transparent 100%),
    radial-gradient(circle at top right, rgba(97, 220, 155, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(70, 130, 220, 0.12), transparent 24%);
  opacity: 1;
  mix-blend-mode: screen;
  animation: surface-drift 12s ease-in-out infinite alternate;
}

.profile-hero,
.primary-actions,
.quick-actions,
.expertise-strip,
.contact-panel,
.card-footer {
  position: relative;
  z-index: 1;
}

.profile-hero {
  display: grid;
  gap: 1rem;
}

.hero-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.profile-logo {
  width: clamp(6.1rem, 28vw, 7.5rem);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 16px 30px rgba(97, 220, 155, 0.18))
    drop-shadow(0 0 26px rgba(97, 220, 155, 0.12));
  animation: logo-float 8s ease-in-out infinite alternate;
}

.status-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding: 0.62rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(156, 248, 199, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(9, 28, 44, 0.7);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 26px rgba(0, 0, 0, 0.2),
    0 0 28px rgba(97, 220, 155, 0.14);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.status-pill::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 46%, rgba(97, 220, 155, 0.06));
  opacity: 0.7;
  pointer-events: none;
}

.status-pill__dot {
  position: relative;
  z-index: 1;
  display: block;
  flex: none;
  isolation: isolate;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 18px rgba(156, 248, 199, 0.95);
  animation: live-dot 2.6s ease-in-out infinite;
}

.status-pill__dot::before {
  content: "";
  position: absolute;
  inset: 0.08rem;
  border-radius: 50%;
  background: #eafff3;
  opacity: 0.96;
}

.status-pill__dot::after {
  content: "";
  position: absolute;
  inset: -0.52rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 248, 199, 0.46), rgba(156, 248, 199, 0));
  animation: status-pulse 2.8s ease-out infinite;
}

.profile-copy {
  display: grid;
  gap: 0.42rem;
}

.profile-copy h1 {
  margin: 0;
  font-size: clamp(2.05rem, 8vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.profile-subline,
.profile-note,
.profile-location {
  margin: 0;
}

.profile-subline {
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #f8fbff 0%, #dff8ea 54%, #9cf8c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.profile-note {
  font-size: 0.95rem;
  color: #c4d2e3;
}

.profile-location {
  font-size: 0.84rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-actions {
  margin-top: 1rem;
}

.action,
.quick-action,
.detail-item,
.chip {
  border: 1px solid var(--line);
}

.action,
.quick-action {
  position: relative;
  overflow: hidden;
  transition:
    transform 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium),
    background-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    filter 220ms var(--ease-premium);
}

.action::before,
.quick-action::before,
.contact-panel::before,
.detail-item::before,
.chip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 36%);
  opacity: 0.7;
}

.action {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.92rem;
  width: 100%;
  min-height: 4.2rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.action__icon,
.quick-action__icon {
  display: inline-grid;
  place-items: center;
  color: var(--text);
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium),
    background-color 220ms var(--ease-premium);
}

.action__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 20, 36, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.18);
}

.action__body {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
}

.action__body strong {
  font-size: 1rem;
  line-height: 1.2;
}

.action__body span {
  font-size: 0.77rem;
  line-height: 1.45;
  color: rgba(242, 247, 255, 0.88);
}

.action--save {
  border-color: rgba(156, 248, 199, 0.34);
  background:
    linear-gradient(135deg, rgba(156, 248, 199, 0.3), rgba(76, 158, 113, 0.28) 34%, rgba(8, 35, 25, 0.9) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 35%),
    rgba(11, 43, 33, 0.72);
  box-shadow:
    0 24px 44px rgba(7, 19, 33, 0.5),
    0 0 42px rgba(97, 220, 155, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: primary-breathe 6.5s ease-in-out infinite;
}

.action--save .action__icon {
  color: #042216;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, rgba(156, 248, 199, 0.9), rgba(87, 213, 149, 0.72));
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 10px 22px rgba(3, 17, 11, 0.24);
}

.action--save::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: linear-gradient(
    120deg,
    transparent 16%,
    rgba(255, 255, 255, 0.18) 34%,
    transparent 52%
  );
  opacity: 0.38;
  transform: translateX(-130%);
  animation: button-shine 4.6s ease-in-out infinite;
}

.action--save .action__body span {
  color: rgba(248, 252, 255, 0.92);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.quick-action {
  display: grid;
  gap: 0.48rem;
  min-height: 4.1rem;
  padding: 0.85rem 0.92rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(135deg, rgba(97, 220, 155, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 18px rgba(0, 0, 0, 0.14),
    0 0 22px rgba(97, 220, 155, 0.06);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.quick-action::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% 18%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 220, 155, 0.14), rgba(97, 220, 155, 0));
  opacity: 0.8;
  pointer-events: none;
}

.quick-action__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(97, 220, 155, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 18px rgba(97, 220, 155, 0.08);
}

.quick-action__label {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}

.expertise-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 0.95rem;
}

.chip {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.64rem 0.84rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 48%),
    rgba(97, 220, 155, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 24px rgba(5, 17, 13, 0.12);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(156, 248, 199, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(145deg, rgba(97, 220, 155, 0.06), transparent 50%),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(0, 0, 0, 0.12),
    0 0 28px rgba(97, 220, 155, 0.06);
}

.contact-panel h2 {
  margin: 0 0 0.82rem;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-details {
  display: grid;
  gap: 0.72rem;
  margin: 0;
}

.detail-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.86rem 0.92rem;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 48%),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.detail-item dt,
.detail-item dd {
  margin: 0;
}

.detail-item dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-item dd {
  justify-self: end;
  max-width: 100%;
  text-align: right;
  font-size: 0.94rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.detail-item a {
  color: var(--text);
  transition: color 200ms var(--ease-premium);
}

.card-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 0.55rem;
  color: #b1bfd0;
  font-size: 0.82rem;
  text-align: center;
  animation: footer-enter 780ms 110ms var(--ease-premium) both;
}

.card-footer p {
  margin: 0;
}

.card-footer a {
  color: var(--text);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 3;
  width: min(calc(100% - 2rem), 28rem);
  padding: 0.92rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(156, 248, 199, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 45%),
    rgba(5, 16, 31, 0.9);
  color: var(--text);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(97, 220, 155, 0.08);
  font-size: 0.84rem;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition:
    opacity 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .action:hover,
  .quick-action:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow:
      0 18px 40px rgba(3, 10, 19, 0.34),
      0 0 30px rgba(97, 220, 155, 0.16);
    filter: saturate(108%);
  }

  .action:hover .action__icon,
  .quick-action:hover .quick-action__icon {
    transform: translateY(-1px);
    border-color: rgba(156, 248, 199, 0.28);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 10px 24px rgba(0, 0, 0, 0.2),
      0 0 18px rgba(97, 220, 155, 0.12);
  }

  .detail-item a:hover,
  .card-footer a:hover {
    color: var(--accent-strong);
  }
}

.action:active,
.quick-action:active {
  transform: translateY(0);
}

.action:focus-visible,
.quick-action:focus-visible,
.detail-item a:focus-visible,
.card-footer a:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 1px rgba(120, 239, 170, 0.8),
    0 0 0 4px rgba(84, 211, 143, 0.18);
}

@media (max-width: 380px) {
  .business-card {
    padding: 1rem;
  }

  .status-pill {
    font-size: 0.72rem;
  }

  .detail-item {
    grid-template-columns: 1fr;
  }

  .detail-item dd {
    justify-self: start;
    text-align: left;
  }
}

@media (min-width: 560px) {
  .card-shell {
    width: min(100%, 36rem);
    padding-top: calc(24px + env(safe-area-inset-top));
    padding-bottom: calc(26px + env(safe-area-inset-bottom));
  }

  .business-card {
    padding: 1.45rem;
  }

  .contact-panel {
    padding: 1.1rem;
  }
}

@media (max-height: 720px) {
  .card-shell {
    align-content: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes ambient-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(18px, -14px, 0) scale(1.08);
  }
}

@keyframes grid-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(18px, 14px, 0);
  }
}

@keyframes aurora-sweep {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1.08);
  }
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes surface-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-10px, 8px, 0) scale(1.04);
  }
}

@keyframes footer-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-4px);
  }
}

@keyframes live-dot {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(156, 248, 199, 0.76);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 24px rgba(156, 248, 199, 1);
    transform: scale(1.08);
  }
}

@keyframes status-pulse {
  0% {
    transform: scale(0.52);
    opacity: 0.92;
  }

  70% {
    transform: scale(2.3);
    opacity: 0;
  }

  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}

@keyframes primary-breathe {
  0%,
  100% {
    box-shadow:
      0 24px 44px rgba(7, 19, 33, 0.5),
      0 0 30px rgba(97, 220, 155, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow:
      0 26px 48px rgba(7, 19, 33, 0.54),
      0 0 56px rgba(97, 220, 155, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
}

@keyframes button-shine {
  0%,
  76%,
  100% {
    transform: translateX(-130%);
  }

  88% {
    transform: translateX(130%);
  }
}
