/* =============================================
   FRIENDSHIP EVENTS — styles.css
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coral:   #E8664A;
  --coral-d: #C94F35;
  --coral-l: #F5AB99;
  --cream:   #FDF7F2;
  --warm-white: #FEFAF7;
  --ink:     #1A1208;
  --ink-mid: #4A3F35;
  --ink-light: #8A7A6E;
  --sage:    #4E7C59;
  --sage-l:  #D2E8D7;
  --gold:    #D4A843;
  --gold-l:  #F5E8C5;

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 16px rgba(26,18,8,.08);
  --shadow-lg: 0 8px 40px rgba(26,18,8,.12);

  --max-w: 1160px;
  --section-pad: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--warm-white);
  overflow-x: hidden;
}

em { font-style: italic; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,247,242,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,102,74,.12);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8px 24px;
  height: auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
}
.nav__logo-main {
  font-size: 1.15rem;
  line-height: 1;
}
.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.45rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav__links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  text-decoration: none;
  color: var(--ink-mid);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover { color: var(--coral); }

.nav__cta {
  background: var(--coral);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 100px;
  transition: background .2s !important;
}
.nav__cta:hover { background: var(--coral-d) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  width: 22px; height: 2px;
  background: var(--ink-mid);
  border-radius: 2px;
  transition: .3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.nav__mobile a {
  text-decoration: none;
  color: var(--ink-mid);
  font-weight: 500;
  font-size: 1rem;
}
.nav__mobile.open { display: flex; }

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--coral); color: #fff; }
.btn--primary:hover { background: var(--coral-d); }
.btn--ghost { background: transparent; color: var(--ink-mid); border: 2px solid rgba(0,0,0,.15); }
.btn--ghost:hover { border-color: var(--coral); color: var(--coral); }
.btn--outline { background: transparent; color: var(--coral); border: 2px solid var(--coral); }
.btn--outline:hover { background: var(--coral); color: #fff; }
.btn--secondary { background: var(--sage); color: #fff; }
.btn--secondary:hover { background: #3d6347; }
.btn__icon { font-size: 1.1rem; }

/* --- SECTIONS --- */
.section { padding: var(--section-pad) 0; }
.section__header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section__desc { color: var(--ink-light); margin-top: 12px; font-size: 1.05rem; }

.kicker {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--ink);
}
h2 em { color: var(--coral); font-style: italic; }

h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 10px;
}

h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

p { color: var(--ink-mid); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 64px;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.hero__inner {
  padding: 80px 24px 80px calc((100vw - var(--max-w))/2 + 24px);
  position: relative;
  z-index: 2;
}

.hero__kicker {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero__title em { color: var(--coral); font-style: italic; }

.hero__sub {
  font-size: 1.1rem;
  color: var(--ink-mid);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

/* Hero visual */
.hero__visual {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}
.blob--1 {
  width: 400px; height: 400px;
  background: var(--coral-l);
  top: 10%; right: 0;
}
.blob--2 {
  width: 300px; height: 300px;
  background: var(--gold-l);
  bottom: 10%; right: 20%;
}

.circles {
  position: relative;
  width: 360px;
  height: 360px;
}
.connect-lines {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 100%; height: 100%;
  overflow: visible;
}
.cline {
  stroke: var(--coral-l);
  stroke-width: 2;
  stroke-dasharray: 6 4;
  opacity: .8;
  animation: dash 20s linear infinite;
}
@keyframes dash {
  to { stroke-dashoffset: -200; }
}

.circle {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--coral-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 600;
  text-align: center;
  color: var(--ink-mid);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.c0 {
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  background: var(--coral);
  border-color: var(--coral);
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  animation: none;
  display: grid;
  place-items: center;
}
.c0 .conexus-logo {
  width: 75px;
  height: auto;
}
.c1 { top: 0; left: 50%; transform: translateX(-50%); background: var(--coral); color: #fff; border-color: var(--coral); animation-delay: 0s; }
.c2 { top: 30%; right: 0; animation-delay: .5s; }
.c3 { bottom: 10%; right: 5%; animation-delay: 1s; }
.c4 { bottom: 10%; left: 5%; animation-delay: 1.5s; }
.c5 { top: 30%; left: 0; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(var(--tx, 0)); }
  50% { transform: translateY(-8px) translateX(var(--tx, 0)); }
}
.c1 { --tx: -50%; }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
  .hero__inner {
    padding: 100px 24px 40px;
  }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { min-height: 320px; }
}

/* --- STATS --- */
.stats { background: var(--ink); }
.stats .kicker { color: var(--coral-l); }
.stats h2, .stats .section__desc { color: #fff; }
.stats h2 em { color: var(--coral-l); }
.stats .section__desc { color: rgba(255,255,255,.6); }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.stat-card__number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--coral-l);
  margin-bottom: 12px;
  line-height: 1;
}

.stat-card__label {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.stat-card__source {
  color: rgba(255,255,255,.35);
  font-size: .75rem;
}

@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .stats__grid { grid-template-columns: 1fr; }
}

.stats__quote {
  border-left: 3px solid var(--coral);
  padding: 24px 32px;
  margin: 0 0 56px;
  background: rgba(255,255,255,.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.stats__quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 12px;
}
.stats__quote cite {
  color: rgba(255,255,255,.4);
  font-size: .85rem;
}

.stats__flip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
}

.flip__side {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.flip__side h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: var(--font-sans);
}
.flip__side ul { list-style: none; }
.flip__side li {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  line-height: 1.4;
}
.flip__side li:last-child { border-bottom: none; }
.flip__side--problem h3 { color: var(--coral-l); }
.flip__side--solution h3 { color: var(--sage-l); }

.flip__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  text-align: center;
  max-width: 120px;
}
.flip__arrow {
  font-size: 2rem;
  color: var(--coral-l);
}

@media (max-width: 680px) {
  .stats__flip { grid-template-columns: 1fr; }
  .flip__divider { flex-direction: row; max-width: none; }
}

.downloads__teaser { text-align: center; }

/* --- WHAT IS IT --- */
.what { background: var(--cream); }

.what__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what__text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.what__features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.what__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--ink-mid);
}
.what__features .icon {
  width: 22px; height: 22px;
  background: var(--sage-l);
  color: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.what__formats { display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start; }
.what__formats-label {
  width: 100%;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-light);
  margin-bottom: 4px;
}

