
/* =========================================
   META108 REGISTER & LOGIN CTA SECTION
========================================= */

.cta-meta108 {
  --cta-navy-950: #020817;
  --cta-navy-900: #051229;
  --cta-navy-850: #071a36;
  --cta-navy-800: #092247;
  --cta-blue-700: #0665db;
  --cta-blue-600: #087ff5;
  --cta-blue-500: #1b9cff;
  --cta-blue-400: #55b8ff;
  --cta-blue-300: #94d4ff;
  --cta-white: #ffffff;
  --cta-text: #dcecff;
  --cta-muted: #91a9c8;
  --cta-border: rgba(103, 187, 255, 0.18);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 105px 20px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(8, 127, 245, 0.19),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      var(--cta-navy-950) 0%,
      var(--cta-navy-900) 52%,
      #030d1e 100%
    );
  color: var(--cta-white);
}

.cta-meta108 *,
.cta-meta108 *::before,
.cta-meta108 *::after {
  box-sizing: border-box;
}

.cta-meta108__container {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  margin: 0 auto;
}

/* Background Glow */
.cta-meta108__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.cta-meta108__glow--left {
  top: 12%;
  left: -220px;
  width: 500px;
  height: 500px;
  background: rgba(6, 101, 219, 0.13);
}

.cta-meta108__glow--right {
  right: -220px;
  bottom: -70px;
  width: 530px;
  height: 530px;
  background: rgba(27, 156, 255, 0.11);
}

/* Main Panel */
.cta-meta108__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(370px, 0.9fr);
  gap: 55px;
  align-items: center;
  overflow: hidden;
  padding: 58px;
  border: 1px solid rgba(85, 184, 255, 0.3);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(27, 156, 255, 0.18),
      transparent 31%
    ),
    linear-gradient(
      135deg,
      rgba(9, 52, 102, 0.97),
      rgba(4, 17, 38, 0.99)
    );
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.38),
    0 0 55px rgba(8, 127, 245, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.cta-meta108__panel::before {
  position: absolute;
  top: -130px;
  right: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(85, 184, 255, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.cta-meta108__panel::after {
  position: absolute;
  right: 55px;
  bottom: 0;
  left: 55px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(85, 184, 255, 0.6),
    transparent
  );
  content: "";
}

.cta-meta108__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(85, 184, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(85, 184, 255, 0.035) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.2),
    transparent 70%
  );
  pointer-events: none;
}

/* Content */
.cta-meta108__content {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.cta-meta108__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 9px 15px;
  border: 1px solid rgba(85, 184, 255, 0.27);
  border-radius: 999px;
  background: rgba(8, 127, 245, 0.09);
  color: var(--cta-blue-300);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cta-meta108__eyebrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-meta108__content h2 {
  max-width: 650px;
  margin: 0;
  color: var(--cta-white);
  font-size: clamp(39px, 5vw, 64px);
  font-weight: 850;
  line-height: 1.07;
  letter-spacing: -0.05em;
}

.cta-meta108__content h2 span {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--cta-blue-300),
    var(--cta-blue-500)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-meta108__content > p {
  max-width: 660px;
  margin: 23px 0 0;
  color: var(--cta-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* Benefits */
.cta-meta108__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.cta-meta108__benefits li {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(103, 187, 255, 0.13);
  border-radius: 14px;
  background: rgba(3, 15, 34, 0.33);
}

.cta-meta108__benefit-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.21);
  border-radius: 10px;
  background: rgba(27, 156, 255, 0.08);
  color: var(--cta-blue-400);
}

.cta-meta108__benefit-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-meta108__benefits strong,
.cta-meta108__benefits span {
  display: block;
}

.cta-meta108__benefits strong {
  margin-bottom: 4px;
  color: var(--cta-white);
  font-size: 11px;
  line-height: 1.35;
}

.cta-meta108__benefits div span {
  color: var(--cta-muted);
  font-size: 9px;
  line-height: 1.45;
}

/* CTA Actions */
.cta-meta108__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 27px;
}

.cta-meta108__button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 71px;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  padding: 13px 16px;
  border-radius: 17px;
  text-decoration: none;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background-color 0.32s ease,
    box-shadow 0.32s ease;
}

.cta-meta108__button::before {
  position: absolute;
  top: -70%;
  left: -35%;
  width: 35%;
  height: 240%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  content: "";
  transform: rotate(22deg);
  transition: left 0.55s ease;
}

.cta-meta108__button:hover::before {
  left: 125%;
}

