.video-wrapper {
  position: relative;
  /* padding: 0px !important; */
  margin: auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
}

.video-wrapper>video {
  width: 100%;
  vertical-align: middle;
  border-radius: 10px;
}

.video-wrapper>video.has-media-controls-hidden::-webkit-media-controls {
  display: none;
}

.video-overlay-play-button {
  box-sizing: border-box;
  width: 100%;
  min-height: 100px;
  height: 100%;
  padding: 20%;
  /* padding: 10px calc(50% - 50px); */
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: 0.95;
  cursor: pointer;
  background-image: linear-gradient(transparent, #000);
  transition: opacity 150ms;
  border-radius: 10px;
}

.video-overlay-play-button:hover {
  opacity: 1;
}

.video-overlay-play-button.is-hidden {
  display: none;
}




.animated-text-cursor {
  display: inline-block;
  font-size: 1.3em;
  height: 1em;
  line-height: 1em;
  /* color: #333; */
  /* vertical-align: top; */
}


/* Blinking animation */
.animated-text-cursor.blink {
  animation: blink 0.8s infinite;
}

/* Blinking cursor effect */
@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}



.lightbulb-paragraph {
  display: grid;
  grid-template-columns: auto 1fr auto;
  text-align: center;
  align-items: center;
  background-color: rgba(185, 237, 213, 0.3);
  border-radius: 10px;
  padding: 10px;
}

.lightbulb-paragraph::before,
.lightbulb-paragraph::after {
  content: '💡';
  display: inline-block;
}

.lightbulb-paragraph::before {
  margin-right: 10px;
}

.lightbulb-paragraph::after {
  margin-left: 10px;
}

.client-logos img {
  max-width: 80px;
  height: auto;
  display: block;
}


/* CARDS */
/* CARDS */
/* CARDS */
/* CARDS */
/* CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 30px auto;
}

.card-container svg {
  padding: 10px 50px;
  width: 35px;
  fill: #33C481;
}

.card-container.fullwidth {
  margin-left: -30px;
  margin-right: -30px;
}

.card-container:has(.card.simple) {
  max-width: 1200px;
}

/* .card-container .card {
  align-content: center;
} */

.card.simple {
  flex: 1 0 0;
  max-width: 160px;
  background-color: white;
  border-radius: 30px;
  color: #555;
  padding: 20px;
  text-align: center;
}

.card.simple.stretch-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card.simple img {
  height: 50px;
  margin: 0 auto;
}

.card.simple.large {
  align-items: center;
  min-width: 240px;
  max-width: 290px;
}


/* CARDS PROFILE */
/* CARDS PROFILE */
/* CARDS PROFILE */
/* CARDS PROFILE */
/* CARDS PROFILE */

.card.profile {
  position: relative;
  background-color: #21A366;
  color: white;
  overflow: hidden;
  border-radius: 30px;
  width: 260px;
}


.card.profile .picture {
  background-color: #DDF5EB;
  position: absolute;
  top: 0;
  left: 40px;
  width: 110px;
  height: 170px;
  display: flex;
  justify-content: center;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  overflow: hidden;
  align-items: flex-end;
}

.card.profile .picture img {
  /* display: block; */
  max-width: none;
  width: 120%;
  height: auto;
  /* object-fit: cover;
  position: relative; */
  bottom: 0;
}

.card.profile .content {
  margin: 180px 30px 30px 40px;
  text-align: left;
}

.card.profile .content p {
  font-size: 0.9em;
}

.card.profile .content h3 {
  font-weight: 700;
  /* height: 70px;
  display: flex;
  align-items: center;
  align-items: flex-end; */
}

/* STRIKETHROUGH CARDS */
/* STRIKETHROUGH CARDS */
/* STRIKETHROUGH CARDS */
/* STRIKETHROUGH CARDS */
/* STRIKETHROUGH CARDS */
.card.strikethrough {
  position: relative;
  max-width: 140px;
  font-weight: bold;
}

.card.strikethrough::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: rgb(235, 0, 0);
  transform: rotate(-45deg);
  transform-origin: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(0);
  transition: transform 0.3s ease;
  transition-delay: 0.5s;
  z-index: 2;
}

