/* ==========================================================================
   OrgGuard Marketing Site — Home Page Styles
   ========================================================================== */

/* ---------- Hero Section ---------- */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

/* ==========================================================================
   Hero Dashboard Mockup
   Inline HTML/CSS dashboard inside a CSS browser chrome frame.
   No raster assets, no external requests.
   ========================================================================== */
.hero-mockup {
  margin: 4rem auto 0;
  max-width: 64rem;
  border-radius: 0.75rem;
  background-color: #0c1f12;
  box-shadow:
    0 30px 60px -20px rgba(15, 23, 42, 0.35),
    0 18px 40px -20px rgba(45, 122, 71, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mockup__screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.hero-mockup__chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #112a18;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mockup__dots {
  display: flex;
  gap: 0.375rem;
}

.hero-mockup__dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.18);
}

.hero-mockup__dots span:nth-child(1) {
  background-color: #ff5f57;
}
.hero-mockup__dots span:nth-child(2) {
  background-color: #ffbd2e;
}
.hero-mockup__dots span:nth-child(3) {
  background-color: #28c840;
}

.hero-mockup__url {
  flex: 1;
  font-size: 0.6875rem;
  font-family: ui-monospace, "SF Mono", Monaco, monospace;
  color: rgba(255, 255, 255, 0.45);
  background-color: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-mockup__body {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hero-mockup__appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.25rem;
}

.hero-mockup__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero-mockup__brand-icon {
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--brand-600);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup__user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-mockup__user::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
}

.hero-mockup__panel {
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  padding: 0.875rem;
}

.hero-mockup__panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.625rem;
}

.hero-mockup__panel-count {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: none;
  letter-spacing: 0;
}

.hero-mockup__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-mockup__table th {
  text-align: left;
  font-weight: 600;
  padding: 0.375rem 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.5625rem;
}

.hero-mockup__table td {
  padding: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-mockup__table tbody tr:last-child td {
  border-bottom: none;
}

.hero-mockup__app {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-mockup__app-icon {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 0.25rem;
  background-color: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 800;
  color: var(--brand-300);
}

.hero-mockup__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-mockup__pill::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
}

.hero-mockup__pill--active {
  background-color: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}
.hero-mockup__pill--active::before {
  background-color: #4ade80;
}

.hero-mockup__pill--expiring {
  background-color: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}
.hero-mockup__pill--expiring::before {
  background-color: #fbbf24;
}

.hero-mockup__pill--expired {
  background-color: rgba(239, 68, 68, 0.14);
  color: #f87171;
}
.hero-mockup__pill--expired::before {
  background-color: #f87171;
}

.hero-mockup__risk--high {
  color: #f87171;
  font-weight: 700;
}
.hero-mockup__risk--med {
  color: #fbbf24;
  font-weight: 600;
}
.hero-mockup__risk--low {
  color: #4ade80;
  font-weight: 600;
}

.hero-mockup__certs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.hero-mockup__cert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  font-size: 0.6875rem;
}

.hero-mockup__cert--expired {
  border-color: rgba(239, 68, 68, 0.4);
  background-color: rgba(239, 68, 68, 0.06);
}
.hero-mockup__cert--expiring {
  border-color: rgba(245, 158, 11, 0.4);
  background-color: rgba(245, 158, 11, 0.06);
}
.hero-mockup__cert--valid {
  border-color: rgba(34, 197, 94, 0.3);
}

.hero-mockup__cert-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-mockup__cert-meta {
  display: block;
  font-weight: 400;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.125rem;
}

.hero-mockup__cert-days {
  font-weight: 800;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
}

.hero-mockup__cert--expired .hero-mockup__cert-days {
  color: #f87171;
}
.hero-mockup__cert--expiring .hero-mockup__cert-days {
  color: #fbbf24;
}
.hero-mockup__cert--valid .hero-mockup__cert-days {
  color: #4ade80;
}

/* Mobile: hide the connected apps panel, show cert widget only */
.hero-mockup__panel--apps {
  display: none;
}

