.nav .material-symbols-outlined {
  font-size: 20px;
}

.nav {
  padding: 0 32px;
}

.nav nav {
  max-width: 1200px;
  margin: 0 auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul li {
  display: inline-block;
  list-style: none;
  padding: 8px 16px;
}

nav ul li a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: all 0.4s;
  height: 30px;
  cursor: pointer;
  width: fit-content;
  align-items: center;
}

nav ul li a #active-link {
  font-weight: 600;
}

nav ul li a span {
  margin-right: 4px;
}

nav ul li a:hover,
.privacy-and-terms a:hover {
  opacity: 0.7;
}

nav ul li a .nav-icons {
  font-size: 16px;
  transform: translateY(3px);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav {
  overflow: hidden;
  top: 0;
  width: 100%;
  z-index: 994;
  position: fixed;
  background: transparent;
  opacity: 1;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.2s ease;
  user-select: none;
}

.nav.scrolled {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-background);
  color: var(--color-text);
}

.nav ul li a {
  color: var(--color-white);
}

.nav.scrolled #side-menu.active ul li a {
  color: var(--color-white);
}

.nav.scrolled .burger div {
  background-color: var(--color-text);
}

.search-icon {
  font-size: 18px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
}

.brand img {
  width: 100%;
}

.brand-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

#active-link {
  color: var(--color-primary);
  font-weight: 600;
  opacity: 1;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

.hero-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: flex-start;
}

.hero-container {
  max-width: 800px;
}

.hero-headline {
  overflow: hidden;
  color: var(--color-white);
}

.hero-description {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.4s;
  color: #888;
}

.hero-container h1 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.2s;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#side-menu li #nav-button {
  color: var(--color-white);
  opacity: 1;
}

.blurred-background {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.blurred-background.active {
  transform: translateX(0);
}

#side-menu ul li a {
  display: block;
  text-decoration: none;
  padding: 1rem;
  transition: background 0.3s;
}

#side-menu.active ul li a {
  width: 100%;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger:hover {
  opacity: 0.7;
  transition: 0.2s;
}

.burger div {
  width: 18px;
  height: 2px;
  background-color: var(--color-white);
  margin: 4px 0px;
}

.copyright,
.footer-logo {
  display: flex;
  align-items: center;
}

.footer-section {
  position: relative;
  border-top: 1px solid var(--color-faded);
  background-color: var(--color-background);
}

.footer-logo {
  justify-content: start;
}

.footer-section .brand-container {
  justify-content: flex-start;
  padding: 0px;
}

#light-mode {
  display: none;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: var(--space-2xl) 0;
  gap: var(--space-md);
  min-height: calc(100vh - 160px);
}

.footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .col p {
  max-width: 400px;
}

.footer a {
  color: var(--color-muted);
  font-size: 16px;
}

.footer button span {
  font-size: 12px;
}

.footer-head {
  margin-bottom: 0;
  font-size: 16px;
}

.footer a:hover,
.copyright a:hover {
  color: var(--color-button-text);
  opacity: 1;
  transition: 0.2s;
}

.footer-button {
  width: 144px;
  white-space: no-wrap;
  border: 1px solid var(--color-border);
}

.col {
  gap: var(--space-sm);
  min-width: 200px;
}

.icon a img {
  margin: 8px 8px 8px 0px;
  height: 18px;
  width: 18px;
}

.copyright p,
.copyright div a {
  font-size: 12px;
  color: var(--color-text);
}

.copyright {
  justify-content: space-between;
  padding: var(--space-xxs) 0;
}

