:root {
  --bg-main: #0a0e14;
  --bg-header: #05080c;
  --bg-cards: #11161d;
  --primary: #af30ca;
  --primary-hover: #c54ee0;
  --text: #ffffff;
  --text-muted: #8b949e;
  --border: rgba(255, 255, 255, 0.1);
  --section-spacing: 80px;
  --success: #24d366;
  --warning: #f7c948;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Roboto, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(175, 48, 202, 0.18), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(197, 78, 224, 0.12), transparent 24%),
    linear-gradient(180deg, #0a0e14 0%, #070a0f 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 75%);
  pointer-events: none;
  z-index: -2;
}

body.cart-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-space {
  padding: var(--section-spacing) 0;
}

.top-strip {
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 9px 16px;
  background: linear-gradient(90deg, rgba(175, 48, 202, 0.95), rgba(197, 78, 224, 0.85));
  color: var(--text);
  font-size: 0.92rem;
  text-align: center;
}

.top-strip strong {
  padding: 4px 10px;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 12, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), #651076);
  box-shadow: 0 0 35px rgba(175, 48, 202, 0.34);
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand b,
.brand small {
  display: block;
}

.brand b {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 99px;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(175, 48, 202, 0.42);
  background: rgba(175, 48, 202, 0.12);
  color: var(--text);
  padding: 11px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.cart-button b,
.floating-cart span {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  background: var(--primary);
  color: var(--text);
  border-radius: 999px;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -160px;
  top: 120px;
  background: rgba(175, 48, 202, 0.22);
  filter: blur(90px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-hover);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 7vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 660px;
  color: #d8dde5;
  font-size: clamp(1.03rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--text);
  box-shadow: 0 16px 38px rgba(175, 48, 202, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 20px 50px rgba(175, 48, 202, 0.44);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: rgba(175, 48, 202, 0.58);
  background: rgba(175, 48, 202, 0.12);
}

.btn-large {
  min-height: 58px;
  padding-inline: 26px;
}

.btn-full {
  width: 100%;
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.mini-proof article {
  padding: 18px;
  border: 1px solid var(--border);
  background: rgba(17, 22, 29, 0.64);
  border-radius: 18px;
}

.mini-proof strong,
.mini-proof span {
  display: block;
}

.mini-proof strong {
  font-size: 1.08rem;
}

.mini-proof span {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.hero-panel {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    var(--bg-cards);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -120px -90px auto auto;
  width: 240px;
  height: 240px;
  background: rgba(175, 48, 202, 0.3);
  filter: blur(50px);
}

.panel-header {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}

.panel-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.panel-header span:first-child {
  background: var(--primary);
}

.conversion-card {
  position: relative;
  padding: clamp(24px, 5vw, 42px);
  border-radius: 24px;
  background: rgba(5, 8, 12, 0.62);
  border: 1px solid var(--border);
}

.conversion-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.conversion-card p:last-child {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.stat-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.stat-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}

.stat-list b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(175, 48, 202, 0.16);
  color: var(--primary-hover);
}

.stat-list span {
  font-weight: 800;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title.align-left {
  margin: 0;
  text-align: left;
}

.section-title h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-title p:not(.eyebrow) {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1.04rem;
}

.benefits-grid,
.plans-grid {
  display: grid;
  gap: 18px;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card,
.plan-card,
.trial-box,
.saving-board,
details {
  border: 1px solid var(--border);
  background: rgba(17, 22, 29, 0.78);
  box-shadow: 0 12px 50px rgba(0,0,0,0.18);
}

.benefit-card {
  padding: 26px;
  border-radius: 22px;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(175, 48, 202, 0.14);
  font-size: 1.45rem;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.benefit-card p,
.plan-card p,
.plan-card li,
.trial-box p,
.faq p {
  color: var(--text-muted);
  line-height: 1.65;
}

.plans-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(175, 48, 202, 0.72), transparent);
  opacity: 0.65;
}

.plan-card.popular,
.plan-card.best {
  border-color: rgba(175, 48, 202, 0.52);
  background:
    radial-gradient(circle at 50% -20%, rgba(175, 48, 202, 0.22), transparent 42%),
    rgba(17, 22, 29, 0.92);
}

.ribbon {
  position: absolute;
  top: 18px;
  right: -34px;
  width: 150px;
  padding: 7px 0;
  transform: rotate(35deg);
  background: var(--primary);
  color: var(--text);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
}

.plan-top {
  min-height: 128px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(175, 48, 202, 0.16);
  color: #efc7f8;
  border: 1px solid rgba(175, 48, 202, 0.32);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tag.muted {
  background: rgba(255,255,255,0.055);
  color: var(--text-muted);
  border-color: var(--border);
}

.tag.save {
  background: rgba(36, 211, 102, 0.11);
  color: #9af0bc;
  border-color: rgba(36, 211, 102, 0.24);
}

.tag.gold {
  background: rgba(247, 201, 72, 0.1);
  color: #ffe08a;
  border-color: rgba(247, 201, 72, 0.24);
}

.plan-card h3 {
  margin-bottom: 8px;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin: 8px 0 4px;
}

.price span,
.price small {
  color: #dbe0e8;
  font-weight: 800;
}

.price span {
  margin-top: 11px;
}

.price strong {
  font-size: 3.45rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.price small {
  margin-top: 12px;
  font-size: 1.12rem;
}

.monthly {
  min-height: 54px;
  margin-bottom: 16px;
  font-weight: 800;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  min-height: 128px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 25px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-hover);
  font-weight: 900;
}

.btn-card {
  width: 100%;
  margin-top: auto;
  background: rgba(175, 48, 202, 0.12);
  color: var(--text);
  border-color: rgba(175, 48, 202, 0.36);
}

.btn-card:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  box-shadow: 0 16px 34px rgba(175, 48, 202, 0.25);
}

.trial-box {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
  margin-top: 20px;
  padding: 26px;
  border-radius: 24px;
}

.trial-box h3 {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.trial-box p {
  margin-bottom: 0;
}

.compare {
  background: rgba(5, 8, 12, 0.45);
  border-block: 1px solid var(--border);
}

.compare-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.saving-board {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
}

.saving-board div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 17px;
  background: rgba(255,255,255,0.045);
}

.saving-board span {
  color: var(--text-muted);
  font-weight: 750;
}

.saving-board b {
  font-size: 1.35rem;
}

.saving-board .highlight {
  background: rgba(175, 48, 202, 0.15);
  border: 1px solid rgba(175, 48, 202, 0.32);
}

.saving-board .highlight span,
.saving-board .highlight b {
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

details {
  border-radius: 18px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--primary-hover);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "−";
}

.faq p {
  padding: 0 22px 20px;
  margin-bottom: 0;
}

.floating-cart {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 64px;
  min-height: 58px;
  border: 1px solid rgba(175, 48, 202, 0.48);
  border-radius: 999px;
  background: rgba(5, 8, 12, 0.86);
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  cursor: pointer;
  padding: 0 17px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  background: rgba(0,0,0,0.64);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(440px, 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--bg-header);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cart-head h2 {
  margin: 0;
  font-size: 2rem;
}

.close-cart,
.remove-item {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
}

.close-cart {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 1.45rem;
}

.cart-empty {
  margin: 28px 0;
  padding: 24px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 18px;
  color: var(--text-muted);
}

.cart-empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.cart-empty p {
  margin-bottom: 0;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(17, 22, 29, 0.9);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.remove-item {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 1.2rem;
}

.cart-footer {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.cart-total span {
  color: var(--text-muted);
}

.cart-total strong {
  font-size: 1.45rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 120;
  max-width: min(520px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(175, 48, 202, 0.45);
  border-radius: 999px;
  background: rgba(5, 8, 12, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  text-align: center;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: unset;
  }
}

@media (max-width: 760px) {
  :root {
    --section-spacing: 62px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .top-strip {
    flex-direction: column;
    gap: 5px;
    font-size: 0.84rem;
  }

  .nav {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(5, 8, 12, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .cart-button {
    width: 100%;
    justify-content: center;
  }

  .brand small {
    display: none;
  }

  .hero-grid {
    gap: 26px;
  }

  .mini-proof,
  .benefits-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .trial-box {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-large,
  .trial-box .btn {
    width: 100%;
  }

  .hero-panel,
  .conversion-card,
  .benefit-card,
  .plan-card,
  .trial-box,
  .saving-board {
    border-radius: 20px;
  }

  .plan-top {
    min-height: unset;
  }

  .monthly,
  .plan-card ul {
    min-height: unset;
  }

  .saving-board div {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-cart {
    right: 14px;
    bottom: 14px;
  }

  .cart-panel {
    padding: 18px;
  }
}

/* Comparativo psicológico de economia */
.comparison-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
}

.annual-psych-card {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(175, 48, 202, 0.42);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 0%, rgba(175, 48, 202, 0.25), transparent 42%),
    rgba(17, 22, 29, 0.86);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
}

.annual-psych-card span,
.annual-psych-card small {
  color: var(--text-muted);
  font-weight: 800;
}

.annual-psych-card strong {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.comparison-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(17, 22, 29, 0.78);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.24);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
  background: rgba(5, 8, 12, 0.62);
  color: #efc7f8;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table td {
  color: #d8dde5;
  font-weight: 700;
}

.comparison-table td:nth-child(2),
.comparison-table th:nth-child(2) {
  white-space: nowrap;
}

.comparison-table tbody tr:hover {
  background: rgba(175, 48, 202, 0.07);
}

.comparison-table tfoot td {
  border-bottom: 0;
  background: rgba(175, 48, 202, 0.14);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 950;
}

.saving-board-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.saving-board-wide div {
  flex-direction: column;
  align-items: flex-start;
}

.psych-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(175, 48, 202, 0.34);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(175, 48, 202, 0.14), rgba(17, 22, 29, 0.78));
}

.psych-strip p {
  max-width: 820px;
  margin: 0;
  color: #d8dde5;
  line-height: 1.65;
}

.psych-strip strong {
  color: var(--text);
}

@media (max-width: 1040px) {
  .comparison-head,
  .saving-board-wide {
    grid-template-columns: 1fr;
  }

  .comparison-wrap {
    overflow-x: auto;
  }

  .psych-strip {
    align-items: stretch;
    flex-direction: column;
  }
}
