:root {
  --plans-bg: var(--landing-bg, #060c18);
  --plans-surface: var(--landing-surface, #0b1627);
  --plans-raised: var(--landing-surface-raised, #101e34);
  --plans-text: var(--landing-text, #f5f8ff);
  --plans-muted: var(--landing-muted, #aab9d1);
  --plans-border: var(--landing-border, rgba(178, 202, 255, 0.14));
  --plans-blue: var(--landing-blue, #66a8ff);
  --plans-violet: var(--landing-violet, #9790ff);
  --plans-cyan: var(--landing-cyan, #6fe5df);
  --plans-gold: #efc66f;
  --plans-divider: color-mix(in srgb, var(--plans-border) 88%, transparent);
  --plans-focus: color-mix(in srgb, var(--plans-violet) 42%, transparent);
}

body.planos-page {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--plans-text);
  background:
    radial-gradient(
      circle at 8% -8%,
      color-mix(in srgb, var(--plans-blue) 22%, transparent),
      transparent 32rem
    ),
    radial-gradient(
      circle at 92% 18%,
      color-mix(in srgb, var(--plans-violet) 17%, transparent),
      transparent 30rem
    ),
    linear-gradient(180deg, #07111f 0%, var(--plans-bg) 43%, #08111e 100%);
  font-family: var(--landing-font, "DM Sans", "Segoe UI", sans-serif);
}

body.planos-page.modal-open {
  overflow: hidden;
}
body.planos-page button,
body.planos-page a {
  font: inherit;
}

body.planos-page::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.36;
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--plans-border) 18%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--plans-border) 18%, transparent) 1px,
      transparent 1px
    );
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.plans-shell {
  position: relative;
  z-index: 1;
}
.plans-shell,
.plans-shell *,
.plans-modal-backdrop,
.plans-modal-backdrop * {
  box-sizing: border-box;
}

.plans-hero,
.plans-catalog,
.plans-final-cta {
  width: min(
    var(--landing-max-width, 1180px),
    calc(100% - (var(--landing-gutter, 24px) * 2))
  );
  margin-right: auto;
  margin-left: auto;
}

.plans-hero {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: center;
  padding: clamp(54px, 7vw, 82px) 0 clamp(62px, 8vw, 92px);
}

.plans-hero-copy,
.plans-section-heading > *,
.plans-final-cta > * {
  min-width: 0;
}

.plans-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: plans-copy-enter 560ms ease-out both;
}

.plans-hero h1,
.plans-section-heading h2,
.plans-final-cta h2 {
  margin: 0;
  color: var(--plans-text);
  font-family: var(--landing-display, "Space Grotesk", sans-serif);
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.plans-hero h1 {
  max-width: 14ch;
  margin-top: 16px;
  font-size: clamp(2.8rem, 5vw, 4.55rem);
}

.plans-hero-copy > p,
.plans-section-heading > p,
.plans-final-cta p {
  color: var(--plans-muted);
  line-height: 1.68;
  text-wrap: pretty;
}

.plans-hero-copy > p {
  max-width: 62ch;
  margin: 20px 0 0;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.plans-hero-actions,
.plans-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.plans-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 24px;
  padding-top: 19px;
  border-top: 1px solid var(--plans-divider);
}

.plans-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c4d2e8;
  font-size: 0.78rem;
  font-weight: 700;
}

.plans-hero-proof svg {
  width: 14px;
  height: 14px;
  color: var(--plans-cyan);
}

.plans-hero-visual {
  position: relative;
  width: min(100%, 470px);
  height: 430px;
  justify-self: end;
  isolation: isolate;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.28));
  animation: plans-visual-enter 700ms 80ms ease-out both;
}

.plans-hero-visual::before,
.plans-hero-visual::after {
  position: absolute;
  z-index: -2;
  content: "";
  pointer-events: none;
}

.plans-hero-visual::before {
  inset: 13% 5% 5%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 52% 34%,
      rgba(239, 198, 111, 0.21),
      transparent 29%
    ),
    radial-gradient(
      circle at 48% 67%,
      rgba(73, 135, 255, 0.22),
      transparent 48%
    );
  filter: blur(18px);
  animation: plans-ambient-breathe 5.4s ease-in-out infinite;
}

.plans-hero-visual::after {
  right: 6%;
  bottom: 3%;
  left: 6%;
  height: 23%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(87, 139, 244, 0.17),
    transparent 68%
  );
  transform: perspective(360px) rotateX(68deg);
}

.plans-hero-axis {
  position: absolute;
  z-index: -1;
  display: block;
  pointer-events: none;
  opacity: 0.35;
}

.plans-hero-axis-x {
  top: 54%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(125, 171, 255, 0.62),
    transparent
  );
}

.plans-hero-axis-y {
  top: 4%;
  bottom: 4%;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(151, 144, 255, 0.58),
    transparent
  );
}

.plans-hero-orbit {
  position: absolute;
  z-index: -1;
  top: 44%;
  left: 50%;
  display: block;
  border: 1px solid rgba(139, 172, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-14deg);
}

.plans-hero-orbit::before {
  position: absolute;
  top: 16%;
  right: 7%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a8caff;
  box-shadow: 0 0 15px rgba(122, 173, 255, 0.88);
  content: "";
}