.copyright .legals {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.drop-response {
  margin: 0;
  width: 172px;
  position: absolute;
}

.drop-response input {
  width: 100%;
  border-top: 1px solid var(--color-primary);
}

.popup-menu,
.player .popup-menu-volume {
  display: none;
  position: absolute;
  backdrop-filter: blur(128px);
  background-color: var(--color-background);
  animation: slide-up 0.4s ease-in-out;
  padding: 4px 0px;
  font-size: 16px;
  z-index: 1000;
  border-radius: var(--card-border-radius-small);
  box-shadow: var(--box-shadow);
}

.popup-menu {
  padding: 8px;
  width: 144px;
}

.popup-menu .menu-item {
  width: 100%;
}

.popup-menu .flip-animation {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.menu-item {
  cursor: pointer;
  width: 172px;
  border-radius: var(--card-border-radius-small);
  transition: 0.4s ease-out;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  user-select: none;
}

.menu-item:hover {
  background: var(--color-button);
  font-weight: 800;
}

.menu-item span {
  color: var(--color-muted);
  font-size: 12px;
}

.footer .menu-item {
  padding-left: 2rem;
}

.drop-response input {
  background: var(--color-button);
  color: var(--color-button-text);
  border: none;
}

.drop-response input:hover {
  background: var(--color-button-hover);
}

@keyframes slide-up {
  from {
    transform: translateY(4px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#label {
  padding: 24px;
  background-color: var(--color-light);
  border-top: 2px solid var(--color-primary);
  margin: 0 0 0 24px;
  display: flex;
  justify-content: start;
  height: fit-content;
  flex-direction: column;
}

#label a {
  margin-top: 8px;
}

.checkbox {
  opacity: 0;
  position: absolute;
}

.label span {
  font-size: 18px;
  color: var(--color-button-alt);
  padding: 4px;
}

.label #dark-switch,
.label #light-switch {
  padding: 4px;
}

.label {
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  width: 64px;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.label:hover > .ball {
  transform: scale(1.05);
}

.checkbox + .label span:nth-child(1) {
  box-shadow: 0 2px 4px var(--color-primary);
  background-color: var(--color-background-alt);
  border-radius: 50px;
  margin-right: 2px;
}

.checkbox:checked + .label span:nth-child(2) {
  box-shadow: 0 2px 4px var(--color-primary);
}

.checkbox:checked + .label span:nth-child(1) {
  box-shadow: none;
}

.checkbox:checked + .label #dark-switch {
  background-color: var(--color-alt);
}

.checkbox:checked + .label span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transform: rotate(360deg);
  transition: 0.4s;
}

.alert-popup {
  position: fixed;
  bottom: -100%;
  left: 20px;
  transform: translateY(100%);
  box-shadow: var(--box-shadow);
  padding: 16px;
  opacity: 0;
  transition:
    bottom 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
  display: flex;
  align-items: center;
  width: auto;
  z-index: -999;
  border-left: 2px solid transparent;
}

.alert-popup.active {
  z-index: 10001;
  bottom: 7%;
  opacity: 1;
  transform: translateY(0);
}

.alert-popup.error {
  border-left: 2px solid #cc0000;
  background-color: var(--color-error-background);
  color: var(--color-error-text);
}

.alert-popup.info {
  border-left: 2px solid #7b7de7;
  background-color: var(--color-info-background);
  color: var(--color-info-text);
}

.alert-popup.success {
  border-left: 2px solid var(--color-primary);
  background-color: var(--color-success-background);
  color: var(--color-success-text);
}

.alert-close-button {
  margin-left: 12px;
  cursor: pointer;
  font-size: 18px;
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(4px);
  }
}

.flex-wrapper .row {
  flex: 50%;
}

.flex-wrapper .row img {
  width: 100%;
}

.flex-wrapper,
.flex-wrapper-alt {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.flex-wrapper .col,
.flex-wrapper-alt .col {
  flex: 50;
  align-items: center;
}

.flex-wrapper .row:first-child {
  padding-right: 24px;
}

.flex-wrapper-alt .row:last-child {
  padding-left: 24px;
}

.flex-wrapper .col img,
.flex-wrapper-alt .col img,
.flex-wrapper img,
.flex-wrapper-alt img {
  width: 100%;
}

.flex-container .left {
  flex: 70%;
}

.flex-container #label {
  flex: 30%;
}

.observe-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

.observe-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.bg-light {
  background-color: var(--color-bg-offset);
}

.font-size-18 {
  font-size: 18px;
}

