@import url("_ds/styles.css");

/* ---------------------------------------------------------------
   Velutina — landing page styles
   Recreates the Velutina Design System components (React-only) as
   plain CSS, driven entirely by the tokens imported above.
   ------------------------------------------------------------- */

:root {
  /* Soft-badge text colors — darkened per brand stop so text stays
     legible over the light tint backgrounds (matches Badge.jsx). */
  --badge-ink-purple: var(--brand-purple);
  --badge-ink-coral: #C26A60;
  --badge-ink-gold: #9A7A14;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body), system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--brand-gold);
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ---------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: var(--section-y);
  border-bottom: 1px solid var(--line);
}

.section--soft {
  background: var(--bg-soft);
}

.section__head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section__title {
  font-family: var(--font-display), sans-serif;
  font-weight: var(--fw-bold, 700);
  font-size: var(--fs-h2, 44px);
  line-height: var(--lh-h2, 1.05);
  letter-spacing: -0.015em;
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------
   Navbar
   ------------------------------------------------------------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.navbar__links::-webkit-scrollbar {
  display: none;
}

@media (max-width: 640px) {
  .navbar__links {
    display: none;
  }
}

.navbar__link {
  font-size: var(--fs-sm, 15px);
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color var(--dur-fast, .2s) var(--ease, ease);
}

.navbar__link:hover,
.navbar__link:focus-visible {
  color: var(--ink);
}

.navbar__cta {
  flex-shrink: 0;
}

/* ---------------------------------------------------------------
   Logo lockup
   ------------------------------------------------------------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.logo__mark {
  border-radius: 22%;
  flex-shrink: 0;
}

.logo__word {
  font-family: var(--font-display), sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo--sm .logo__mark {
  width: 28px;
  height: 28px;
}

.logo--sm .logo__word {
  font-size: 19px;
}

.logo--md .logo__mark {
  width: 34px;
  height: 34px;
}

.logo--md .logo__word {
  font-size: 22px;
}

.logo--lg .logo__mark {
  width: 44px;
  height: 44px;
}

.logo--lg .logo__word {
  font-size: 28px;
}

/* ---------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-button, 999px);
  font-family: var(--font-body), sans-serif;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-fast, .2s) var(--ease, ease),
    border-color var(--dur-fast, .2s) var(--ease, ease),
    color var(--dur-fast, .2s) var(--ease, ease),
    transform var(--dur-fast, .2s) var(--ease, ease);
}

.btn--lg {
  padding: 17px 30px;
  font-size: 17px;
}

.btn--md {
  padding: 15px 26px;
  font-size: 16px;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--brand-gradient);
  border-color: transparent;
}

.btn--secondary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--line);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  border-color: var(--line-strong);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-muted);
  border-color: transparent;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--ink);
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ---------------------------------------------------------------
   Badge
   ------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-pill, 999px);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.badge--gradient {
  background: var(--brand-gradient);
  color: #fff;
}

.badge--soft.badge--tone-purple {
  background: var(--tint-purple);
  color: var(--badge-ink-purple);
}

.badge--soft.badge--tone-coral {
  background: var(--tint-coral);
  color: var(--badge-ink-coral);
}

.badge--soft.badge--tone-gold {
  background: var(--tint-gold);
  color: var(--badge-ink-gold);
}

.badge--outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-muted);
}

.badge--status {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge__dot--success {
  background: var(--success);
}

.badge__dot--info {
  background: var(--info);
}

.badge__dot--warn {
  background: var(--warn);
}

.badge__dot--danger {
  background: var(--danger);
}

/* ---------------------------------------------------------------
   Eyebrow
   ------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow__rule {
  width: 28px;
  height: 2px;
  flex-shrink: 0;
  border-radius: 1px;
}

.eyebrow--purple .eyebrow__rule {
  background: var(--brand-purple);
}

.eyebrow--coral .eyebrow__rule {
  background: var(--brand-coral);
}

.eyebrow--gold .eyebrow__rule {
  background: var(--brand-gold);
}

.eyebrow--ink .eyebrow__rule {
  background: var(--ink);
}

.eyebrow__text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------------------------------------------------------------
   Card / FeatureCard
   ------------------------------------------------------------- */

.card {
  background: var(--surface-card, var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--r-card, 20px);
  padding: 28px;
  position: relative;
}

.card--interactive {
  transition: transform var(--dur-base, .4s) var(--ease, ease),
    box-shadow var(--dur-base, .4s) var(--ease, ease),
    border-color var(--dur-base, .4s) var(--ease, ease);
  box-shadow: var(--shadow-sm);
}

.card--interactive:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--line-strong);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.feature-card__title {
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: var(--fs-h3, 22px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
}

.feature-card__body {
  font-size: var(--fs-sm, 15px);
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
}

/* ---------------------------------------------------------------
   Gradient text / Halo
   ------------------------------------------------------------- */

.gradient-text {
  color: var(--brand-purple);
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.halo {
  position: relative;
  overflow: hidden;
}

.halo__glow {
  position: absolute;
  border-radius: 50%;
  background: var(--brand-gradient);
  filter: blur(70px);
  opacity: 0.24;
  pointer-events: none;
  z-index: 0;
}

.halo--top-right .halo__glow {
  width: 480px;
  height: 420px;
  top: -160px;
  right: -120px;
}

.halo--center .halo__glow {
  width: 520px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(90px);
  opacity: 0.2;
}

.halo__content {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------
   Hero
   ------------------------------------------------------------- */

.hero {
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 32px 0;
  display: flex;
  align-items: flex-end;
  gap: 40px;
  min-height: 560px;
}

.hero__text {
  max-width: 580px;
  padding-bottom: 80px;
}

.hero__badge {
  margin-bottom: 22px;
}

.hero__title {
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
  font-size: var(--fs-h1, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.hero__sub {
  font-size: var(--fs-body-lg, 18px);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 0 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__art {
  flex-shrink: 0;
  width: 500px;
  margin-bottom: 92px;
  opacity: 1;
  transition: filter .4s ease;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .18));
  animation:
    hero-fade-in 2.8s ease-out,
    hero-breathe-sway 9s ease-in-out 2.8s infinite;
}

.hero__art:hover {
  animation:
    hero-fade-in 2.8s ease-out,
    hero-hover-pulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, .22));
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-breathe-sway {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.03) rotate(1.2deg); }
  75% { transform: scale(1.03) rotate(-1.2deg); }
}

@keyframes hero-hover-pulse {
  0%, 100% { transform: scale(1.03) rotate(0deg); }
  50% { transform: scale(1.07) rotate(1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__art {
    animation: none;
  }

  .hero__art:hover {
    animation: none;
    transform: scale(1.03);
  }
}

@media (max-width: 1000px) {
  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 64px;
    min-height: unset;
  }

  .hero__text {
    padding-bottom: 0;
  }

  .hero__art {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero__title {
    font-size: 38px;
  }
}

/* ---------------------------------------------------------------
   Value props — 2-col asymmetric layout
   ------------------------------------------------------------- */

.value-props-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.value-props-claim {
  position: sticky;
  top: 80px;
}

.value-props-claim__text {
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.value-props-list {
  display: flex;
  flex-direction: column;
}

.value-prop-row {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.value-prop-row:last-child {
  border-bottom: 1px solid var(--line);
}

.value-prop__num {
  font-family: var(--font-display), sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  padding-top: 4px;
  flex-shrink: 0;
  width: 28px;
}

.value-prop__title {
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 8px;
}

.value-prop__text {
  font-size: var(--fs-sm, 15px);
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .value-props-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-props-claim {
    position: static;
  }

  .value-props-claim__text {
    font-size: 32px;
  }
}

/* ---------------------------------------------------------------
   Personas — horizontal rows with accent border
   ------------------------------------------------------------- */

.personas {
  position: relative;
}

.persona-rows {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}

.persona-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  padding-left: 28px;
  position: relative;
}

.persona-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 36px;
  bottom: 36px;
  width: 3px;
  border-radius: 2px;
}

.persona-row--purple::before {
  background: var(--brand-purple);
}

.persona-row--coral::before {
  background: var(--brand-coral);
}

.persona-row--gold::before {
  background: var(--brand-gold);
}

.persona-row:last-child {
  border-bottom: 1px solid var(--line);
}

.persona-row__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  width: 160px;
  padding-top: 3px;
}

.persona-row--purple .persona-row__label {
  color: var(--brand-purple);
}

.persona-row--coral .persona-row__label {
  color: var(--badge-ink-coral);
}

.persona-row--gold .persona-row__label {
  color: var(--badge-ink-gold);
}

.persona-row__body {
  flex: 1;
}

.persona-row__title {
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
}

.persona-row__text {
  font-size: var(--fs-sm, 15px);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0;
}

.persona-row__aside {
  flex-shrink: 0;
  width: 200px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
  font-style: italic;
  padding-top: 4px;
}

.personas__note {
  margin-top: 32px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

@media (max-width: 768px) {
  .persona-row {
    flex-wrap: wrap;
    gap: 14px;
  }

  .persona-row__label {
    width: 100%;
  }

  .persona-row__aside {
    display: none;
  }
}

/* ---------------------------------------------------------------
   Features
   ------------------------------------------------------------- */

.features__group {
  margin-top: 48px;
}

.features__group:first-of-type {
  margin-top: 0;
}

.features__group-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 20px;
}

.feature-card__badge {
  flex-shrink: 0;
}

/* ---------------------------------------------------------------
   Decorative strip
   ------------------------------------------------------------- */

.strip {
  background: var(--ink);
  color: #fff;
  padding-block: 36px;
  text-align: center;
}

.strip__text {
  font-family: var(--font-accent), serif;
  font-style: italic;
  font-size: 26px;
  margin: 0;
}

.strip__text+.strip__text {
  margin-top: 8px;
  opacity: 0.7;
  font-size: 18px;
}

/* ---------------------------------------------------------------
   Beta invite / steps / signup form
   ------------------------------------------------------------- */

.beta-invite__head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.beta-invite__title {
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
  font-size: var(--fs-h2, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.beta-invite__text {
  font-size: var(--fs-body-lg, 18px);
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 56px;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  text-align: left;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tint-purple);
  color: var(--brand-purple);
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
}

.step__title {
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px;
}

.step__text {
  font-size: var(--fs-sm, 15px);
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
}

.beta-invite__form-wrap {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.beta-invite__form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-card, 20px);
  box-shadow: var(--shadow);
  padding: 40px;
  text-align: center;
}

.beta-invite__form-note {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0 0 24px;
}

.signup-form__row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.signup-form__field {
  flex: 1 1 220px;
  text-align: left;
}

.signup-form__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.signup-form__input,
.signup-form__select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--r-lg, 16px);
  border: 1px solid var(--line);
  font-size: 16px;
  font-family: var(--font-body), sans-serif;
  color: var(--ink);
  background: var(--bg);
  appearance: none;
  -webkit-appearance: none;
}