.card.strikethrough.animate::before {
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
}

.card-container .card.strikethrough:nth-child(1)::before {
  transition-delay: 0.5s;
}

.card-container .card.strikethrough:nth-child(2)::before {
  transition-delay: 0.65s;
}

.card-container .card.strikethrough:nth-child(3)::before {
  transition-delay: 0.8s;
}

.card-container .card.strikethrough:nth-child(4)::before {
  transition-delay: 0.95s;
}

/* PARALLAX CARDS */
/* PARALLAX CARDS */
/* PARALLAX CARDS */
/* PARALLAX CARDS */
/* PARALLAX CARDS */


/* .value-proposition {
  padding: 10px;
  background-color: rgba(187, 187, 187, 0.166);
  margin: 100px auto;
} */

.card-container:has(.card.highlight) {
  flex-direction: column;
}

.card.highlight {
  position: relative;
  margin: 80px auto;
  align-items: center;
  justify-content: center;
}

.card.highlight h2 {
  /* margin: 10px auto; */
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  padding: 20px;
  background: linear-gradient(to right,
      black 40%,
      #21A366 45%,
      #21A366 55%,
      black 60%);
  background-size: 400% auto;
  background-position: var(--background-position, 0%) center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* font-weight: 500; */
}


.background-svg {
  position: absolute;
  width: 300px;
  /* Match viewBox */
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -51%);
  /* Center SVG */
  z-index: -1;
  pointer-events: none;
}


.draw-path {
  stroke: #aaa;
  /* Dark color for circuit look */
  stroke-width: 2.5;
  fill: none;
  /* stroke-dasharray and stroke-dashoffset will be set via JS */
}

circle {
  fill: #777;
}






#container {
  position: relative;
}

#trigger {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 1;
  justify-content: center;
  transition: all 0.5s ease-in, border 0.5s ease;
}

#trigger.window-opened:hover {
  transform: scale(1.00);
}

#trigger.window-opened {
  position: relative;
  background-color: #33C481;
  border: 1px solid white;
  transition: all 0.5s ease-in, border 0.0s ease;
  cursor: pointer;
}

#trigger .text-initial {
  color: #555;
  font-size: 18px;
  position: absolute;
  opacity: 1;
  transition: transform 0.5s ease-in, opacity 0.5s ease-in; 
  transform: translateY(0); 
}
#trigger .text-opened {
  font-size: 18px;
  position: absolute; 
  opacity: 0;
  transition: transform 0.5s ease-in, opacity 0.5s ease-in; 
}

#trigger.window-opened .text-initial {  
  transform: translateY(-300px) scale(1.2); 
  pointer-events: none;
}
#trigger.window-opened .text-opened {
  opacity:1;
}

#window {
  position: absolute;
  /* background-color: #33C481; */
  background-color: white;
  filter: brightness(1.15);
  border-radius: 30px;
  transition: all 0.5s ease-in;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.0);
  overflow: hidden;
  border: 1px solid #1D804F;
}


#window.window-opened {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 50px;
}

#window > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 80px 30px;
}
#window > div img {
  margin: 5px 0;
  box-shadow: 0px 0px 8px 5px rgba(0, 0, 0, 0.6);
}

#window > * {
  transition: opacity 0.5s ease-out;
  opacity: 0;
}

#window.window-opened > * {
  transition: opacity 0.5s ease-out;
  opacity: 1;
}



#btn_contact {

 position: relative;

}
.contact-text, .clipboard-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Base styles for contact text (email icon) */
.contact-text {
  opacity: 1;
  visibility: visible;
}

/* Base styles for clipboard message */
.clipboard-message {
  opacity: 0;
  visibility: hidden;
  color: #21A366;
  font-size: 14px !important;
}

#btn_contact.showing-copy-message .contact-text {
  animation: hideThenShow 2s forwards;
}

/* Animation for contact text: hide immediately, show after 3s */
@keyframes hideThenShow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  99.999% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

