/* ═══════════════════════════════════════════
   Pillarx Landing — styles-v6.css
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --violet:  #614DEF;
  --violet2: #7B6BF2;
  --green:   #47D17F;
  --chip-green: #95DEB7;
  --orange:  #F4530C;
  --yellow:  #EDEEA5;
  --pink:    #F8C2F6;
  --ink:     #0F0F1A;
  --muted:   rgba(15,15,26,0.5);
  --font: 'Poppins', sans-serif;
}

html, body {
  width: 100%; height: 100svh;
  overflow: hidden;
  overscroll-behavior: none;
  position: fixed;
  inset: 0;
  background: #F4F1FA url('../img/desktop-v4.png') center / cover no-repeat;
  color: var(--ink);
  font-family: var(--font);
}

/* ── LAYOUT ── */
.page {
  position:relative; z-index:1;
  display:grid; grid-template-rows:64px 1fr 52px;
  width:100%; height:100svh;
}

/* ── HEADER ── */
header {
  display:flex; align-items:center; padding:0 40px;
  background: rgb(255,255,255); border:none;
}
.brand { display:flex; align-items:center; text-decoration:none; }
.brand-logo-combo { height:70px; max-width:48%; width:auto; object-fit:contain; }

/* ── HERO ── */
.hero { display:flex; align-items:center; justify-content:center; padding:24px; }

/* ── BILLBOARD ── */
.billboard {
  position:relative; width:100%; max-width:880px;
  border-radius:40px;
  background: rgba(255,255,255,0.80);
  overflow:hidden;
  box-shadow:9px 11px 41.5px rgba(0,0,0,.40);
  height:min(480px, calc(100vh - 64px - 52px - 48px));
}

.billboard::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:2px;
  background: linear-gradient(270deg, rgba(78,200,128,.75), rgba(255,255,255,.75) 47.57%, rgba(96,77,238,.75));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

/* ── SLIDES ── */
.slides { position:relative; width:100%; height:100%; }
.slide {
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  padding:40px 56px;
  opacity:0; transform:translateX(60px);
  transition:opacity .4s ease, transform .4s ease;
  pointer-events:none;
}
.slide.active { opacity:1; transform:translateX(0); pointer-events:all; }
.slide.exit-left  { opacity:0; transform:translateX(-60px); }
.slide.exit-right { opacity:0; transform:translateX(60px); }

/* ── X WATERMARK (solo en preguntas) ── */
.q-watermark {
  position:absolute;
  right:10px; top:50%; transform:translateY(-50%);
  height:150%;
  opacity:.13;
  z-index:0;
  pointer-events:none;
  user-select:none;
}
.slide-question > *:not(.q-watermark) { position:relative; z-index:1; }

/* ── WELCOME SLIDE ── */
.slide-welcome { text-align:center; gap:18px; }
.welcome-to {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(40px, 8vw, 72px);
  color: var(--violet);
  letter-spacing: -1px;
  line-height: 1;
  white-space: nowrap;
}
.welcome-logo {
  height:clamp(64px, 11vw, 120px);
  display:block;
  margin: -25px auto 0;
}

.welcome-sub {
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 420px;
  margin-top: -6px;
}
.welcome-sub strong { font-weight: 600; }

/* ── BOTÓN EARLY ACCESS — shimmer en reposo + salto en hover ── */
.btn-early-access {
  position: relative;
  background:#4EC880;
  border:none; border-radius:32px;
  padding:2px 20px 2px 20px;
  cursor:pointer; margin-top:10px;
  display:flex; align-items:center; justify-content:center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  overflow: hidden;
  isolation: isolate;
}
.btn-early-access:hover {
  background:#3EB670;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 16px 38px rgba(78,200,128,.45);
}

/* Franja de brillo que cruza el botón en bucle */
.btn-early-access::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  background-size: 250% 100%;
  border-radius: inherit;
  pointer-events: none;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  60%, 100% { background-position: -50% 0; }
}