.format-pill {
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: .85rem;
  color: var(--ink-mid);
  transition: background .2s, border-color .2s;
  cursor: default;
}
.format-pill:hover { background: var(--coral); color: #fff; border-color: var(--coral); }

@media (max-width: 800px) {
  .what__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* --- HOW TO --- */
.how { background: var(--warm-white); }

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s, transform .5s;
}
.step.visible { opacity: 1; transform: translateY(0); }
.step:last-child { border-bottom: none; }

.step__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--coral-l);
  color: var(--coral);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.step:hover .step__num {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.step__content p { margin-bottom: 12px; }

.step__tips {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
}
.tips-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--coral);
  margin-bottom: 10px;
}
.step__tips ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step__tips li {
  font-size: .88rem;
  color: var(--ink-mid);
  padding-left: 14px;
  position: relative;
}
.step__tips li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: 16px; }
  .step__num { width: 42px; height: 42px; font-size: 1.1rem; }
}

/* --- IDEAS --- */
.ideas { background: var(--cream); }

.ideas__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 22px;
  border-radius: 100px;
  border: 2px solid rgba(0,0,0,.12);
  background: transparent;
  color: var(--ink-mid);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.tab:hover { border-color: var(--coral); color: var(--coral); }
.tab.active { background: var(--coral); color: #fff; border-color: var(--coral); }

.tab-content { display: none; }
.tab-content.active { display: block; }

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

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.card p { font-size: .9rem; line-height: 1.6; color: var(--ink-mid); }
.card__meta {
  font-size: .78rem !important;
  color: var(--ink-light) !important;
  margin-top: 14px !important;
  border-top: 1px solid rgba(0,0,0,.07);
  padding-top: 10px;
}

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

.prompt-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--coral);
  box-shadow: var(--shadow);
}
.prompt-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 8px;
}
.prompt-card p {
  font-size: .9rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-mid);
}

.prompts-note {
  text-align: center;
  margin-top: 24px;
  font-size: .85rem;
  color: var(--ink-light);
  font-style: italic;
}

@media (max-width: 900px) {
  .cards, .prompts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards, .prompts-grid { grid-template-columns: 1fr; }
}

/* --- TESTIMONIALS --- */
.testimonials { background: var(--warm-white); }

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

.testimonial {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
}

.testimonial__name {
  font-size: .8rem;
  color: var(--ink-light);
}

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

/* --- DOWNLOADS --- */
.downloads { background: var(--cream); }

.downloads__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.download-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.download-card__preview {
  background: var(--ink);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.pdf-preview { display: flex; align-items: center; justify-content: center; }

.pdf-page {
  background: #fff;
  border-radius: 6px;
  width: 140px;
  padding: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.pdf-title {
  font-family: var(--font-serif);
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 8px;
}

.pdf-lines { display: flex; flex-direction: column; gap: 6px; }
.pdf-line {
  height: 4px;
  background: #eee;
  border-radius: 2px;
}
.pdf-line--short { width: 60%; }
.pdf-line--medium { width: 80%; }

.pdf-page--slide {
  text-align: center;
  background: var(--ink);
  color: #fff;
  padding: 24px 18px;
}
.pdf-stat-big {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--coral-l);
  line-height: 1;
  margin-bottom: 8px;
}
.pdf-stat-label {
  font-size: .65rem;
  color: rgba(255,255,255,.6);
  line-height: 1.3;
}

.download-card__body { padding: 32px; }

.download-card__badge {
  display: inline-block;
  background: var(--gold-l);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.download-card__badge--alt {
  background: var(--sage-l);
  color: var(--sage);
}

.download-card__body h3 { margin-bottom: 12px; }
.download-card__body p { font-size: .95rem; margin-bottom: 20px; line-height: 1.65; }

.download-card__contents {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.download-card__contents li {
  font-size: .88rem;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
}
.download-card__contents li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: .75rem;
  font-weight: 700;
}

.downloads__share {
  text-align: center;
  padding: 40px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  color: #fff;
}
.downloads__share p {
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.share-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.share-btn {
  padding: 12px 24px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.3);
  background: transparent;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.share-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.share-btn--copy.copied { background: var(--sage); border-color: var(--sage); }

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

/* --- FOOTER --- */
.footer {
  background: var(--ink);
  padding: 56px 0 32px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}
.footer__tagline { color: rgba(255,255,255,.4); font-size: .9rem; }

.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__nav a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.footer__nav a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
}
.footer__bottom p { color: rgba(255,255,255,.25); font-size: .82rem; }

/* --- SCROLL ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