#btn_contact.showing-copy-message .clipboard-message {
  animation: showThenFade 2s forwards;
}
/* Animation for clipboard message: show for 2s, fade out over 1s */
@keyframes showThenFade {
  0% {
    opacity: 1;
    visibility: visible;
  }
  66.666% { /* 2s out of 3s */
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}




.fireworks {
  position: absolute;
  top: 0; /* Align to the top of the button */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust for horizontal centering */
  pointer-events: none; /* Ensures the container doesn’t interfere with button clicks */
  z-index: 10; /* Keeps it above other elements */
}


/* Particle styles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #21A366; /* You can change this to any color! */
  border-radius: 50%; /* Makes particles round, optional */
}

/* Fade-out animation */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1; /* Stay opaque for most of the duration */
  }
  100% {
    opacity: 0; /* Fade at the end */
  }
}
/* Explosion particles (colorful dots that stream outward) */
.firework-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--color);
  border-radius: 50%;
  animation: explode 1s forwards;
}

/* Explosion animation: particles move from start to end position and fade out */
@keyframes explode {
  0% {
    transform: translate(var(--startX), var(--startY));
    opacity: 1;
  }
  100% {
    transform: translate(var(--endX), var(--endY));
    opacity: 0;
  }
}









/* ORBITING CARDS */
/* ORBITING CARDS */
/* ORBITING CARDS */
/* ORBITING CARDS */
/* ORBITING CARDS */