.btn-early-access-text {
  position: relative;
  z-index: 1;
  font-family:var(--font); font-weight:500;
  font-size:clamp(25px, 1vw, 25px);
  color:#fff;
  text-transform:uppercase;
}

.welcome-hint {
  font-family: var(--font);
  font-weight: 400;
  font-size:13px; letter-spacing:1px;
  color:var(--ink); margin-top:2px;
}

/* ── QUESTION SLIDES ── */
.slide-question {
  gap:12px; width:100%;
  justify-content:flex-start;
  overflow-x: hidden;
  overflow-y: hidden;
}
.slide-question.input-focused {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slide-question::-webkit-scrollbar {
  display: none;
}
.q-step {
  font-family: var(--font);
  font-weight: 300;
  font-size:15px; letter-spacing:0px; text-transform:uppercase;
  color:var(--violet2);
  margin-bottom:4px;
  align-self:flex-start;
}
.q-label {
  font-family: var(--font);
  font-weight: 800;
  font-size:clamp(20px,3.5vw,38px);
  line-height:1.15; letter-spacing:-.8px;
  color:var(--ink); align-self:flex-start;
  margin-top: 60px;
}
.q-required-note {
  font-family: var(--font);
  font-weight: 400;
  font-size:11px; letter-spacing:1px; text-transform:uppercase;
  color:var(--orange); align-self:flex-start;
  margin-top: 50px;
}
.q-input {
  width:100%; margin-top: -2px;
  font-family:var(--font); font-weight:400; font-size:16px; color:var(--ink);
  background:rgba(97,77,239,.04); border:1.5px solid rgba(97,77,239,.35);
  border-radius:14px; padding:14px 18px; outline:none; transition:all .25s;
}
.q-input::placeholder { color:rgba(15,15,26,.32); }
.q-input:focus {
  border-color:var(--violet); background:rgba(97,77,239,.07);
  box-shadow:0 0 0 3px rgba(97,77,239,.14);
}
.q-input.error { border-color:var(--orange); box-shadow:0 0 0 3px rgba(244,83,12,.15); }
.q-error-msg {
  font-family: var(--font);
  font-weight: 400;
  font-size:12px;
  align-self:flex-start; margin-top:-4px; min-height:16px;
  color:var(--orange);
  opacity:0; transition:opacity .2s;
}
.q-error-msg.visible { opacity:1; }

/* ── CHIPS ── */
.choices {
  width:100%; margin-top:-7px;
  display:grid; grid-template-columns:repeat(3, 1fr); gap:10px;
}
.chip {
  font-family:var(--font); font-weight:400; font-size:13.5px;
  color:var(--ink); background:#fff;
  border:3px solid rgba(97,77,239,.3);
  border-radius:14px; padding:12px 14px;
  cursor:pointer; transition:all .2s; text-align:center;
}
.choices .chip:nth-child(1) { border-color:var(--yellow); }
.choices .chip:nth-child(2) { border-color:var(--pink); }
.choices .chip:nth-child(3) { border-color:var(--chip-green); }
.choices .chip:nth-child(4) { border-color:var(--chip-green); }
.choices .chip:nth-child(5) { border-color:var(--yellow); }
.choices .chip:nth-child(6) { border-color:var(--pink); }
.chip:hover { transform:translateY(-1px); box-shadow:0 6px 16px rgba(20,10,60,.08); }
.chip.selected { background:var(--violet); border-color:var(--violet); color:#fff; }

/* ── "OTHER" INPUT — animado ── */
.chip-other-wrap {
  width:100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height .3s ease, opacity .25s ease, margin-top .3s ease;
}
.chip-other-wrap.visible {
  max-height: 100px;
  opacity: 1;
  margin-top: 10px;
}
.chip-other-wrap .q-input { padding:10px 16px; margin-top:0; }

/* ── SLIDE 4 (Which best describes you) ── */
.slide[data-index="4"] .q-required-note { margin-top: 25px; }
.slide[data-index="4"] .q-label { margin-top: 30px; }
.slide[data-index="4"] .choices { margin-top: 2px; }
.slide[data-index="4"] .chip-other-wrap.visible { margin-top: 5px; }

/* ── SLIDE 5 (What are you hoping to achieve) ── */
.slide[data-index="5"] .q-required-note { margin-top: 19px; }
.slide[data-index="5"] .q-label { margin-top: 30px; }
.slide[data-index="5"] .choices { margin-top: -2px; }
.slide[data-index="5"] .chip-other-wrap.visible { margin-top: -4px; }

/* ── NAV ARROWS ── */
.nav-arrows {
  position:absolute; left:0; right:0; bottom:28px;
  height:44px;
  pointer-events:none;
}
#btn-prev {
  position:absolute; left:40px; top:50%; transform:translateY(-50%);
}
.progress-dots {
  position:absolute; left:50%; top:50%; transform:translate(-50%, -50%);
  display:flex; gap:6px; align-items:center;
}
#btn-next {
  position:absolute; right:40px; top:50%; transform:translateY(-50%);
}