.plans-hero-orbit-outer {
  width: 92%;
  height: 58%;
  animation: plans-orbit-drift 10s ease-in-out infinite;
}

.plans-hero-orbit-inner {
  width: 66%;
  height: 43%;
  border-color: rgba(239, 198, 111, 0.2);
  transform: translate(-50%, -50%) rotate(18deg);
  animation: plans-orbit-drift-reverse 8s ease-in-out infinite;
}

.plans-hero-tier {
  position: absolute;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(190, 210, 255, 0.17);
  border-radius: 20px;
  background: rgba(9, 19, 35, 0.86);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  will-change: transform;
}

.plans-hero-tier img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.plans-hero-tier > span:not(.plans-hero-tier-crown) {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 11px 11px;
  border-top: 1px solid rgba(190, 210, 255, 0.1);
}

.plans-hero-tier strong {
  font-family: var(--landing-display, "Space Grotesk", sans-serif);
  font-size: 0.84rem;
  letter-spacing: -0.02em;
}

.plans-hero-tier small {
  color: var(--plans-muted);
  font-size: 0.66rem;
}

.plans-hero-tier-free {
  z-index: 1;
  bottom: 46px;
  left: 0;
  width: 164px;
  transform: rotate(-7deg);
  animation: plans-tier-free 6.6s ease-in-out infinite;
}

.plans-hero-tier-premium {
  z-index: 2;
  right: 0;
  bottom: 24px;
  width: 184px;
  border-color: rgba(95, 154, 255, 0.35);
  transform: rotate(6deg);
  animation: plans-tier-premium 6s 400ms ease-in-out infinite;
}

.plans-hero-tier-deluxe {
  z-index: 4;
  top: 22px;
  left: 50%;
  width: 236px;
  overflow: visible;
  border-color: rgba(239, 198, 111, 0.48);
  background: linear-gradient(
    155deg,
    rgba(45, 38, 25, 0.94),
    rgba(10, 20, 36, 0.93) 64%
  );
  box-shadow:
    0 30px 65px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(239, 190, 76, 0.12),
    inset 0 1px 0 rgba(255, 235, 187, 0.14);
  transform: translateX(-50%);
  animation: plans-tier-deluxe 5.2s ease-in-out infinite;
}

.plans-hero-tier-deluxe img {
  border-radius: 19px 19px 0 0;
}
.plans-hero-tier-deluxe strong {
  color: #ffe5a8;
}

.plans-hero-tier-crown {
  position: absolute;
  z-index: 2;
  top: -14px;
  left: 50%;
  padding: 5px 9px;
  border: 1px solid rgba(239, 198, 111, 0.42);
  border-radius: 999px;
  color: #ffe5a8;
  background: #17170f;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plans-hero-signal {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9badc9;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plans-hero-signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--plans-cyan);
  box-shadow:
    0 0 0 4px rgba(111, 229, 223, 0.08),
    0 0 13px rgba(111, 229, 223, 0.6);
  animation: plans-signal-pulse 2.8s ease-in-out infinite;
}

.plans-catalog {
  position: relative;
  margin-top: 8px;
  padding-top: clamp(58px, 7vw, 82px);
  border-top: 1px solid var(--plans-divider);
  scroll-margin-top: 100px;
}

.plans-catalog::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: min(180px, 30%);
  height: 1px;
  background: linear-gradient(90deg, var(--plans-blue), transparent);
  content: "";
}

.plans-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.48fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: end;
}

.plans-section-heading h2 {
  max-width: 23ch;
  margin-top: 13px;
  font-size: clamp(2.15rem, 3.6vw, 3.25rem);
}

.plans-section-heading > p {
  max-width: 39ch;
  margin: 0;
  font-size: 0.98rem;
}

.plans-status {
  margin: 28px 0 0;
  padding: 17px 0;
  border-top: 1px dashed var(--plans-divider);
  border-bottom: 1px dashed var(--plans-divider);
  color: var(--plans-muted);
  font-size: 0.9rem;
}

.plans-status-error {
  color: #ffc5ce;
  border-color: color-mix(in srgb, #ef8595 35%, var(--plans-border));
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 38px;
}

.plans-card {
  --plan-accent: var(--plans-blue);
  --plan-accent-soft: color-mix(in srgb, var(--plan-accent) 10%, transparent);
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--plans-divider);
  border-radius: 21px;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--plan-accent) 5%, transparent),
      transparent 35%
    ),
    linear-gradient(155deg, rgba(18, 34, 58, 0.94), rgba(9, 19, 34, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 22px 48px rgba(0, 0, 0, 0.15);
  animation: plans-card-enter 480ms ease both;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.plans-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--plan-accent) 75%, transparent),
    transparent
  );
  content: "";
}

.plans-card-free {
  --plan-accent: #c3d0df;
}
.plans-card-premium {
  --plan-accent: #70a9ff;
  border-color: rgba(100, 161, 255, 0.3);
  animation-delay: 70ms;
}
.plans-card-deluxe {
  --plan-accent: var(--plans-gold);
  margin-top: -12px;
  margin-bottom: 12px;
  border-color: rgba(239, 198, 111, 0.38);
  background:
    radial-gradient(
      circle at 50% 8%,
      rgba(239, 198, 111, 0.13),
      transparent 27%
    ),
    linear-gradient(155deg, rgba(39, 34, 26, 0.96), rgba(10, 20, 35, 0.96) 56%);
  box-shadow:
    inset 0 1px 0 rgba(255, 232, 175, 0.08),
    0 28px 58px rgba(0, 0, 0, 0.24),
    0 0 42px rgba(214, 168, 67, 0.06);
  animation-delay: 140ms;
}