.cta-meta108__button--register {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    135deg,
    var(--cta-blue-500),
    var(--cta-blue-700)
  );
  color: var(--cta-white);
  box-shadow:
    0 16px 34px rgba(6, 101, 219, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.cta-meta108__button--login {
  border: 1px solid rgba(85, 184, 255, 0.3);
  background: rgba(8, 127, 245, 0.08);
  color: var(--cta-blue-300);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-meta108__button-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
}

.cta-meta108__button--register .cta-meta108__button-icon {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.cta-meta108__button--login .cta-meta108__button-icon {
  border: 1px solid rgba(85, 184, 255, 0.22);
  background: rgba(27, 156, 255, 0.08);
}

.cta-meta108__button-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-meta108__button-text {
  position: relative;
  z-index: 2;
  display: block;
  min-width: 0;
  flex: 1;
}

.cta-meta108__button-text small,
.cta-meta108__button-text strong {
  display: block;
}

.cta-meta108__button-text small {
  margin-bottom: 5px;
  color: inherit;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
  opacity: 0.74;
  text-transform: uppercase;
}

.cta-meta108__button-text strong {
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
}

.cta-meta108__button-arrow {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.cta-meta108__button:hover {
  transform: translateY(-4px);
}

.cta-meta108__button:hover .cta-meta108__button-arrow {
  transform: translateX(4px);
}

.cta-meta108__button--register:hover {
  box-shadow:
    0 21px 43px rgba(6, 101, 219, 0.47),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.cta-meta108__button--login:hover {
  border-color: rgba(85, 184, 255, 0.55);
  background: rgba(8, 127, 245, 0.16);
  color: var(--cta-white);
}

/* Security Note */
.cta-meta108__security-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--cta-muted);
}

.cta-meta108__security-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: var(--cta-blue-400);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-meta108__security-note p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}

/* Visual */
.cta-meta108__visual {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: center;
}

.cta-meta108__visual::before {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(8, 127, 245, 0.14);
  content: "";
  filter: blur(30px);
}

.cta-meta108__visual-orbit {
  position: absolute;
  border: 1px solid rgba(85, 184, 255, 0.13);
  border-radius: 50%;
}

.cta-meta108__visual-orbit--one {
  width: 410px;
  height: 410px;
}

.cta-meta108__visual-orbit--two {
  width: 315px;
  height: 315px;
  border-style: dashed;
}

/* Account Card */
.cta-meta108__account-card {
  position: relative;
  z-index: 3;
  width: min(100%, 355px);
  overflow: hidden;
  border: 1px solid rgba(85, 184, 255, 0.32);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at top right,
      rgba(27, 156, 255, 0.17),
      transparent 34%
    ),
    linear-gradient(
      150deg,
      rgba(10, 44, 86, 0.98),
      rgba(3, 15, 34, 0.99)
    );
  box-shadow:
    0 35px 75px rgba(0, 0, 0, 0.42),
    0 0 45px rgba(8, 127, 245, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-meta108__account-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px;
  border-bottom: 1px solid rgba(103, 187, 255, 0.13);
}

.cta-meta108__brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.cta-meta108__brand > span {
  display: inline-flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    var(--cta-blue-500),
    var(--cta-blue-700)
  );
  color: var(--cta-white);
  font-size: 17px;
  font-weight: 900;
  box-shadow:
    0 10px 24px rgba(6, 101, 219, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-meta108__brand strong,
.cta-meta108__brand small {
  display: block;
}

.cta-meta108__brand strong {
  margin-bottom: 3px;
  color: var(--cta-white);
  font-size: 14px;
}

.cta-meta108__brand small {
  color: var(--cta-muted);
  font-size: 8px;
}

.cta-meta108__online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(68, 214, 143, 0.18);
  border-radius: 999px;
  background: rgba(68, 214, 143, 0.07);
  color: #8de8b9;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-meta108__online i,
.cta-meta108__account-footer strong i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #44d68f;
  box-shadow: 0 0 12px rgba(68, 214, 143, 0.65);
}

/* Account Body */
.cta-meta108__account-body {
  padding: 24px 20px;
}

.cta-meta108__account-label {
  display: block;
  margin-bottom: 8px;
  color: var(--cta-blue-300);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-meta108__account-body > strong {
  display: block;
  margin-bottom: 20px;
  color: var(--cta-white);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.cta-meta108__account-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(103, 187, 255, 0.1);
}

.cta-meta108__account-row > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.18);
  border-radius: 11px;
  background: rgba(27, 156, 255, 0.07);
  color: var(--cta-blue-400);
}

.cta-meta108__account-row svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-meta108__account-row strong,
.cta-meta108__account-row small {
  display: block;
}

.cta-meta108__account-row strong {
  margin-bottom: 4px;
  color: var(--cta-white);
  font-size: 11px;
  line-height: 1.35;
}

.cta-meta108__account-row small {
  color: var(--cta-muted);
  font-size: 8px;
  line-height: 1.4;
}

/* Account Footer */
.cta-meta108__account-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid rgba(103, 187, 255, 0.12);
  background: rgba(3, 15, 34, 0.4);
}

.cta-meta108__account-footer > span {
  color: var(--cta-muted);
  font-size: 8px;
}