@media only screen and (max-width: 1024px) {
  .blurred-background {
    background: rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding-top: 36px;
    display: flex;
  }

  nav ul li {
    padding: 12px;
  }

  #label {
    margin: 0;
  }

  .nav {
    padding: 0 32px;
  }

  .flex-container,
  .flex-wrapper {
    flex-direction: column;
    align-items: self-start;
    min-height: auto;
  }

  .flex-wrapper-alt {
    flex-direction: column-reverse;
  }

  .flex-wrapper .row:first-child {
    padding-right: 0px;
  }

  .flex-wrapper-alt .row:last-child {
    padding-left: 0px;
  }

  .flex-wrapper .row {
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .nav.scrolled ul li a {
    color: var(--color-text);
  }

  #side-menu {
    display: flex !important;
    flex-direction: row;
    position: relative;
    width: auto;
    height: auto;
    padding: 0;
  }

  #side-menu ul {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
  }

  #side-menu ul li {
    margin-top: 0;
    padding: 8px 16px;
  }

  html.is-locked {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  #active-link {
    color: var(--color-alt);
  }

  nav ul {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    z-index: 9999;
    display: flex;
    padding: 56px 64px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  nav ul.active {
    transform: translateX(0);
  }

  .nav nav img {
    z-index: 999;
  }

  nav ul li {
    display: block;
    padding: 0px;
    margin-top: 40px;
  }

  nav ul li a {
    color: var(--color-white);
  }

  .burger {
    top: 40px;
    left: 50px;
    display: block;
    z-index: 99999;
  }

  .burger .line1.active {
    transform: rotate(-45deg) translate(-4px, 4px);
    transition: 0.5s;
    background-color: var(--color-white) !important;
  }

  .burger .line2.active {
    width: 0;
    transition: 0.2s ease;
  }

  .burger .line3.active {
    transform: rotate(45deg) translate(-4px, -4px);
    transition: 0.5s;
    background-color: var(--color-white) !important;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .nav {
    padding: 0 20px;
  }
}

.cta-content {
  max-width: 900px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-title {
  margin-bottom: var(--space-sm);
}

.cta-subtitle {
  max-width: 520px;
  margin-bottom: var(--space-xl);
}

.link {
  color: var(--color-text);
  transition: 0.2s ease;
}

.link:hover {
  color: var(--color-primary);
}

.floating-field {
  position: relative;
  width: 100%;
  font-family: var(--font-primary);
}

.floating-field input,
.floating-field textarea {
  width: 100%;
  min-height: 60px;
  padding: calc((60px - var(--font-size-md)) / 2) var(--space-md);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: transparent;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  outline: none;
  resize: none;
  transition: all var(--transition-fast) ease;
}

.floating-field[data-variant="filled"] input,
.floating-field[data-variant="filled"] textarea {
  background: var(--color-input);
  border-color: transparent;
}

.floating-field input:focus,
.floating-field textarea:focus {
  border-color: var(--color-primary);
}

.floating-field label {
  position: absolute;
  top: calc((70px - var(--font-size-md)) / 2);
  left: var(--space-md);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
  pointer-events: none;
  opacity: 0.85;
  transition:
    top 0.25s ease,
    font-size 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

.floating-field.is-active label {
  top: 8px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  opacity: 1;
}

.floating-field input::placeholder,
.floating-field textarea::placeholder {
  color: transparent;
}

.floating-dropdown .select-dropdown-trigger {
  width: 100%;
  min-height: 60px;
  padding: calc((60px - var(--font-size-md)) / 2) var(--space-md);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  background: transparent;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-fast) ease;
}

.floating-dropdown .select-dropdown-trigger::after {
  content: "▾";
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: var(--color-text-muted);
}

.floating-dropdown.is-active .select-dropdown-trigger {
  border-color: var(--color-border);
}

.floating-dropdown.is-open .select-dropdown-trigger {
  border-color: var(--color-primary);
}

.floating-dropdown {
  margin-top: 8px;
}

.floating-dropdown .select-dropdown-trigger {
  display: flex;
  align-items: center;
}

.select-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xs) 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
  z-index: var(--z-popover);
  max-height: 260px;
  overflow-y: auto;
}

.floating-dropdown.is-open .select-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.select-dropdown-menu li {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
  cursor: pointer;
  color: var(--color-text);
  transition: background var(--transition-fast);
  outline: none;
}

.select-dropdown-menu li:hover {
  background: var(--color-bg-offset);
}

.select-dropdown-menu li.is-selected {
  font-weight: var(--font-weight-semibold);
  background: var(--color-bg-offset);
}

.select-dropdown-trigger:focus {
  outline: none;
}

.select-dropdown-trigger:focus-visible {
  box-shadow: var(--focus-ring);
  background: var(--focus-bg);
}