.plans-card:hover {
  border-color: color-mix(in srgb, var(--plan-accent) 60%, var(--plans-border));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 28px 58px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.plans-card-topline {
  display: flex;
  min-height: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plans-card-kicker,
.plans-modal-kicker {
  color: var(--plans-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plans-card-kicker {
  color: var(--plan-accent);
}

.plans-card-badge {
  padding: 5px 8px;
  border: 1px solid
    color-mix(in srgb, var(--plan-accent) 34%, var(--plans-border));
  border-radius: 999px;
  color: var(--plan-accent);
  background: var(--plan-accent-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.plans-card-premium .plans-card-badge {
  display: inline-flex;
  width: auto;
  min-width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
  padding-left: 10px;
  line-height: 1;
  white-space: nowrap;
}

.plans-card-brand {
  position: relative;
  display: grid;
  height: 132px;
  place-items: center;
  margin: 18px -5px 10px;
}

.plans-card-brand::after {
  position: absolute;
  right: 17%;
  bottom: 4px;
  left: 17%;
  height: 18px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--plan-accent) 16%, transparent);
  filter: blur(13px);
  content: "";
}

.plans-card-brand img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 205px);
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 14px 21px rgba(0, 0, 0, 0.26));
}

.plans-card-heading h3 {
  margin: 0;
  color: var(--plans-text);
  font-family: var(--landing-display, "Space Grotesk", sans-serif);
  font-size: 1.48rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.plans-card-heading p {
  min-height: 3.1em;
  margin: 9px 0 0;
  color: var(--plans-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.plans-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 21px;
  padding-top: 18px;
  border-top: 1px solid var(--plans-divider);
}

.plans-card-price strong {
  color: var(--plans-text);
  font-family: var(--landing-display, "Space Grotesk", sans-serif);
  font-size: clamp(2rem, 2.5vw, 2.48rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.plans-card-price span {
  color: var(--plans-muted);
  font-size: 0.79rem;
}
.plans-card-description {
  margin: 11px 0 0;
  color: var(--plans-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.plans-card-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
}

.plans-card-facts div {
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid var(--plans-divider);
}
.plans-card-facts dt {
  color: #8496b2;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plans-card-facts dd {
  margin: 6px 0 0;
  color: #e5edfa;
  font-size: 0.75rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.plans-card-benefits {
  display: grid;
  gap: 9px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}
.plans-card-benefits li {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 9px;
  color: #c2cfe2;
  font-size: 0.83rem;
  line-height: 1.45;
}
.plans-card-benefits svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 2px;
  color: var(--plan-accent);
}

.plans-card-actions {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 25px;
}
.plans-card-note {
  margin-top: 10px;
  color: var(--plans-muted);
  font-size: 0.72rem;
  text-align: center;
}

.plans-button {
  appearance: none;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    opacity 160ms ease;
}

.plans-button:hover:not(:disabled) {
  transform: translateY(-2px);
}
.plans-button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}
.plans-button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.plans-button-primary {
  color: #07111f;
  background: linear-gradient(135deg, #8ed5ff, #9f9bff);
  box-shadow: 0 11px 25px rgba(91, 139, 247, 0.18);
}
.plans-button-primary:hover:not(:disabled) {
  box-shadow: 0 15px 30px rgba(91, 139, 247, 0.28);
}
.plans-button-secondary {
  border-color: rgba(178, 202, 255, 0.2);
  color: var(--plans-text);
  background: rgba(255, 255, 255, 0.035);
}
.plans-button-secondary:hover:not(:disabled) {
  border-color: rgba(128, 178, 255, 0.48);
  background: rgba(102, 157, 255, 0.11);
}
.plans-button:focus-visible,
.plans-modal-close:focus-visible,
.plans-consent-option input:focus-visible,
.plans-consent-option a:focus-visible {
  outline: 3px solid var(--plans-focus);
  outline-offset: 3px;
}

.plans-final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  overflow: hidden;
  margin-top: clamp(68px, 8vw, 94px);
  margin-bottom: 22px;
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid rgba(151, 171, 255, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(86, 144, 255, 0.14),
      transparent 35%
    ),
    linear-gradient(120deg, rgba(27, 44, 83, 0.78), rgba(11, 22, 39, 0.9) 62%);
}

.plans-final-cta::after {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(151, 144, 255, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.plans-final-cta h2 {
  max-width: 19ch;
  margin-top: 13px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}
.plans-final-cta p {
  position: relative;
  z-index: 1;
  max-width: 42ch;
  margin: 0;
  font-size: 0.94rem;
}
.plans-final-actions {
  position: relative;
  z-index: 1;
  margin-top: 19px;
}

.plans-notice {
  position: fixed;
  z-index: 210;
  right: 18px;
  bottom: 18px;
  max-width: min(390px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid var(--plans-divider);
  border-radius: 12px;
  color: var(--plans-text);
  background: #101e34;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  font-size: 0.84rem;
}

.plans-notice-error {
  border-color: rgba(239, 133, 149, 0.34);
}

.plans-modal-backdrop {
  position: fixed;
  z-index: 9998;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 28px);
  background: rgba(2, 7, 16, 0.82);
  backdrop-filter: blur(16px);
  animation: plans-modal-in 190ms ease both;
}

.plans-modal-dialog {
  display: grid;
  width: min(1040px, 100%);
  max-height: min(91dvh, 900px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(112, 165, 255, 0.3);
  border-radius: 22px;
  color: var(--plans-text);
  background: #0a1526;
  box-shadow:
    0 32px 82px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  animation: plans-modal-dialog-in 210ms ease both;
}

.plans-modal-dialog-checkout {
  width: min(690px, 100%);
}

.plans-modal-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  padding: 23px 30px 20px;
  border-bottom: 1px solid var(--plans-divider);
  background: linear-gradient(
    135deg,
    rgba(63, 115, 202, 0.13),
    rgba(11, 22, 39, 0.98)
  );
}

.plans-modal-header.plans-tone-free {
  background: linear-gradient(
    135deg,
    rgba(185, 201, 221, 0.1),
    rgba(11, 22, 39, 0.98)
  );
}
.plans-modal-header.plans-tone-deluxe {
  background: linear-gradient(
    135deg,
    rgba(216, 182, 110, 0.15),
    rgba(11, 22, 39, 0.98)
  );
}
.plans-modal-heading-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 17px;
}
.plans-modal-heading-brand img {
  display: block;
  width: 112px;
  height: 76px;
  flex: 0 0 112px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.24));
}
.plans-modal-header h2 {
  margin: 5px 0 0;
  font-family: var(--landing-display, "Space Grotesk", sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.plans-modal-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 9px;
  padding: 4px 8px;
  border: 1px solid rgba(113, 166, 255, 0.3);
  border-radius: 999px;
  color: #bcd8ff;
  background: rgba(91, 144, 237, 0.1);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.plans-tone-deluxe .plans-modal-badge {
  border-color: rgba(239, 198, 111, 0.35);
  color: #ffe2a2;
  background: rgba(239, 198, 111, 0.09);
}
.plans-modal-header > p {
  grid-column: 1 / -1;
  max-width: 78ch;
  margin: 0;
  color: #b7c5da;
  font-size: 0.91rem;
  line-height: 1.6;
}

.plans-modal-close {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(178, 202, 255, 0.18);
  border-radius: 11px;
  color: var(--plans-text);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.plans-modal-close:hover {
  border-color: rgba(134, 181, 255, 0.45);
  background: rgba(103, 156, 255, 0.1);
}
.plans-modal-close svg {
  width: 18px;
  height: 18px;
}

.plans-modal-body {
  min-height: 0;
  overflow: auto;
  padding: 25px 30px 30px;
  overscroll-behavior: contain;
  scrollbar-color: rgba(142, 162, 194, 0.34) transparent;
  scrollbar-width: thin;
}

.plans-modal-body::-webkit-scrollbar {
  width: 9px;
}
.plans-modal-body::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(142, 162, 194, 0.28);
  background-clip: padding-box;
}
.plans-modal-body > section + section {
  margin-top: 26px;
  padding-top: 23px;
  border-top: 1px solid var(--plans-divider);
}
.plans-modal-section-heading {
  display: grid;
  gap: 6px;
}
.plans-modal-section-heading h3 {
  margin: 0;
  color: var(--plans-text);
  font-family: var(--landing-display, "Space Grotesk", sans-serif);
  font-size: 1.3rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.plans-modal-section-heading + p,
.plans-modal-flow > p,
.plans-modal-deluxe > p {
  margin: 10px 0 0;
  color: #b7c5d9;
  font-size: 0.92rem;
  line-height: 1.65;
}

.plans-modal-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
}

.plans-modal-facts div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(178, 202, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}
.plans-modal-facts dt {
  color: #8fa1bd;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plans-modal-facts dd {
  margin: 7px 0 0;
  color: #eef4ff;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.4;
}
.plans-modal-facts dd small {
  color: var(--plans-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.plans-modal-deluxe {
  margin-right: -8px;
  margin-left: -8px;
  padding: 23px 22px !important;
  border: 1px solid rgba(239, 198, 111, 0.2) !important;
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    rgba(239, 198, 111, 0.09),
    rgba(255, 255, 255, 0.02) 60%
  );
}

.plans-modal-deluxe .plans-modal-kicker {
  color: #e7bf6b;
}
.plans-deluxe-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 18px;
}
.plans-deluxe-points > div {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border-top: 1px solid rgba(239, 198, 111, 0.17);
  background: rgba(4, 10, 19, 0.18);
}
.plans-deluxe-points > div > span:last-child {
  min-width: 0;
}
.plans-deluxe-points strong,
.plans-deluxe-points small {
  display: block;
}
.plans-deluxe-points strong {
  color: #fff2d0;
  font-size: 0.88rem;
}
.plans-deluxe-points small {
  margin-top: 5px;
  color: #b9c4d4;
  font-size: 0.79rem;
  line-height: 1.5;
}
.plans-deluxe-example {
  margin-top: 15px;
  padding: 14px 16px;
  border-left: 2px solid #ddb35a;
  background: rgba(5, 11, 20, 0.28);
}
.plans-deluxe-example > span {
  color: #e9c879;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.plans-deluxe-example p {
  margin: 7px 0 0;
  color: #d4ddec;
  font-size: 0.86rem;
  line-height: 1.62;
}

.plans-modal-feature-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 16px;
}
.plans-modal-feature-group {
  min-width: 0;
  padding: 15px 0;
  border-top: 1px solid var(--plans-divider);
}
.plans-modal-group-heading {
  display: flex;
  align-items: center;
  gap: 9px;
}
.plans-modal-group-heading h4 {
  margin: 0;
  color: var(--plans-text);
  font-size: 0.94rem;
}

.plans-modal-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(105, 164, 255, 0.28);
  border-radius: 9px;
  color: #8dbbff;
  background: rgba(82, 140, 237, 0.1);
}

.plans-modal-deluxe .plans-modal-icon {
  border-color: rgba(239, 198, 111, 0.28);
  color: #e9c879;
  background: rgba(239, 198, 111, 0.08);
}
.plans-modal-icon svg {
  width: 15px;
  height: 15px;
}
.plans-modal-feature-group ul {
  display: grid;
  gap: 10px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}
.plans-modal-feature-group li {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 9px;
  color: var(--plans-muted);
  font-size: 0.83rem;
  line-height: 1.45;
}
.plans-modal-feature-group li > svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 2px;
  color: var(--plans-cyan);
}
.plans-modal-feature-group li span {
  min-width: 0;
}
.plans-modal-feature-group li strong,
.plans-modal-feature-group li small {
  display: block;
}
.plans-modal-feature-group li strong {
  color: #e7eefb;
  font-size: 0.86rem;
}
.plans-modal-feature-group li small {
  margin-top: 3px;
  color: #9dacc2;
  font-size: 0.77rem;
  line-height: 1.45;
}

.plans-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 15px 30px 19px;
  border-top: 1px solid var(--plans-divider);
  background: rgba(8, 18, 32, 0.98);
}

.plans-modal-footer .plans-button {
  min-width: 145px;
}

.plans-checkout-lead {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--plans-divider);
}
.plans-checkout-lead > svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  color: var(--plans-blue);
}
.plans-checkout-lead strong,
.plans-checkout-lead span {
  display: block;
}
.plans-checkout-lead strong {
  color: var(--plans-text);
  font-size: 0.95rem;
}
.plans-checkout-lead span {
  margin-top: 5px;
  color: var(--plans-muted);
  font-size: 0.86rem;
  line-height: 1.58;
}
.plans-consent-list {
  display: grid;
  gap: 0;
  margin-top: 16px;
}