.signup-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6570' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.signup-form__input:focus-visible,
.signup-form__select:focus-visible {
  outline: none;
  border-color: var(--brand-purple);
}

.signup-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.signup-form__grid .signup-form__field {
  flex: unset;
}

.signup-form__check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin-top: 8px;
}

.signup-form__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand-purple);
  cursor: pointer;
}

.signup-form__check-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
  cursor: pointer;
}

@media (max-width: 560px) {
  .signup-form__grid {
    grid-template-columns: 1fr;
  }
}

.signup-form__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  justify-content: center;
}

.signup-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup-form__privacy {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 18px 0 0;
}

@media (max-width: 560px) {
  .beta-invite__form-card {
    padding: 28px 22px;
  }

  .signup-form__row {
    flex-direction: column;
  }

  .signup-form__actions {
    flex-direction: column;
  }

  .signup-form__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------------------------------------------------------------
   FAQ
   ------------------------------------------------------------- */

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-lg, 16px);
  padding: 4px 24px;
  background: var(--bg);
}

.faq__question {
  list-style: none;
  cursor: pointer;
  padding: 18px 28px 18px 0;
  font-family: var(--font-display), sans-serif;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 22px;
  color: var(--ink-muted);
  transition: transform var(--dur-fast, .2s) var(--ease, ease);
}