.arrow-btn {
  pointer-events:all; width:44px; height:44px; border-radius:50%;
  border:1.5px solid var(--violet); background:#fff;
  color:var(--violet); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:all .3s ease;
  overflow:hidden;
}
.arrow-btn:hover:not(:disabled) {
  background:var(--violet); color:#fff; transform:scale(1.08);
}
.arrow-btn:disabled { opacity:.25; cursor:default; }
.arrow-btn svg { width:18px; height:18px; flex-shrink:0; }

.dot { width:6px;height:6px;border-radius:50%;background:rgba(97,77,239,.18);transition:all .3s; }
.dot.active { background:var(--violet); width:20px; border-radius:3px; }
.dot.done   { background:var(--green); }

/* ── BOTÓN NEXT → se convierte en "Join the waitlist" en el último slide ── */
.btn-next-text {
  font-family:var(--font); font-weight:600; font-size:0;
  white-space:nowrap;
  max-width:0;
  overflow:hidden;
  transition: max-width .35s ease, font-size .35s ease, margin-right .35s ease;
  margin-right:0;
  order: 1;
}
.btn-next-icon { order: 2; }

#btn-next.is-submit {
  width:auto; min-width:44px;
  padding:0 18px;
  background:var(--green); border-color:var(--green); color:#fff;
  border-radius:26px;
}
#btn-next.is-submit:hover {
  background:#35C46E; border-color:#35C46E;
}
#btn-next.is-submit .btn-next-text {
  font-size:15px;
  max-width:220px;
  margin-right:8px;
}
#btn-next.is-submit .btn-next-icon {
  color:#fff;
}

/* ── SUCCESS — nuevo diseño con SVG de Rumi (globo + fondo integrados) ── */
.slide-success {
  flex-direction:row; align-items:center; text-align:left; gap:32px;
}

/* Rumi ya trae el globo de mensaje y el fondo semi-cuadrado dentro del propio SVG */
.success-character {
  height:min(380px, 100vw);
  flex-shrink:0;
  transform: translate(-25px, 40px);
}

.success-copy {
  display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
  text-align:left; gap:18px; max-width:360px;
}

.success-heading {
  display:flex; flex-direction:column;
  transform: translate(0px, 0px);
}
.heading-line-1 {
  font-family: var(--font); font-weight:800;
  font-size: clamp(48px, 5vw, 30px);
  color: var(--ink);
  letter-spacing:-0.5px; line-height:1.1;
  transform: translate(0px, 0px);
}
.heading-line-2 {
  font-family: var(--font); font-weight:800;
  font-size: clamp(45px, 5vw, 30px);
  color: var(--violet);
  letter-spacing:-0.5px; line-height:1.1;
  transform: translate(0px, 0px);
}

.success-intro {
  display:flex; align-items:center; gap:12px;
  transform: translate(0px, 0px);
}
.success-icon {
  width:38px; height:38px; flex-shrink:0;
  transform: translate(0px, 20px);
}
.success-intro-text {
  font-family: var(--font); font-weight:350;
  font-size:15px; color:var(--ink); line-height:1.4;
  transform: translate(0px, 20px);
}