.plans-consent-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--plans-divider);
  cursor: pointer;
}

.plans-consent-option input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--plans-blue);
}
.plans-consent-option strong,
.plans-consent-option small,
.plans-consent-option a {
  display: block;
}
.plans-consent-option strong {
  color: var(--plans-text);
  font-size: 0.91rem;
}
.plans-consent-option small {
  margin-top: 5px;
  color: var(--plans-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.plans-consent-option a {
  width: fit-content;
  margin-top: 7px;
  color: #8dbbff;
  font-size: 0.8rem;
  font-weight: 750;
}
.plans-consent-status {
  margin: 17px 0 0;
  color: var(--plans-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}
.plans-consent-status.is-ready {
  color: #bfe2ff;
}

@keyframes plans-copy-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plans-visual-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes plans-card-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plans-modal-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes plans-modal-dialog-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes plans-ambient-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}
@keyframes plans-orbit-drift {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-14deg);
  }
  50% {
    transform: translate(-50%, -48%) rotate(-8deg);
  }
}
@keyframes plans-orbit-drift-reverse {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(18deg);
  }
  50% {
    transform: translate(-50%, -52%) rotate(11deg);
  }
}
@keyframes plans-tier-free {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-7deg);
  }
  50% {
    transform: translate3d(3px, -9px, 0) rotate(-5deg);
  }
}
@keyframes plans-tier-premium {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(6deg);
  }
  50% {
    transform: translate3d(-3px, -11px, 0) rotate(4deg);
  }
}
@keyframes plans-tier-deluxe {
  0%,
  100% {
    transform: translate3d(-50%, 0, 0);
  }
  50% {
    transform: translate3d(-50%, -10px, 0);
  }
}
@keyframes plans-signal-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1060px) {
  .plans-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: 34px;
  }
  .plans-hero-visual {
    transform: scale(0.92);
    transform-origin: right center;
  }
  .plans-card {
    padding: 21px;
  }
}