.faq__item[open] .faq__question::after {
  content: "–";
}

.faq__answer {
  font-size: var(--fs-sm, 15px);
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 0 20px;
}

/* ---------------------------------------------------------------
   CTA final
   ------------------------------------------------------------- */

.cta-final {
  text-align: center;
}

.cta-final__card {
  border: 1px solid var(--line);
  border-radius: var(--r-card, 20px);
  background: var(--bg);
  padding: 64px;
}

.cta-final__title {
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
  font-size: var(--fs-h2, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.cta-final__text {
  font-size: var(--fs-body-lg, 18px);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta-final__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .cta-final__card {
    padding: 40px 24px;
  }
}

/* ---------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */

.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__text {
  font-size: 13px;
  color: var(--ink-muted);
}

/* ---------------------------------------------------------------
   Decorative illustrations
   ------------------------------------------------------------- */

.deco-img {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.deco-img--personas {
  width: 130px;
  top: -36px;
  right: 8px;
  opacity: 0.92;
}

.deco-img--beta {
  width: 110px;
  top: 50%;
  left: -150px;
  transform: translateY(-50%);
  opacity: 0.9;
}

.deco-img--cta {
  width: 140px;
  bottom: -32px;
  right: -20px;
  opacity: 0.9;
}

@media (max-width: 768px) {

  .deco-img--personas,
  .deco-img--beta,
  .deco-img--cta {
    display: none;
  }
}