@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

body {
  display: flex;
  height: 100vh;
  background: #f9f5f3;
  flex-direction: column;
  max-width: 1440px;
  margin: 0 auto;
}

.container{
  display: flex;
  overflow: visible;
  gap: 48px;
  align-items: flex-start;
  justify-self: center;
  max-width: 100%;
  padding: 80px;
}

.card{
  border-radius: 32px;
  box-sizing: border-box;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.configure,
.includes{
    flex: 1;
  min-width: 0; /* important */
  max-width: 100%;
}


/************************************************* CARD DEFAULT **/
.card {
  position: relative;
  background-color: #000;
  border-radius: 32px;
  padding: 48px;
  background-size: cover, cover, 100% 100%;
  background-position: 0px 0px;
  background-color: white;
  transition: box-shadow .4s ease-out;
}

/************************************************* CARD PSEUDO **/
.card::before,
.card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
}

.card::before {
  background-image: conic-gradient(from var(--gradient-angle) at 50% 50%, #FF3F00 0%, #F1BD9DFF 24%, #FF3F00 53%, #ffc6a9 76%, #FF3F00 100%);
  animation: rotation 10s linear infinite;
}

/** AFTER GLOW **/
.card::after {
  border-radius: inherit;
  filter: blur(8px);
  opacity: 0.2;
  transition: filter .8s ease-out;
  background-image: conic-gradient(from var(--gradient-angle) at 50% 50%, #FF3F00 0%, #F1BD9DFF 24%, #FF3F00 53%, #FF9965FF 76%, #FF3F00 100%);
  animation: rotation 5s linear infinite;
}

.card:before::after{
  animation: rotation 1s linear infinite;
}


.card.is-regular{
  border: 1px solid #EADDD5;
}

.card.is-regular::after{
  display: none;
}

/************************************************* ANIMATIONS **/
@keyframes rotation {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}





/***
************** BUTTON STYLES
**/


@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Pathway+Extreme:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap");



a {
  position: relative;
  display: inline-flex;
  padding: var(--size-12, 12px) var(--size-24, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--size-12, 12px);
  background-color: black;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Pathway Extreme", sans-serif;
}

.style-10 {
  position: relative;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
}

.style-10:hover {
  border: 1px solid #ff7b00;
  box-shadow: inset 0 0 4px 0 #f8740091;
}

.style-10::before {
  content: "";
  position: absolute;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 63, 0, 1), rgba(255, 63, 0, 0));
  opacity: 0;
  filter: blur(4px);
  transition: left 0.4s cubic-bezier(0.86, 0.45, 0.25, 1),
    opacity 0.2s cubic-bezier(0.86, 0.45, 0.25, 1);
}

.style-10:hover::before {
  left: 70%;
  background: linear-gradient(90deg, rgba(255, 63, 0, 0), rgba(255, 63, 0, 1));
  filter: blur(0);
  opacity: 1;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: left 0.2s cubic-bezier(0, 0.62, 0.25, 1),
    opacity 0.4s cubic-bezier(0, 0.62, 0.25, 1);
}

.style-10::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgb(255 232 224 / 0%) 25%,
    rgba(255, 63, 0, 1) 50%,
    rgb(255 232 224 / 0%) 75%
  );
  background-size: 200% 100%;
  background-position: 100% 0%;
  left: -3px;
  top: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 8px;
  filter: blur(0);
  transition: left 0.1s cubic-bezier(0, 0.62, 0.25, 1),
    right 0.1s cubic-bezier(0, 0.62, 0.25, 1),
    top 0.1s cubic-bezier(0, 0.62, 0.25, 1),
    bottom 0.1s cubic-bezier(0, 0.62, 0.25, 1),
    filter 0.1s cubic-bezier(0, 0.62, 0.25, 1),
    background-position 0.4s cubic-bezier(0, 0.62, 0.25, 1);
  animation: ltr 4s linear infinite;
  animation-delay: 0.2s;
}

.style-10:hover::after {
  filter: blur(2px);
  left: -4px;
  top: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(
    90deg,
    rgb(255 232 224 / 0%) 25%,
    rgba(255, 63, 0, 1) 50%,
    rgb(255 232 224 / 0%) 100%
  );
  background-size: 200% 100%;
  animation: none;
}

.style-10 span {
  position: relative;
  z-index: 0;
}

@keyframes ltr {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes rotation {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}







/*****

PROTOTYPE SWITCHER ****/

.compare-switch {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  font-family: system-ui, sans-serif;
}

.switch {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  cursor: pointer;
}

.switch input {
  display: none;
}

.slider {
  width: 36px;
  height: 20px;
  background: #ccc;
  border-radius: 999px;
  position: relative;
  transition: background .2s ease;
}

.slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform .2s ease;
}

input:checked + .slider {
  background: #4f46e5;
}

input:checked + .slider::before {
  transform: translateX(16px);
}

.label {
  font-size: 14px;
  user-select: none;
}