.success-divider {
  width:100%; height:auto; display:block;
  transform: translate(0px, 20px);
}

.success-body {
  font-family: var(--font); font-weight:300;
  font-size:15px; color:var(--ink); line-height:1.65;
  transform: translate(0px, 20px);
}
.success-body strong { font-weight:600; }

/* ── FOOTER ── */
footer {
  display:flex; align-items:center; justify-content:space-between; padding:0 40px;
  background:transparent; border:none;
}
.footer-logo { display:flex; align-items:center; justify-content:flex-start; }
.footer-logo-img { height:60px; display:block; }
footer small {
  font-family: var(--font);
  font-weight: 400;
  font-size:15px; color:var(--violet); letter-spacing:.3px;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

@media (max-width: 900px) {
  .page { grid-template-rows:56px 1fr 48px; }
  header { padding:0 24px; }
  .brand-logo-combo { height:70px; }
  .billboard { height:min(520px, calc(100vh - 56px - 48px - 32px)); border-radius:36px; }
  .slide { padding:32px 36px; }
  .nav-arrows { bottom:20px; }
  #btn-prev { left:28px; }
  #btn-next { right:28px; }
  footer { padding:0 24px; }
  .footer-logo-img { height:50px; }
}

/* ── TABLET GRANDE VERTICAL (769px–1024px, portrait) ── */
@media (max-width: 1024px) and (orientation: portrait) {
  .page { grid-template-rows:56px 1fr 48px; }
  header { padding:0 24px; }
  .brand-logo-combo { height:90px; }
  .billboard { height:min(600px, calc(100vh - 56px - 48px - 32px)); border-radius:36px; }
  .slide { padding:32px 40px; }
  .nav-arrows { bottom:20px; }
  #btn-prev { left:28px; }
  #btn-next { right:28px; }
  footer { padding:0 24px; }
  .footer-logo-img { height:70px; }
}

@media (max-width: 768px) {
  .page { grid-template-rows:56px 1fr 48px; }
  header { padding:0 24px; }
  .brand-logo-combo { height:70px; }
  .billboard { height:min(520px, calc(100vh - 56px - 48px - 32px)); border-radius:36px; }
  .slide { padding:28px 32px; }
  .nav-arrows { bottom:20px; }
  #btn-prev { left:24px; }
  #btn-next { right:24px; }
  footer { padding:0 24px; }
  .footer-logo-img { height:50px; }

  /* Success: en vertical el texto va arriba y Rumi al final, con medidas achicadas para que quepa en los 520px del billboard */
  .slide-success { flex-direction:column; text-align:center; gap:10px; }
  .success-copy { order: 1; align-items:center; text-align:center; max-width:460px; gap:10px; }
  .success-character { order: 2; height:170px; transform:none; }
  .success-heading { align-items:center; gap:2px; transform:none; }
  .heading-line-1 { font-size:26px; transform:none; }
  .heading-line-2 { font-size:26px; transform:none; }
  .success-intro { justify-content:center; transform:none; }
  .success-icon { width:30px; height:30px; transform:none; }
  .success-intro-text { font-size:13px; transform:none; }
  .success-divider { max-width:300px; margin:0 auto; transform:none; }
  .success-body { font-size:12px; line-height:1.45; max-width:400px; margin:0 auto; transform:none; }
}
@media (max-width: 600px) {
  .page { grid-template-rows:52px 1fr 44px; }
  header { padding:0 16px; }
  .brand-logo-combo { height:38px; }
  .hero { padding:12px; }
  .billboard { border-radius:28px; height:calc(100vh - 52px - 44px - 24px); }
  .slide { padding:24px 28px 72px; }
  .choices { grid-template-columns:repeat(2, 1fr); }
  .welcome-sub { font-size:15px; }
  .nav-arrows { bottom:16px; }
  #btn-prev { left:20px; }
  #btn-next { right:20px; }
  .arrow-btn { width:44px; height:44px; }
  footer { padding:0 16px; }
  footer small { font-size:10px; }
  .footer-logo-img { height:20px; }
}

/* ── MOBILE VERTICAL (≤480px) ── */
@media (max-width: 480px) {
  .page { grid-template-rows:52px 1fr 44px; }
  header { padding:0 16px; }
  .brand-logo-combo { height:100px; max-width:48%; width:auto; }
  .hero { padding:10px; }

  .billboard { border-radius:24px; height:min(460px, calc(100vh - 52px - 44px - 40px)); }

  .slide { padding:24px 20px 64px; }

  .welcome-to { font-size:clamp(40px, 8.5vw, 38px); white-space:normal; }
  .welcome-logo { height:55px; margin-top:2px; }

  .welcome-sub { font-size:14px; }

  .btn-early-access { padding:11px 30px; border-radius:20px; }
  .btn-early-access-text { font-size:18px; }

  .q-label { font-size:clamp(18px,5vw,24px); }
  .q-input { font-size:16px !important; padding:13px 16px; }

  /* Chips más compactos — menos padding, letra y borde más chicos */
  .choices { grid-template-columns:repeat(2, 1fr); gap:6px; margin-top:0; }
  .chip { font-size:11px; padding:8px 6px; border-width:2px; }

  .q-watermark { opacity:.08; right:-80px; }

  /* Flechas más chicas, ganan espacio abajo */
  .nav-arrows { bottom:6px; }
  #btn-prev { left:10px; }
  #btn-next { right:10px; }
  .arrow-btn { width:36px; height:36px; }
  .arrow-btn svg { width:14px; height:14px; }

  .progress-dots { gap:4px; }
  .dot { width:5px; height:5px; }
  .dot.active { width:14px; }

  /* Botón "Join" más compacto en mobile */
  #btn-next.is-submit { padding:0 12px; }
  #btn-next.is-submit .btn-next-text { max-width:130px; font-size:12px; margin-right:5px; }

  /* Ajuste de espaciado interno para compensar la fila extra de chips
     y el q-label más chico (clamp 18-24px vs 20-38px de desktop) */
  .slide[data-index="4"] .q-required-note { margin-top:12px; }
  .slide[data-index="4"] .q-label { margin-top:14px; }
  .slide[data-index="5"] .q-required-note { margin-top:12px; }
  .slide[data-index="5"] .q-label { margin-top:14px; }

  /* Input "Other" más compacto para que entre sin recortarse */
  .chip-other-wrap.visible { max-height:90px; margin-top:6px; }
  .chip-other-wrap .q-input {
    padding:6px 12px;
    font-size:14px !important;
  }

  footer { padding:0 16px; }
  .footer-logo-img { height:30px; }
  footer small { font-size:11px; }

  /* Success mobile — columna, cada elemento con su propio transform ajustable */
  .slide-success { flex-direction:column; text-align:center; gap:10px; }

  .success-character { height:230px; transform: translate(0px, 40px); }

  .success-copy { align-items:center; text-align:left; max-width:100%; gap:10px; }

  .success-heading { align-items:flex-start; text-align:left; transform: translate(0px, 0px); }
  .heading-line-1 { font-size:37px; text-align:left; transform: translate(-30px, 30px); }
  .heading-line-2 { font-size:37px; text-align:left; transform: translate(-30px, 30px); }

  .success-intro { justify-content:center; transform: translate(0px, 0px); }
  .success-icon { width:28px; height:28px; transform: translate(-30px, 45px); }

  .success-intro-text {
    font-size:12px;
    max-width:200px;
    text-align:left;
    transform: translate(-30px, 45px);
  } 

  .success-divider { max-width:220px; margin:0 auto; transform: translate(0px, 0px); }

  .success-body {
    font-size:11px;
    line-height:1.4;
    max-width:300px;
    margin:0 auto;
    text-align:left;
    transform: translate(0px, 45px);
  }
}

@media (max-width: 360px) {
  header { padding:0 12px; }
  .brand-logo-combo { height:24px; }
  .slide { padding:20px 16px 60px; }
  .welcome-logo { height:28px; }
  .welcome-sub { font-size:13px; }
  .choices { grid-template-columns:1fr; }
}

@media (max-height: 650px) {
  .welcome-sub { font-size:13px; margin-top:2px; }
  .slide { padding:24px 56px; }
  .billboard { height:min(420px, calc(100vh - 64px - 52px - 32px)); }
  .success-character { height:150px; transform: translate(0px, 0px); }
}

/* ── MOBILE LANDSCAPE (celular acostado) ── */
@media (max-width: 960px) and (max-height: 500px) and (orientation: landscape) {
  .page { grid-template-rows:40px 1fr 32px; }
  header { padding:0 20px; }

  .brand-logo-combo { height:70px; max-width:42%; width:auto; }

  .hero { padding:8px; }
  .billboard {
    border-radius:18px;
    height:calc(85vh - 40px - 32px - 16px);
  }

  .slide { padding:14px 32px; }
  .slide-welcome { gap:6px; }

  .welcome-to { font-size:clamp(40px, 4vw, 22px); white-space:normal; }
  .welcome-logo { height:50px; margin-top:0; }
  .welcome-sub { font-size:11px; line-height:1.35; margin-top:2px; }
  .btn-early-access { padding:8px 22px; border-radius:14px; margin-top:4px; }
  .btn-early-access-text { font-size:13px; }
  .welcome-hint { font-size:9px; margin-top:1px; }

  .q-step { font-size:8px; margin-bottom:2px; }
  .q-label { font-size:clamp(14px,3.5vw,18px); }
  .q-required-note { font-size:9px; }
  .q-input { padding:9px 14px; font-size:14px !important; margin-top:4px; }
  .choices { gap:6px; margin-top:4px; }
  .chip { font-size:10.5px; padding:7px 8px; }
  .q-watermark { opacity:.07; right:-40px; top:60%; transform:translateY(-50%)}

  /* Ajuste de espaciado para q-label más chico en este breakpoint */
  .slide[data-index="4"] .q-label { margin-top: 10px; }
  .slide[data-index="5"] .q-label { margin-top: 10px; }

  .nav-arrows { bottom:10px; }
  #btn-prev { left:16px; }
  #btn-next { right:16px; }
  .arrow-btn { width:32px; height:32px; }
  .arrow-btn svg { width:14px; height:14px; }
  .progress-dots { gap:4px; }
  .dot { width:5px; height:5px; }
  .dot.active { width:16px; }
  #btn-next.is-submit { min-width:32px; padding:0 14px; }
  #btn-next.is-submit .btn-next-text { font-size:11px; max-width:130px; margin-right:6px; }

  footer { padding:0 20px; }
  .footer-logo-img { height:40px; }
  footer small { font-size:9px; }

  /* Success landscape — reset de transforms de desktop + tamaños propios */
  .success-character { height:min(110px, 32vw); transform:none; }
  .success-copy { gap:6px; max-width:280px; }
  .success-heading { transform:none; }
  .heading-line-1 { font-size:16px; transform:none; }
  .heading-line-2 { font-size:16px; transform:none; }
  .success-intro { transform:none; }
  .success-icon { width:24px; height:24px; transform:none; }
  .success-intro-text { font-size:10px; transform:none; }
  .success-divider { transform:none; }
  .success-body { font-size:11px; line-height:1.4; transform:none; }
}

/* ── FONDOS RESPONSIVE POR ORIENTACIÓN ── */

@media (max-width: 1024px) and (orientation: landscape) {
  html, body { background-image: url('../img/tablet-landscape-v3.png'); }
}

@media (max-width: 1024px) and (orientation: portrait) {
  html, body { background-image: url('../img/tablet-portrait-v3.png'); }
}

@media (max-width: 600px) and (orientation: portrait) {
  html, body { background-image: url('../img/mobile-portrait-v3.png'); }
}