@media (min-width: 768px) {
  .hero-mockup__body {
    grid-template-columns: 1.4fr 1fr;
    gap: 1rem;
  }

  .hero-mockup__appbar {
    grid-column: 1 / -1;
  }

  .hero-mockup__panel--apps {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero-mockup {
    margin-top: 5rem;
  }
  .hero-mockup__body {
    padding: 1.5rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-600);
  background-color: var(--brand-50);
  border: 1px solid var(--brand-200);
  border-radius: 9999px;
}

.hero h1 {
  /* Let the browser balance line widths so we don't get a single-word
   * orphan ("breaks") on its own line. Supported in Chrome 114+,
   * Safari 17.5+, Firefox 121+ — older browsers fall back to default
   * wrapping (still readable, just less even). */
  text-wrap: balance;
}

.hero h1 span {
  color: var(--brand-600);
}

.hero__subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__actions .btn {
  width: 100%;
}

.hero__stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}

.hero__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-600);
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero__actions .btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }

  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Why OrgGuard Section ---------- */
.why-section {
  padding: var(--section-padding-y) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.why-column__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.why-column__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-column__icon--red {
  background-color: var(--red-100);
}

.why-column__icon--red svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--red-600);
}

.why-column__icon--green {
  background-color: var(--success-100);
}

.why-column__icon--green svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--success-600);
}

.why-column__title--red {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red-900);
}

.why-column__title--green {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--success-900);
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
}

.why-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item__icon--red {
  background-color: var(--red-50);
  color: var(--red-500);
}

.why-item__icon--green {
  background-color: var(--success-50);
  color: var(--success-600);
}

.why-item__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.why-item__title {
  font-weight: 600;
  color: var(--gray-900);
}

.why-item__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
  line-height: 1.7;
}

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

/* ---------- Impact Stats Bar ---------- */
.impact-bar {
  margin-top: 4rem;
  background-color: var(--brand-900);
  border-radius: 1rem;
  padding: 2rem;
}

.impact-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.impact-bar__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.impact-bar__label {
  font-size: 0.875rem;
  color: var(--brand-200);
  margin-top: 0.25rem;
}

.impact-bar__subtext {
  font-size: 0.75rem;
  color: var(--brand-300);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .impact-bar {
    padding: 3rem;
  }

  .impact-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .impact-bar__value {
    font-size: 1.875rem;
  }
}

/* ---------- Features Section ---------- */
.features-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---------- Pricing Section ---------- */
.pricing-section {
  padding: var(--section-padding-y) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 2rem;
}

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

/* ---------- Form rows (used on contact + waitlist pages) ---------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

/* ---------- How It Works ---------- */
.how-it-works {
  padding: var(--section-padding-y) 0;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: how-step;
}

.how-step {
  position: relative;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  counter-increment: how-step;
}

.how-step::before {
  content: counter(how-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--brand-600);
  color: #fff;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.how-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-900);
  margin-bottom: 0.5rem;
}

.how-step p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

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

/* ---------- Product Carousel ---------- */
.carousel-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--gray-50);
}

.carousel {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.carousel__track {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
}

.carousel__slide {
  grid-column: 1;
  grid-row: 1;
  visibility: hidden;
  opacity: 0;
  transition: opacity 250ms ease;
}

.carousel__slide--active {
  visibility: visible;
  opacity: 1;
}

.carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel__caption {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--gray-100);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-75%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.95);
  color: var(--gray-700);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.carousel__btn:hover {
  border-color: var(--brand-600);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel__btn--prev {
  left: -1.25rem;
}

.carousel__btn--next {
  right: -1.25rem;
}

@media (max-width: 768px) {
  .carousel__btn--prev {
    left: 0.5rem;
  }
  .carousel__btn--next {
    right: 0.5rem;
  }
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: var(--gray-300);
  cursor: pointer;
  padding: 0;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}

.carousel__dot--active {
  background: var(--brand-600);
  transform: scale(1.3);
}

/* ---------- The Gap OrgGuard Fills ---------- */
.gap-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--gray-50);
}

.gap-section__body {
  max-width: 42rem;
  margin: 2rem auto 0;
}

.gap-section__body p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.gap-section__points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gap-section__points li {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.gap-section__points li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--brand-600);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Roadmap Tease ---------- */
.roadmap-tease-section {
  padding: var(--section-padding-y) 0;
  background-color: #fff;
}