@media (max-width: 940px) {
  .plans-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 48px;
  }
  .plans-hero-copy {
    max-width: 780px;
  }
  .plans-hero h1 {
    max-width: 15ch;
  }
  .plans-hero-visual {
    width: min(100%, 580px);
    height: 390px;
    justify-self: center;
    transform: none;
  }
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plans-card-deluxe {
    width: calc(50% - 9px);
    grid-column: 1 / -1;
    justify-self: center;
  }
  .plans-section-heading {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .plans-section-heading > p {
    max-width: 62ch;
  }
  .plans-final-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .plans-final-cta p {
    max-width: 58ch;
  }
}

@media (max-width: 760px) {
  .plans-modal-dialog {
    max-height: 94dvh;
  }
  .plans-modal-feature-groups {
    grid-template-columns: 1fr;
  }
  .plans-deluxe-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plans-card-deluxe {
    width: 100%;
    grid-column: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  .plans-card-heading p {
    min-height: 0;
  }
  .plans-modal-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plans-modal-footer {
    flex-direction: column-reverse;
  }
  .plans-modal-footer .plans-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .plans-hero,
  .plans-catalog,
  .plans-final-cta {
    width: min(
      var(--landing-max-width, 1180px),
      calc(100% - (var(--landing-gutter, 14px) * 2))
    );
  }

  .plans-hero {
    gap: 18px;
    padding: 39px 0 52px;
  }
  .plans-hero h1 {
    max-width: 16ch;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }
  .plans-hero-copy > p {
    font-size: 0.96rem;
  }
  .plans-hero-actions .plans-button {
    flex: 1 1 180px;
  }
  .plans-hero-proof {
    gap: 9px 14px;
  }
  .plans-hero-visual {
    height: 330px;
  }
  .plans-hero-tier-free {
    bottom: 40px;
    width: 128px;
  }
  .plans-hero-tier-premium {
    bottom: 28px;
    width: 140px;
  }
  .plans-hero-tier-deluxe {
    top: 20px;
    width: 184px;
  }
  .plans-hero-tier > span:not(.plans-hero-tier-crown) {
    padding: 7px 8px 9px;
  }
  .plans-hero-tier strong {
    font-size: 0.73rem;
  }
  .plans-hero-tier small {
    font-size: 0.57rem;
  }
  .plans-hero-signal {
    font-size: 0.54rem;
  }
  .plans-catalog {
    padding-top: 48px;
  }
  .plans-section-heading h2 {
    font-size: 2.12rem;
  }
  .plans-grid {
    margin-top: 28px;
  }
  .plans-card {
    padding: 20px;
  }
  .plans-card-brand {
    height: 116px;
  }
  .plans-card-brand img {
    height: 116px;
  }
  .plans-final-cta {
    margin-top: 56px;
    padding: 27px 21px;
    border-radius: 20px;
  }
  .plans-final-cta h2 {
    font-size: 2.05rem;
  }
  .plans-final-actions .plans-button {
    flex: 1 1 160px;
  }
  .plans-notice {
    right: 14px;
    bottom: 14px;
  }
  .plans-modal-backdrop {
    padding: 8px;
  }
  .plans-modal-dialog {
    border-radius: 17px;
  }
  .plans-modal-header {
    padding: 18px 17px 16px;
  }
  .plans-modal-heading-brand {
    gap: 10px;
  }
  .plans-modal-heading-brand img {
    width: 78px;
    height: 55px;
    flex-basis: 78px;
  }
  .plans-modal-header h2 {
    font-size: 1.62rem;
  }
  .plans-modal-header > p {
    font-size: 0.85rem;
  }
  .plans-modal-body {
    padding: 20px 17px 24px;
  }
  .plans-modal-section-heading h3 {
    font-size: 1.18rem;
  }
  .plans-modal-deluxe {
    margin-right: 0;
    margin-left: 0;
    padding: 18px 15px !important;
  }
  .plans-modal-footer {
    padding: 13px 17px 16px;
  }
}

@media (max-width: 430px) {
  .plans-hero-visual {
    height: 292px;
  }
  .plans-hero-tier-free {
    left: -2px;
    width: 112px;
  }
  .plans-hero-tier-premium {
    right: -2px;
    width: 122px;
  }
  .plans-hero-tier-deluxe {
    width: 160px;
  }
  .plans-hero-tier small {
    display: none;
  }
  .plans-hero-signal {
    bottom: -2px;
  }
  .plans-card-facts {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .plans-card-facts div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: baseline;
    gap: 8px;
  }
  .plans-card-facts dd {
    margin-top: 0;
  }
  .plans-modal-facts {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .plans-modal-facts div {
    padding: 11px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plans-hero-copy,
  .plans-hero-visual,
  .plans-card,
  .plans-modal-backdrop,
  .plans-modal-dialog {
    animation: none;
  }

  .plans-hero-tier-free {
    animation: plans-reduced-free 18s ease-in-out infinite;
  }
  .plans-hero-tier-premium {
    animation: plans-reduced-premium 20s ease-in-out infinite;
  }
  .plans-hero-tier-deluxe {
    animation: plans-reduced-deluxe 19s ease-in-out infinite;
  }
  .plans-hero-orbit-outer {
    animation-duration: 24s;
  }
  .plans-hero-orbit-inner {
    animation-duration: 26s;
  }
  .plans-hero-visual::before {
    animation-duration: 14s;
  }
  .plans-hero-signal i {
    animation-duration: 7s;
  }
  .plans-button,
  .plans-card {
    transition-duration: 1ms;
  }
  .plans-button:hover:not(:disabled),
  .plans-card:hover {
    transform: none;
  }
}

@keyframes plans-reduced-free {
  0%,
  100% {
    transform: rotate(-7deg);
    opacity: 0.94;
  }
  50% {
    transform: rotate(-7deg);
    opacity: 1;
  }
}
@keyframes plans-reduced-premium {
  0%,
  100% {
    transform: rotate(6deg);
    opacity: 0.94;
  }
  50% {
    transform: rotate(6deg);
    opacity: 1;
  }
}
@keyframes plans-reduced-deluxe {
  0%,
  100% {
    transform: translateX(-50%);
    filter: brightness(0.98);
  }
  50% {
    transform: translateX(-50%);
    filter: brightness(1.06);
  }
}
.plans-direct-pix-summary {
  display: grid;
  grid-column: 1 / -1;
  gap: 7px;
  padding: 15px 16px;
  border: 1px solid rgba(151, 192, 255, 0.22);
  border-radius: 13px;
  color: #dceaff;
  background: linear-gradient(
    135deg,
    rgba(65, 121, 218, 0.18),
    rgba(11, 24, 46, 0.65)
  );
}
.plans-direct-pix-summary.is-step {
  border-color: rgba(168, 132, 255, 0.28);
  background: linear-gradient(
    135deg,
    rgba(102, 69, 190, 0.2),
    rgba(11, 24, 46, 0.68)
  );
}

.plans-direct-pix-summary > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9dc7ff;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plans-direct-pix-summary > strong {
  color: #f3f7ff;
  font-size: 1rem;
}
.plans-direct-pix-summary > small {
  color: #b8c9e0;
  line-height: 1.45;
}
.plans-direct-pix-support {
  color: #8fa7c4;
  font-size: 0.72rem;
  overflow-wrap: anywhere;
}
.plans-direct-pix-field.is-invalid > input {
  border-color: rgba(255, 113, 133, 0.72);
  background: rgba(104, 24, 43, 0.18);
}
.plans-direct-pix-field-error,
.plans-direct-pix-form-summary {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #ff9cab;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.4;
}
.plans-direct-pix-field-error {
  margin-top: -1px;
}
.plans-direct-pix-field-error > svg,
.plans-direct-pix-form-summary > svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
}
.plans-direct-pix-field-help {
  margin: 0;
  color: #90a5c4;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.45;
}
.plans-direct-pix-field-help.is-success,
.plans-direct-pix-field-help.is-warning {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(178, 202, 255, 0.14);
  border-radius: 10px;
}
.plans-direct-pix-field-help.is-success {
  border-color: rgba(108, 215, 157, 0.24);
  color: #bfe9cf;
  background: rgba(67, 176, 113, 0.08);
}
.plans-direct-pix-field-help.is-warning {
  border-color: rgba(245, 193, 91, 0.24);
  color: #f2dba7;
  background: rgba(194, 137, 35, 0.08);
}
.subscriptions-react-consent.is-invalid {
  color: #ffb1bc;
}
.subscriptions-react-consent.is-invalid > input {
  outline: 2px solid rgba(255, 113, 133, 0.55);
  outline-offset: 1px;
}
.subscriptions-react-consent .plans-direct-pix-field-error {
  flex-basis: 100%;
}
.plans-direct-pix-form-summary {
  grid-column: 1 / -1;
  margin: 0;
  padding: 9px 11px;
  border: 1px solid rgba(255, 113, 133, 0.28);
  border-radius: 10px;
  background: rgba(104, 24, 43, 0.16);
}
.plans-direct-pix-guild-picker {
  display: grid;
  gap: 12px;
}
.plans-direct-pix-guild-picker > label {
  display: grid;
  gap: 7px;
}
.plans-direct-pix-guild-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 9px;
  width: 100%;
  min-width: 0;
}
.plans-direct-pix-guild-control > select {
  min-width: 0;
  width: 100%;
}
.plans-direct-pix-guild-control > .plans-direct-pix-guild-select {
  display: contents;
}
.plans-direct-pix-guild-control > .plans-direct-pix-guild-select > label {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  margin: 0;
}
.plans-direct-pix-guild-control
  > .plans-direct-pix-guild-select
  > .automod-select-trigger {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-sizing: border-box;
  padding: 9px 11px;
  border: 1px solid rgba(178, 202, 255, 0.2);
  border-radius: 10px;
  color: #edf4ff;
  background: #07111f;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}
.plans-direct-pix-guild-control
  > .plans-direct-pix-guild-select
  > .automod-select-trigger:hover:not(:disabled) {
  border-color: rgba(139, 192, 255, 0.5);
  background: rgba(72, 129, 230, 0.1);
}
.plans-direct-pix-guild-control
  > .plans-direct-pix-guild-select
  > .automod-select-trigger:focus-visible {
  outline: 2px solid rgba(139, 192, 255, 0.72);
  outline-offset: 2px;
}
.plans-direct-pix-guild-control
  > .plans-direct-pix-guild-select
  > .automod-select-trigger:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}
.plans-direct-pix-guild-control
  > .plans-direct-pix-guild-select
  > .automod-select-trigger
  > span {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.plans-direct-pix-guild-control
  > .plans-direct-pix-guild-select
  > .automod-select-trigger
  > svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.plans-direct-pix-guild-control
  > .plans-direct-pix-guild-select
  > .automod-select-description {
  grid-column: 1 / -1;
  grid-row: 3;
  min-width: 0;
  margin: 8px 0 0;
  color: #90a5c4;
  font-size: 0.72rem;
  line-height: 1.45;
}
.plans-direct-pix-guild-control > .plans-direct-pix-guild-refresh {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
}
.plans-direct-pix-guild-select-popover {
  position: fixed;
  z-index: 420;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(145, 183, 255, 0.32);
  border-radius: 12px;
  color: #edf4ff;
  background: #091526;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.5);
}
.plans-direct-pix-guild-select-popover .automod-select-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid rgba(178, 202, 255, 0.12);
}
.plans-direct-pix-guild-select-popover .automod-select-search > svg {
  position: absolute;
  left: 12px;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #8fa8cf;
  line-height: 1;
  pointer-events: none;
}
.plans-direct-pix-guild-select-popover .automod-search-input {
  width: auto;
  min-width: 0;
  min-height: 32px;
  flex: 1 1 auto;
  padding: 0 30px 0 25px;
  border: 0;
  outline: 0;
  color: #eef5ff;
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
}
.plans-direct-pix-guild-select-popover .automod-search-input::placeholder {
  color: #8fa3c0;
}
.plans-direct-pix-guild-select-popover .automod-select-clear {
  display: inline-flex;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 7px;
  color: #b7cce8;
  background: transparent;
  cursor: pointer;
}
.plans-direct-pix-guild-select-popover .automod-select-clear:hover {
  background: rgba(255, 255, 255, 0.07);
}
.plans-direct-pix-guild-select-popover .automod-select-clear > svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}
.plans-direct-pix-guild-select-popover .automod-select-options {
  max-height: inherit;
  overflow: auto;
  padding: 5px;
}
.plans-direct-pix-guild-select-popover .automod-select-options > button {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 8px 9px;
  border: 0;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  text-align: left;
}
.plans-direct-pix-guild-select-popover
  .automod-select-options
  > button:hover:not(:disabled),
