html {
  scrollbar-color: #785ea1 #f4ecd9;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f4ecd9;
}

::-webkit-scrollbar-thumb {
  background: #785ea1;
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5a4478;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a,
button,
.feature-card,
.photo,
.navbar-logo,
.nav-icon,
.cta,
.footer-link,
.sheet-handle {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.navbar {
  background-color: #f4ecd9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar-logo {
  font-size: 5.07rem;
  line-height: 1;
}

.navbar-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-icons a {
  display: flex;
  align-items: center;
  transition:
    transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.25s ease;
}

.navbar-icons a:hover {
  transform: translateY(-4px) scale(1.12);
  opacity: 0.85;
}

.nav-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.ulule-coming-soon {
  position: relative;
  cursor: not-allowed;
}

.coming-soon-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  transform: none;
  background: #785ea1;
  color: #f4ecd9;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: "Lato", sans-serif;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
}

.ulule-coming-soon:hover .coming-soon-tooltip {
  opacity: 1;
}

h1 {
  font-size: 3.5em;
}

.purple-bg {
  background-color: #785ea1;
}

.beige-bg {
  background-color: #f4ecd9;
}

.purple-txt {
  color: #785ea1;
}

.beige-txt {
  color: #f4ecd9;
}

.flex-container {
  display: flex;
  justify-content: space-around;
}

.dynapuff-txt,
.dynapuff-bold {
  font-family: "DynaPuff", system-ui;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.dynapuff-txt {
  font-weight: 400;
}

.dynapuff-bold {
  font-weight: 700;
}

.centre {
  text-align: center;
}

.m-1 {
  margin: 0.5rem;
}

@keyframes cardReveal {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  60% {
    transform: translateY(-4px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card {
  border-radius: 16px;
  max-width: 750px;
  width: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  animation: cardReveal 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

.countdown-box {
  background: #785ea1;
  border-radius: 16px;
  padding: 24px;
  color: #f4ecd9;
}

.countdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.time-group {
  text-align: center;
}

.digits {
  display: flex;
  gap: 4px;
}

.digits span {
  background: rgba(244, 236, 217, 0.85);
  color: #785ea1;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 3.38rem;
  font-weight: bold;
}

.colon {
  font-size: 3.38rem;
  font-weight: bold;
  color: #f4ecd9;
  align-self: flex-start;
  padding-top: 12px;
}

.time-group p {
  margin-top: 8px;
  font-size: 1.521rem;
}

.cta {
  background: #785ea1;
  color: #f4ecd9;
  border: none;
  border-radius: 40px;
  padding: 16px;
  font-size: 1.69rem;
  font-weight: bold;
  font-style: italic;
  cursor: pointer;
  width: 100%;
}

.lato-regular,
.lato-black,
.lato-light,
.lato-light-italic,
.lato-bold-italic {
  font-family: "Lato", sans-serif;
}

.lato-regular {
  font-weight: 400;
  font-style: normal;
}
.lato-black {
  font-weight: 900;
  font-style: normal;
}
.lato-light {
  font-weight: 300;
  font-style: normal;
}
.lato-light-italic {
  font-weight: 300;
  font-style: italic;
}
.lato-bold-italic {
  font-weight: 700;
  font-style: italic;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-card {
  background: transparent;
  border-radius: 16px;
  perspective: 800px;
  cursor: pointer;
  /* height driven by card-inner min-height */
}

.card-inner {
  position: relative;
  min-height: 220px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 16px;
}

.feature-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
  box-sizing: border-box;
}

.card-front {
  background: #f4ecd9;
  box-shadow: 8px 9px 11px rgba(0, 0, 0, 0.35);
}

.card-back {
  background: #f4ecd9;
  box-shadow: 8px 9px 11px rgba(0, 0, 0, 0.35);
  transform: rotateY(180deg);
}

.card-back img {
  width: 80%;
  max-width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.text-right {
  text-align: right;
}

.ml-sm {
  margin-left: 30px;
}

.about-section {
  max-width: 1000px;
  width: 100%;
  padding: 0 2rem;
}

.about-section h2 {
  font-size: 2.535rem;
}

.about-section p {
  font-size: 1.69rem;
}

.feature-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.photo {
  padding: 20px;
  background: #f4ecd9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.photo-role {
  background: transparent;
  margin: 0;
  padding: 2px 0 0;
  font-size: 1rem;
  color: #000;
}

.photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.photo-grid-wrapper {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-title {
  margin: 0;
  font-size: 7em;
  letter-spacing: -0.05em;
}

.hero-subtitle {
  margin: 0;
  margin-top: -5px;
}

.countdown-header h2 {
  margin: 0;
}

.features-title {
  font-size: 2.5rem;
}

.features-footer {
  padding-top: 2rem;
  font-size: 2.5rem;
}

.bonus-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 2rem 0;
  flex-wrap: nowrap;
}

.bonus-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  flex: 0 0 auto;
  width: 140px;
}

.bonus-item img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.bonus-item p {
  margin: 0;
  font-size: 1.4rem;
}

.about-wrapper {
  padding: 7rem 0;
}

.about-text {
  padding-top: 1rem;
}

.team-section {
  border-radius: 25px;
}

.newsletter-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem 3rem;
  gap: 1.5rem;
}

.newsletter-title {
  margin: 0;
  font-size: 2rem;
  max-width: 540px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 40px;
  border: 2px solid #785ea1;
  font-size: 1.1rem;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  outline: none;
}

.newsletter-input:focus {
  border-color: #5a4478;
}

.newsletter-input::placeholder {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.newsletter-btn {
  width: 100%;
}

.newsletter-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.newsletter-toast {
  display: none;
  background: #785ea1;
  color: #f4ecd9;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  text-align: center;
  animation: fadeInOut 4s ease forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.pros-contact {
  background: #785ea1;
  color: #f4ecd9;
  padding: 16px 32px;
  border-radius: 40px;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pros-contact p {
  margin: 0;
  color: #f4ecd9;
}

.pros-link {
  color: #f4ecd9;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s ease-in-out;
}

.pros-link:hover {
  background-size: 100% 1px;
}

/* ── Footer ── */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 3rem;
  border-radius: 25px 25px 0 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.footer-logo {
  font-size: 2.5rem;
  letter-spacing: -0.05em;
  display: inline-block;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.footer-label {
  color: #f4ecd9;
  opacity: 1;
  font-size: 0.95rem;
}

.footer-link {
  color: #f4ecd9;
  text-decoration: none;
  opacity: 0.85;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition:
    background-size 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.footer-link:hover {
  opacity: 1;
  background-size: 100% 1px;
}

/* ── Bottom sheet ── */
.sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.sheet-overlay.open {
  display: block;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f4ecd9;
  border-radius: 24px 24px 0 0;
  padding: 1.5rem 2rem 3rem;
  z-index: 101;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition:
    transform 0.4s cubic-bezier(0.32, 0.72, 0, 1),
    visibility 0.4s;
  visibility: hidden;
}

.bottom-sheet.open {
  transform: translateY(0);
  visibility: visible;
}

.sheet-handle {
  width: 40px;
  height: 5px;
  background: #785ea1;
  border-radius: 3px;
  margin: 0 auto 1.5rem;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.sheet-handle:hover {
  opacity: 0.75;
}

.sheet-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.sheet-body h3 {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: #785ea1;
  margin: 1.4rem 0 0.3rem;
}

.sheet-body ul {
  padding-left: 1.4rem;
  margin: 0.3rem 0;
}

.sheet-body a {
  color: #785ea1;
}

.team-title {
  padding-bottom: 2rem;
  font-size: 3.718rem;
  font-weight: 900;
}

.photo-name {
  color: #000;
  font-size: 1.2rem;
}

/* ── Flip-in scroll animation ── */
@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(600px) rotateY(-80deg) scale(0.9);
  }
  60% {
    transform: perspective(600px) rotateY(10deg) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: perspective(600px) rotateY(0deg) scale(1);
  }
}

.flip-in {
  opacity: 0;
  transform: perspective(600px) rotateY(-80deg) scale(0.9);
}

.flip-in.visible {
  animation: flipInY 0.55s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* ── Hero letter drop-in ── */
@keyframes letterDrop {
  0% {
    opacity: 0;
    transform: translateY(-48px);
  }
  60% {
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title .letter,
.letter-drop-target .letter {
  display: inline-block;
  opacity: 0;
  animation: letterDrop 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes subtitleFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  opacity: 0;
  animation: subtitleFade 0.6s ease-out forwards;
}

/* ── Paragraph cascade ── */
@keyframes cascadeFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cascade-item {
  opacity: 0;
}

.cascade-item.visible {
  animation: cascadeFadeUp 0.55s ease-out forwards;
}

/* ── Bonus icon stagger ── */
.bonus-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

.bonus-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Fade-in on scroll ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
}

.fade-in.visible {
  animation: fadeUp 0.6s ease-out forwards;
}

/* ── Nooky Easter Eggs ── */
#nooky {
  position: fixed;
  bottom: 0;
  z-index: 99;
  pointer-events: none;
  display: none;
}

#nooky-img {
  display: block;
  width: 110px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.18));
}

#nooky.nooky-slide-right {
  right: 0;
  left: auto;
  transform: translateX(110%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#nooky.nooky-slide-right.nooky-in {
  transform: translateX(0);
}

#nooky.nooky-slide-left {
  left: 0;
  right: auto;
  transform: translateX(-110%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#nooky.nooky-slide-left.nooky-in {
  transform: translateX(0);
}

#nooky.nooky-slide-left #nooky-img {
  transform: scaleX(-1);
}

#nooky.nooky-corner {
  right: 20px;
  left: auto;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

#nooky.nooky-corner.nooky-in {
  opacity: 1;
  transform: translateY(0);
}

#nooky.nooky-popup {
  bottom: auto;
  opacity: 0;
  transform: scale(0.7) translateY(20px);
  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

#nooky.nooky-popup.nooky-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── Responsive: Large tablet (≤ 991.98px) — Bootstrap lg ── */
@media (max-width: 991.98px) {
  .navbar-logo {
    font-size: 4.5rem;
  }

  .nav-icon {
    width: 46px;
    height: 46px;
  }

  .digits span {
    font-size: 2.8rem;
    padding: 10px 13px;
  }

  .colon {
    font-size: 2.8rem;
  }

  .time-group p {
    font-size: 1.25rem;
  }
}

/* ── Responsive: Mobile layout (≤ 767.98px) — Bootstrap md ── */
@media (max-width: 767.98px) {
  .navbar {
    padding: 0.75rem 1.5rem;
  }

  .navbar-logo {
    font-size: 3.5rem;
  }

  .nav-icon {
    width: 36px;
    height: 36px;
  }

  .navbar-icons {
    gap: 1rem;
  }

  .hero-title {
    font-size: 5em;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .digits span {
    font-size: 2.1rem;
    padding: 8px 10px;
  }

  .colon {
    font-size: 2.1rem;
  }

  .time-group p {
    font-size: 1rem;
  }

  .cta {
    font-size: 1.35rem;
    padding: 14px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card img {
    width: 88px;
    height: 88px;
  }

  .card-front,
  .card-back {
    padding: 20px;
  }

  .features-title {
    font-size: 2rem;
  }

  .features-footer {
    font-size: 2rem;
  }

  .bonus-item {
    width: 110px;
  }

  .bonus-item img {
    width: 85px;
    height: 85px;
  }

  .bonus-item p {
    font-size: 1.1rem;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section h2 {
    font-size: 1.9rem;
  }

  .about-section p {
    font-size: 1.3rem;
  }

  .team-title {
    font-size: 2.8rem;
  }

  .newsletter-title {
    font-size: 1.7rem;
  }
}

/* ── Responsive: Small mobile (≤ 575.98px) — Bootstrap sm ── */
@media (max-width: 575.98px) {
  .navbar {
    padding: 0.6rem 1rem;
  }

  .navbar-logo {
    font-size: 2.6rem;
  }

  .nav-icon {
    width: 28px;
    height: 28px;
  }

  .navbar-icons {
    gap: 0.75rem;
  }

  .hero-title {
    font-size: 4em;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    padding: 0 1.25rem;
  }

  .countdown-box {
    padding: 10px 12px 2rem;
  }

  .countdown-timer {
    gap: 3px;
  }

  .digits {
    gap: 2px;
  }

  .digits span {
    font-size: 1.3rem;
    padding: 4px 6px;
    border-radius: 6px;
  }

  .colon {
    font-size: 1.3rem;
    padding-top: 4px;
  }

  .time-group p {
    font-size: 0.78rem;
    margin-top: 3px;
  }

  .cta {
    font-size: 1.05rem;
    padding: 12px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    width: 110px;
    height: 110px;
  }

  .card-inner {
    min-height: 200px;
  }

  .card-front,
  .card-back {
    padding: 28px;
  }

  .features-title {
    font-size: 1.55rem;
  }

  .features-footer {
    font-size: 1.55rem;
  }

  .bonus-row {
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1.5rem 1rem 0;
  }

  .bonus-item {
    width: 80px;
  }

  .bonus-item img {
    width: 64px;
    height: 64px;
  }

  .bonus-item p {
    font-size: 0.82rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .about-wrapper {
    padding: 4rem 0;
  }

  .about-section h2 {
    font-size: 1.4rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .team-title {
    font-size: 2rem;
    padding-bottom: 1rem;
  }

  .newsletter-section {
    padding: 3rem 1.25rem 2rem;
  }

  .newsletter-title {
    font-size: 1.3rem;
  }

  .pros-contact {
    font-size: 1rem;
    padding: 14px 20px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .footer-left {
    align-items: center;
  }

  .footer-right {
    align-items: center;
  }

  .bottom-sheet {
    padding: 1.5rem 1.25rem 2.5rem;
    max-height: 88vh;
  }

  #nooky-img {
    width: 60px;
  }
}