.roadmap-tease__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.roadmap-tease__item {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  background-color: var(--gray-50);
}

.roadmap-tease__item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-900);
  margin-bottom: 0.5rem;
}

.roadmap-tease__item p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.roadmap-tease__item a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-600);
  text-decoration: none;
}

.roadmap-tease__item a:hover {
  text-decoration: underline;
}

/* ---------- Founding Customer Callout ---------- */
.founding-section {
  padding: var(--section-padding-y) 0;
  background: linear-gradient(
    135deg,
    var(--brand-900) 0%,
    var(--brand-700) 100%
  );
  color: #fff;
  text-align: center;
}

.founding-section .badge--limited-time {
  position: static;
  transform: none;
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.founding-section h2 {
  color: #fff;
  font-size: 2rem;
}

.founding-section__price {
  margin-top: 2rem;
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.founding-section__price-period {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brand-200);
}

.founding-section__sub {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--brand-200);
}

.founding-section__lead {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--brand-200);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.founding-section__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.founding-section__cta .btn {
  width: 100%;
  max-width: 20rem;
}

@media (min-width: 640px) {
  .founding-section__cta {
    flex-direction: row;
    justify-content: center;
  }

  .founding-section__cta .btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  .founding-section h2 {
    font-size: 2.5rem;
  }

  .founding-section__price {
    font-size: 4.5rem;
  }
}

/* ---------- FAQ section (home + pricing) ---------- */
.faq-section {
  padding: var(--section-padding-y) 0;
}

/* ==========================================================================
   Auth Asset Network Diagram (Why section)
   Inline SVG, brand-colored nodes radiating from a central Salesforce hub.
   ========================================================================== */
.auth-network {
  max-width: 38rem;
  margin: 0 auto 3rem;
}

.auth-network__svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Connecting line base style */
.auth-network__line {
  fill: none;
  stroke: var(--brand-300);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 4 4;
  opacity: 0.55;
}

/* Lines connecting risk-flagged nodes carry the alert color */
.auth-network__line--alert {
  stroke: #ef4444;
  opacity: 0.65;
}

.auth-network__line--warn {
  stroke: #f59e0b;
  opacity: 0.65;
}

/* Central hub */
.auth-network__hub {
  fill: var(--brand-600);
  stroke: var(--brand-300);
  stroke-width: 2;
}

.auth-network__hub-label {
  fill: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-anchor: middle;
}

/* Outer asset nodes */
.auth-network__node {
  fill: #fff;
  stroke: var(--brand-300);
  stroke-width: 1.5;
}

.auth-network__node--alert {
  fill: #fef2f2;
  stroke: #ef4444;
  stroke-width: 2;
}

.auth-network__node--warn {
  fill: #fffbeb;
  stroke: #f59e0b;
  stroke-width: 2;
}

.auth-network__node-label {
  fill: var(--brand-900);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  text-anchor: middle;
}

/* Status badges on flagged nodes */
.auth-network__badge {
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 800;
  text-anchor: middle;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-network__badge--alert {
  fill: #ef4444;
}

.auth-network__badge--warn {
  fill: #b45309;
}

/* Subtle line pulse — gated behind prefers-reduced-motion for accessibility */
@media (prefers-reduced-motion: no-preference) {
  .auth-network__line {
    animation: auth-network-pulse 3s ease-in-out infinite;
  }
  .auth-network__line--alert {
    animation: auth-network-pulse-alert 1.8s ease-in-out infinite;
  }
  .auth-network__line--warn {
    animation: auth-network-pulse-warn 2.4s ease-in-out infinite;
  }

  @keyframes auth-network-pulse {
    0%,
    100% {
      opacity: 0.45;
    }
    50% {
      opacity: 0.75;
    }
  }
  @keyframes auth-network-pulse-alert {
    0%,
    100% {
      opacity: 0.55;
    }
    50% {
      opacity: 0.95;
    }
  }
  @keyframes auth-network-pulse-warn {
    0%,
    100% {
      opacity: 0.55;
    }
    50% {
      opacity: 0.95;
    }
  }
}