.select-dropdown-menu li:focus-visible {
  box-shadow: inset 0 0 0 1px var(--color-primary);
}

.select-dropdown-trigger:focus:not(:focus-visible) {
  box-shadow: none;
  background: transparent;
}

.floating-dropdown.is-open .select-dropdown-trigger,
.floating-dropdown.is-active .select-dropdown-trigger {
  background: transparent;
}

.select-dropdown-menu li:focus:not(:focus-visible):not(.is-selected) {
  box-shadow: none;
  background: inherit;
}

.select-dropdown-menu li:hover,
.select-dropdown-menu li:focus-visible {
  background: var(--color-bg-offset);
}

.modal-shell .floating-field label {
  top: calc((78px - var(--font-size-md)) / 2);
}

.modal-shell .floating-field.is-active label {
  top: 16px;
}

.modal-shell .floating-dropdown label {
  top: calc((56px - var(--font-size-md)) / 2);
}

.modal-shell .floating-dropdown.is-active label {
  top: 8px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-shell {
  background: var(--color-surface-card);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-xl);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.25s ease;
  font-family: var(--font-primary);
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
  max-width: calc(100vw - 64px);
}

.modal-sm {
  width: min(92vw, 420px);
}

.modal-md {
  width: min(92vw, 520px);
}

.modal-lg {
  width: min(94vw, 720px);
}

.modal-xl {
  width: min(96vw, 920px);
}

.modal-overlay.is-open .modal-shell {
  transform: translateY(0);
  opacity: 1;
}

.modal-overlay.is-closing .modal-shell {
  transform: translateY(-12px);
  opacity: 0;
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  z-index: 10001;
}

.modal-close:hover {
  color: var(--color-text);
}

.modal-shell h3 {
  margin: 0;
}

.modal-shell p {
  margin: 8px 0;
}

.contact-success {
  display: none;
  padding: 2rem;
  animation: fadeIn 0.4s ease forwards;
}

.contact-success.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-content {
  display: block;
}

.form-content.hidden {
  display: none;
}

.contact-success .success-icon {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 1rem;
  display: inline-block;
  transform: rotateY(90deg);
  animation: tickFlip 0.6s forwards;
  animation-delay: 0.2s;
}

.contact-success h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-success p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

@keyframes tickFlip {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  50% {
    transform: rotateY(-20deg);
    opacity: 1;
  }
  100% {
    transform: rotateY(0deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.floating-field {
  position: relative;
  height: fit-content;
}

.floating-field.has-error input,
.floating-field.has-error textarea,
.floating-field.has-error button {
  border-color: var(--color-error);
}

.field-error {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-error);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  z-index: 20;
  animation: errorSlideDown 0.2s ease;
  box-shadow: var(--shadow-lg);
}

.field-error::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 12px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent var(--color-error) transparent;
}

@keyframes errorSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

*:focus {
  outline: none;
}

@media only screen and (max-width: 1024px) {
  .modal-shell {
    max-width: calc(100vw - 64px);
  }
}

@media (max-width: 768px) {
  .modal-shell {
    max-width: calc(100vw - 40px);
  }
}

@media (max-width: 640px) {
  .modal-shell {
    width: 100%;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
  }
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) var(--space-lg);
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg));
}

.cta-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: var(--space-xxl);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.cta-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  overflow: visible;
}

.cta-ray {
  position: absolute;
  top: 50%;
  right: -40%;
  transform: translateY(-50%);
  border-radius: 50%;
  aspect-ratio: 1;
}

.ray-1 {
  width: 220px;
  background: radial-gradient(
    circle at 30% 50%,
    var(--cta-ray-strong),
    transparent 70%
  );
}

.ray-2 {
  width: 360px;
  background: radial-gradient(
    circle at 30% 50%,
    var(--cta-ray-medium),
    transparent 72%
  );
}

.ray-3 {
  width: 520px;
  background: radial-gradient(
    circle at 30% 50%,
    var(--cta-ray-soft),
    transparent 74%
  );
}

.ray-4 {
  width: 720px;
  background: radial-gradient(
    circle at 30% 50%,
    var(--cta-ray-faint),
    transparent 76%
  );
}

.observe .observe-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

.observe.is-visible .observe-item {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .cta-visual {
    right: -260px;
  }
}