.plans-direct-pix-guild-select-popover
  .automod-select-options
  > button.is-selected {
  background: rgba(94, 151, 240, 0.18);
}
.plans-direct-pix-guild-select-popover
  .automod-select-options
  > button.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.plans-direct-pix-guild-option {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
}
.plans-direct-pix-guild-option strong,
.plans-direct-pix-guild-option small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.plans-direct-pix-guild-option small {
  color: #9eb2cf;
  font-size: 0.71rem;
}
.plans-direct-pix-install-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(168, 132, 255, 0.28);
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(102, 69, 190, 0.18),
    rgba(30, 34, 75, 0.42)
  );
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}
.plans-direct-pix-install-step > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  padding: 7px;
  box-sizing: content-box;
  border: 1px solid rgba(177, 146, 255, 0.28);
  border-radius: 10px;
  color: #d3bdff;
  background: rgba(126, 91, 214, 0.2);
}
.plans-direct-pix-install-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}
.plans-direct-pix-install-copy > span {
  color: #9eb2cf;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plans-direct-pix-install-copy > strong {
  color: #edf5ff;
  font-size: 1rem;
  line-height: 1.25;
}
.plans-direct-pix-install-copy > small {
  color: #b8c8df;
  line-height: 1.42;
}
.plans-direct-pix-install-actions {
  grid-column: 2;
  min-width: 0;
}
.plans-direct-pix-install-actions .subscriptions-react-button {
  justify-self: start;
  min-height: 40px;
  max-width: 100%;
}
.plans-direct-pix-guild-refresh {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(157, 199, 255, 0.28);
  border-radius: 50%;
  color: #cde2ff;
  background: rgba(78, 133, 225, 0.12);
  cursor: pointer;
  line-height: 1;
}
.plans-direct-pix-guild-refresh:hover:not(:disabled) {
  border-color: rgba(157, 199, 255, 0.52);
  background: rgba(78, 133, 225, 0.22);
}
.plans-direct-pix-guild-refresh:disabled {
  cursor: wait;
  opacity: 0.62;
}
.plans-direct-pix-guild-refresh > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.plans-direct-pix-guild-feedback {
  display: inline-flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #cfe0ff;
  padding: 7px 9px;
  border: 1px solid rgba(126, 168, 255, 0.2);
  border-radius: 9px;
  background: rgba(67, 116, 196, 0.08);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.4;
}
.plans-direct-pix-guild-feedback > span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.plans-direct-pix-guild-feedback.is-success {
  border-color: rgba(108, 215, 157, 0.28);
  color: #aee7c5;
  background: rgba(67, 176, 113, 0.1);
}
.plans-direct-pix-guild-feedback.is-warning {
  border-color: rgba(245, 193, 91, 0.3);
  color: #f6dfad;
  background: rgba(194, 137, 35, 0.1);
}
.plans-direct-pix-guild-feedback.is-info {
  border-color: rgba(126, 168, 255, 0.2);
  color: #cfe0ff;
  background: rgba(67, 116, 196, 0.08);
}
.plans-direct-pix-guild-feedback > svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.plans-direct-pix-guild-blocked-note {
  margin: 0;
  color: #d9b982;
  font-size: 0.72rem;
  line-height: 1.42;
}

@media (max-width: 620px) {
  .plans-direct-pix-summary {
    padding: 12px;
  }
  .plans-direct-pix-guild-control {
    gap: 7px;
  }
  .plans-direct-pix-install-actions {
    grid-column: 1 / -1;
  }
  .plans-direct-pix-install-actions .subscriptions-react-button {
    width: 100%;
    justify-content: center;
  }
}