.cta-meta108__account-footer strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8de8b9;
  font-size: 8px;
  text-transform: uppercase;
}

/* Floating Cards */
.cta-meta108__floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 185px;
  padding: 11px;
  border: 1px solid rgba(85, 184, 255, 0.22);
  border-radius: 15px;
  background: rgba(5, 23, 49, 0.88);
  box-shadow:
    0 17px 38px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.cta-meta108__floating-card--top {
  top: 42px;
  right: -8px;
}

.cta-meta108__floating-card--bottom {
  bottom: 42px;
  left: -16px;
}

.cta-meta108__floating-card > span {
  display: inline-flex;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.19);
  border-radius: 11px;
  background: rgba(27, 156, 255, 0.08);
  color: var(--cta-blue-400);
}

.cta-meta108__floating-card svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-meta108__floating-card strong,
.cta-meta108__floating-card small {
  display: block;
}

.cta-meta108__floating-card strong {
  margin-bottom: 3px;
  color: var(--cta-white);
  font-size: 10px;
}

.cta-meta108__floating-card small {
  color: var(--cta-muted);
  font-size: 7px;
}

/* Trust Bar */
.cta-meta108__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 20px;
}

.cta-meta108__trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--cta-border);
  border-radius: 16px;
  background: rgba(7, 25, 52, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cta-meta108__trust-item > span {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.2);
  border-radius: 11px;
  background: rgba(27, 156, 255, 0.08);
  color: var(--cta-blue-400);
}

.cta-meta108__trust-item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-meta108__trust-item strong,
.cta-meta108__trust-item small {
  display: block;
}

.cta-meta108__trust-item strong {
  margin-bottom: 3px;
  color: var(--cta-white);
  font-size: 10px;
  line-height: 1.35;
}

.cta-meta108__trust-item small {
  color: var(--cta-muted);
  font-size: 8px;
  line-height: 1.4;
}

/* Accessibility */
.cta-meta108__button:focus-visible {
  outline: 3px solid rgba(148, 212, 255, 0.78);
  outline-offset: 4px;
}

/* Large Tablet */
@media (max-width: 1080px) {
  .cta-meta108__panel {
    grid-template-columns: 1fr;
    padding: 48px;
  }

  .cta-meta108__content {
    max-width: 780px;
  }

  .cta-meta108__visual {
    min-height: 470px;
  }

  .cta-meta108__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 800px) {
  .cta-meta108 {
    padding: 85px 20px;
  }

  .cta-meta108__panel {
    gap: 38px;
    padding: 38px 30px;
    border-radius: 27px;
  }

  .cta-meta108__benefits {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .cta-meta108 {
    padding: 72px 16px;
  }

  .cta-meta108__panel {
    gap: 30px;
    padding: 29px 19px;
    border-radius: 23px;
  }

  .cta-meta108__panel::after {
    right: 20px;
    left: 20px;
  }

  .cta-meta108__eyebrow {
    margin-bottom: 18px;
    padding: 8px 12px;
    font-size: 9px;
  }

  .cta-meta108__content h2 {
    font-size: clamp(34px, 11vw, 47px);
    line-height: 1.1;
  }

  .cta-meta108__content > p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }

  .cta-meta108__benefits {
    margin-top: 23px;
  }

  .cta-meta108__actions {
    grid-template-columns: 1fr;
    margin-top: 23px;
  }

  .cta-meta108__button {
    min-height: 68px;
  }

  .cta-meta108__visual {
    min-height: 430px;
  }

  .cta-meta108__visual-orbit--one {
    width: 340px;
    height: 340px;
  }

  .cta-meta108__visual-orbit--two {
    width: 270px;
    height: 270px;
  }

  .cta-meta108__account-card {
    width: min(100%, 320px);
  }

  .cta-meta108__floating-card {
    width: 160px;
  }

  .cta-meta108__floating-card--top {
    top: 18px;
    right: -4px;
  }

  .cta-meta108__floating-card--bottom {
    bottom: 17px;
    left: -4px;
  }

  .cta-meta108__trust {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }
}

/* Small Mobile */
@media (max-width: 390px) {
  .cta-meta108 {
    padding-right: 13px;
    padding-left: 13px;
  }

  .cta-meta108__panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cta-meta108__content h2 {
    font-size: 33px;
  }

  .cta-meta108__visual {
    min-height: 400px;
  }

  .cta-meta108__account-card {
    width: 100%;
  }

  .cta-meta108__account-head,
  .cta-meta108__account-body,
  .cta-meta108__account-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cta-meta108__floating-card {
    display: none;
  }

  .cta-meta108__visual-orbit--one {
    width: 300px;
    height: 300px;
  }

  .cta-meta108__visual-orbit--two {
    width: 235px;
    height: 235px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .cta-meta108__button,
  .cta-meta108__button::before,
  .cta-meta108__button-arrow {
    transition: none;
  }
}