.card-container:has(.orbit-center) {
  position: relative;
  margin: 0px auto;
  height: 500px;
  width: 500px;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card.orbiting {
  position: absolute;
  transform-origin: center;
  width: 240px;
  height: 120px;
  top: calc(50% - 60px);
  border-radius: 8px;
  background-color: #DDF5EB;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
  color: #222;
  font-weight: 500;

  animation: orbit 120s linear infinite;
}

.card.orbiting img {
  margin: 10px auto;
  box-sizing: border-box;
  height: 50px;
}

@keyframes orbit {
  from {
    transform: rotate(var(--angle)) translate(250px) rotate(var(--angle));
  }

  to {
    transform: rotate(calc(360deg + var(--angle))) translate(250px) rotate(calc(-360deg + var(--angle)));
  }
}

.card-container .card.orbiting:nth-child(2) {
  --angle: 0deg;
  rotate: var(--angle);
}

.card-container .card.orbiting:nth-child(3) {
  --angle: 120deg;
  rotate: var(--angle);
}

.card-container .card.orbiting:nth-child(4) {
  --angle: 240deg;
  rotate: var(--angle);
}


/* SHOWCASE CARDS */
/* SHOWCASE CARDS */
/* SHOWCASE CARDS */
/* SHOWCASE CARDS */
/* SHOWCASE CARDS */
.card-container .card.showcase {
  border: 1px solid #333;
  border-radius: 50px;
  padding: 40px;
  width: 300px;
  height: 380px;
  cursor: pointer;

  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card-container .card.showcase:hover {
  transform: scale(1.01) translateY(-5px);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
}

.card-container .card.showcase img.title {
  position: relative;
  margin-bottom: 30px;
  display: block;
  height: 35px;
}

.card-container .card.showcase img.screenshot {
  position: absolute;
  margin-top: 30px;
  margin-left: 40px;
  min-width: 380px;
}

.card-container .card.showcase p {
  text-align: left;
  padding-left: 20px;
  /* font-size: 0.95em; */
  line-height: 1.3em;
}

/* COUNTER CARDS */
/* COUNTER CARDS */
/* COUNTER CARDS */
/* COUNTER CARDS */
/* COUNTER CARDS */
.card-container:has(.card.counter) {
  row-gap: 100px;

}

.card-container .card.counter {
  width: 220px;
  height: 300px;
  gap: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.card-container .card.counter img {
  align-self: center;
}

.card-container .card.counter p {
  height: 100px;
  margin: 0;
}


.card-container .card.counter> :first-child {
  font-size: 70px;
  font-weight: 200;
  line-height: 1;
}

/* PRICING PLAN CARDS */
/* PRICING PLAN CARDS */
/* PRICING PLAN CARDS */
/* PRICING PLAN CARDS */
/* PRICING PLAN CARDS */

.card-container .card.pricing {
  border: 1px solid #333;
  border-radius: 50px;
  padding: 40px;
  width: 230px;
}

.card-container .card.pricing h3 {
  font-weight: 700;
  text-align: left;
  margin: 0;
}

.card-container .card.pricing div.price {
  font-size: 40px;
  font-weight: 700;
  position: relative;
  text-align: left;
}

.card-container .card.pricing div.price::before {
  content: "$";
  font-weight: 200;
}

.card-container .card.pricing div.price::after {
  content: "/month";
  font-weight: 200;
  font-size: 0.5em;
  vertical-align: baseline;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.card-container .card.pricing button {
  margin: 20px 0px;
}

.card-container .card.pricing p {
  height: 100px;
  text-align: left;
  line-height: 1.3em;
}

.card-container .card.pricing .heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}


.card-container .card.pricing .heading .planpie {
  margin: -8px;
}

.card-container .card.pricing ul {
  list-style-type: none;
  padding: 0;
}

.card-container .card.pricing ul li {
  padding: 0 30px 0 0;
  margin: 15px 0;
  text-align: left;
  position: relative;
  line-height: 1.5;
}

.card-container .card.pricing ul li:first-child {
  font-weight: bold;
}

.card.pricing ul li[tooltip]::after {
  content: 'i';
  font-family: 'Times New Roman', Times, serif;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-style: italic;
  font-size: 16px;
  line-height: 16px;
  color: #666;
  cursor: help;
  width: 16px;
  height: 16px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #666;
}

.card.pricing ul li[tooltip]:hover {
  background-color: #00000014;
  border-radius: 5px;
  box-shadow: 0 0 0 5px #00000014;
}

.card.pricing ul li[tooltip]:hover::before {
  content: attr(tooltip);
  position: absolute;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  right: -5px;
  bottom: 100%;
  transform: translateY(-10px);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  visibility: hidden;
  max-width: 300px;
  word-wrap: break-word;
}

.card.pricing ul li[tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
}



/* PLANPIE */
/* PLANPIE */
/* PLANPIE */
/* PLANPIE */
/* PLANPIE */
/* PLANPIE */
.planpie {
  display: inline-block;
  width: 45px;
  height: 45px;
  border: 1px solid #333;
  --piecolor: #A3F5D0;
  border-radius: 50%;
  position: relative;
}

.planpie::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
}

.planpie.eighth::before {
  background: conic-gradient(var(--piecolor) 0deg 45deg,
      transparent 45deg 360deg);
}

.planpie.quarter::before {
  background: conic-gradient(var(--piecolor) 0deg 90deg,
      transparent 90deg 360deg);
}

.planpie.one-third::before {
  background: conic-gradient(var(--piecolor) 0deg 120deg,
      transparent 120deg 360deg);
}

.planpie.half::before {
  background: conic-gradient(var(--piecolor) 0deg 180deg,
      transparent 180deg 360deg);
}

.planpie.five-eighths::before {
  background: conic-gradient(var(--piecolor) 0deg 225deg,
      transparent 225deg 360deg);
}

.planpie.two-thirds::before {
  background: conic-gradient(var(--piecolor) 0deg 240deg,
      transparent 240deg 360deg);
}

.planpie.three-quarters::before {
  background: conic-gradient(var(--piecolor) 0deg 270deg,
      transparent 270deg 360deg);
}

.planpie.full::before {
  background: conic-gradient(var(--piecolor) 0deg 360deg);
}




/* old */
/* old */
/* old */
/* old */
/* old */
.card .member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  /* Add shadow with color from palette */

  box-shadow:
    6px 6px 0px #804F1D,
    /* Darker, sharper shadow for depth */
    12px 12px 0px #A36621;
  /* Lighter, wider shadow for retro look */
}


/* Scoping the title and blurb styles to within .team-member */
.card .title {
  color: #2B0947;
  font-style: italic;
  margin: 5px 0;
}

.card .blurb {
  color: #241604;
  font-size: 0.9em;
}

/* Media query for smaller screens */
/* @media (max-width: 768px) {
  .card {
    width: 100%;
  }
} */





.input-verb::before {
  content: "Click";
}

@media (pointer: coarse) {
  .input-verb::before {
    content: "Tap";
  }
}

@media (pointer: fine) {
  .input-verb::before {
    content: "Click";
  }
}