/*==============================
=            RESET             =
==============================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html,
body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}

/*==============================
=    VARIABLES & BASE STYLES   =
==============================*/
:root {
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-300: #a5b4fc;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-800: #3730a3;
  --indigo-900: #312e81;
  --indigo-950: #1e1b4b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  --green-100: #d1fae5;
  --green-200: #a7f3d0;
  --green-500: #10b981;
  --green-600: #059669;
  --green-800: #065f46;
  --green-900: #064e3b;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-900: #7c2d12;
  --red-100: #fee2e2;
  --red-700: #b91c1c;
  --violet-100: #ede9fe;
  --violet-200: #ddd6fe;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --jokings-blue: #0f172a;
  --jokings-gold: #fbbf24;
  --font-figtree: "Figtree", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-inter: "Inter", sans-serif;
}

body {
  font-family: var(--font-figtree);
  color: var(--gray-200);
  background-color: var(--indigo-950);
}

.font-figtree {
  font-family: var(--font-figtree);
}
.font-poppins {
  font-family: var(--font-poppins);
}
.font-inter {
  font-family: var(--font-inter);
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
.container-narrow {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}

/*==============================
=          ANIMATIONS          =
==============================*/
@keyframes fade-in {
  to {
    opacity: 1;
  }
}
@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-left {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoom-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes phone-left {
  to {
    opacity: 1;
    transform: scale(0.75) rotate(-12deg);
  }
}
@keyframes phone-center {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes phone-right {
  to {
    opacity: 1;
    transform: scale(0.75) rotate(12deg);
  }
}
@media (min-width: 1024px) {
  @keyframes phone-left {
    to {
      opacity: 1;
      transform: scale(0.8) rotate(-12deg);
    }
  }
  @keyframes phone-right {
    to {
      opacity: 1;
      transform: scale(0.8) rotate(12deg);
    }
  }
}

.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}
.animate-on-scroll[data-animation="fade-in"] {
  opacity: 0;
}
.animate-on-scroll[data-animation="fade-in"].is-visible {
  opacity: 1;
}

.animate-on-scroll[data-animation="fade-up"] {
  transform: translateY(24px);
}
.animate-on-scroll[data-animation="fade-left"] {
  transform: translateX(-32px);
}
.animate-on-scroll[data-animation="zoom-in"] {
  transform: scale(0.95);
}
.animate-on-scroll[data-animation="phone-left"] {
  transform: scale(0.7) rotate(-15deg);
}
.animate-on-scroll[data-animation="phone-center"] {
  transform: scale(0.9);
}
.animate-on-scroll[data-animation="phone-right"] {
  transform: scale(0.7) rotate(15deg);
}

/*==============================
=           HEADER             =
==============================*/
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}
.site-header .container {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  z-index: 20;
}
.site-header .main-nav {
  display: none;
}
@media (min-width: 768px) {
  .site-header .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    width: 100%;
    left: 0;
    justify-content: center;
    z-index: 10;
  }
  .site-header .main-nav a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s;
  }
  .site-header .main-nav a:hover {
    color: var(--white);
  }
}

/*==============================
=         HERO SECTION         =
==============================*/
.hero-section {
  position: relative;
  overflow: hidden;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(55, 48, 163, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 48, 163, 0.4) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  mask-image: linear-gradient(to bottom, white 0, white 75%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
}
.hero-main {
  padding-top: 9rem;
  padding-bottom: 5rem;
  text-align: center;
}
.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.hero-title span {
  display: inline-block;
}
.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--indigo-200);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.store-button {
  background-color: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem; /* adjust padding so both look equal */
  border-radius: 0.5rem;
  border: 1px solid var(--gray-700);
  transition: all 0.3s;
  transform-origin: center;
  width: 220px; /* fixed width to make both equal */
  height: 60px; /* fixed height for consistency */
  text-decoration: none;
}

.store-button:hover {
  background-color: var(--gray-800);
  transform: scale(1.05);
}

.store-icon-apple,
.store-icon-google {
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
}

.store-button-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-button-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 500;
}

.store-button-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-phones {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.phone-container {
  transition: all 1s ease-in-out;
}
.left-phone,
.right-phone {
  display: none;
}
.center-phone {
  z-index: 10;
  margin: 1rem 0;
  transform: scale(0.95);
}

@media (min-width: 768px) {
  .hero-main {
    padding-top: 12rem;
    padding-bottom: 6rem;
  }
  .hero-title {
    font-size: 3.75rem;
  }
  .hero-title span:first-child {
    display: block;
  }
  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }
  .store-button {
    width: auto;
  }
  .hero-phones {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    margin-top: -4rem;
    padding-bottom: 4rem;
    margin-left: -6rem;
    margin-right: -6rem;
  }
  .left-phone,
  .right-phone {
    display: block;
  }
  .left-phone {
    transform-origin: bottom right;
  }
  .right-phone {
    transform-origin: bottom left;
  }
  .center-phone {
    transform: scale(1);
  }
}
@media (min-width: 1024px) {
  .hero-phones {
    margin-left: -8rem;
    margin-right: -8rem;
  }
  .center-phone {
    transform: scale(1);
  }
}

/*==============================
=         MOBILE FRAME         =
==============================*/
.mobile-frame {
  position: relative;
  margin: 0 auto;
  border: 10px solid var(--gray-800);
  background-color: var(--gray-800);
  border-radius: 2.5rem;
  height: 750px;
  width: 360px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.mobile-frame-notch {
  width: 120px;
  height: 18px;
  background-color: var(--gray-800);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.mobile-frame-button-1 {
  height: 32px;
  width: 3px;
  background-color: var(--gray-800);
  position: absolute;
  left: -13px;
  top: 72px;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.mobile-frame-button-2 {
  height: 32px;
  width: 3px;
  background-color: var(--gray-800);
  position: absolute;
  left: -13px;
  top: 124px;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.mobile-frame-button-3 {
  height: 48px;
  width: 3px;
  background-color: var(--gray-800);
  position: absolute;
  right: -13px;
  top: 128px;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.mobile-frame-inner {
  border-radius: 2rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  background: #f8f7ff;
}
.mobile-screen-content {
  flex-grow: 1;
  overflow-y: auto;
  position: relative;
}

/*==============================
=        BOTTOM NAV BAR        =
==============================*/
.bottom-nav-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 85px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  border-bottom-left-radius: 1.8rem;
  border-bottom-right-radius: 1.8rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0.5rem 1rem;
}
.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 9999px;
  height: 2.75rem;
  color: var(--gray-500);
  background: none;
  border: none;
  cursor: pointer;
}
.nav-item:not(.disabled):hover {
  background-color: var(--gray-100);
}
.nav-item.active {
  background-color: var(--violet-100);
  color: var(--violet-700);
  gap: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.nav-item:not(.active) {
  width: 2.75rem;
}
.nav-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.nav-item-label {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav-item svg {
  width: 1.5rem;
  height: 1.5rem;
}

/*==============================
=      GENERIC COMPONENTS      =
==============================*/
.section {
  padding: 5rem 0;
  overflow: hidden;
}
.bg-indigo-950-alt {
  background-color: #242154;
}
.bg-white {
  background-color: var(--white);
}
.text-black {
  color: var(--black);
}
.text-gray-900 {
  color: var(--gray-900);
}
.text-gray-600 {
  color: var(--gray-600);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.text-white {
  color: (255 255 255);
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
}
.section-subtitle {
  margin-top: 1rem;
  color: var(--indigo-300);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.font-sans {
  font-family: sans-serif;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.text-sm {
  font-size: 0.875rem;
}
.text-xs {
  font-size: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.pt-4 {
  padding-top: 1rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.w-full {
  width: 100%;
}
.text-center {
  text-align: center;
}
.rounded-lg {
  border-radius: 0.5rem;
}

/*==============================
=        FEATURES SECTION      =
==============================*/
.features-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.feature-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-0.25rem);
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  background-color: var(--indigo-100);
  margin-bottom: 1.5rem;
  border: 1px solid var(--indigo-200);
}
.feature-icon svg {
  color: var(--indigo-600);
  width: 2rem;
  height: 2rem;
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}
.feature-description {
  margin-top: 0.75rem;
  color: var(--gray-600);
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*==============================
=      HOW IT WORKS SECTION    =
==============================*/
#how-it-works .section-header {
  margin-bottom: 5rem;
}
#how-it-works .section-subtitle {
  font-size: 1.25rem;
}
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}
.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.how-it-works-step {
  padding: 1.5rem;
  cursor: pointer;
  border-left: 4px solid var(--gray-200);
  transition: all 0.3s;
}
.how-it-works-step:hover {
  border-left-color: var(--indigo-200);
  background-color: rgba(238, 242, 255, 0.5);
}
.how-it-works-step.active {
  border-left-color: var(--indigo-600);
  background-color: var(--indigo-50);
}
.how-it-works-step > div {
  display: flex;
  align-items: flex-start;
}
.how-it-works-step-number {
  flex-shrink: 0;
  width: 2rem;
  margin-right: 1.5rem;
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--gray-300);
  transition: color 0.3s;
}
.how-it-works-step:hover .how-it-works-step-number {
  color: var(--indigo-400);
}
.how-it-works-step.active .how-it-works-step-number {
  color: var(--indigo-600);
}
.how-it-works-step-content {
  margin-top: -0.25rem;
}
.how-it-works-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}
.how-it-works-step-desc {
  margin-top: 0.5rem;
  color: var(--gray-600);
}
.how-it-works-phone {
  display: flex;
  justify-content: center;
  order: -1;
}
.how-it-works-screens-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.how-it-works-screen {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  overflow-y: auto;
}
.how-it-works-screen.active {
  opacity: 1;
}
@media (min-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
  .how-it-works-phone {
    order: 1;
  }
}

/*==============================
=        GUIDANCE SECTION      =
==============================*/
.guidance-header {
  background-color: var(--indigo-950);
  border-radius: 1.5rem;
  padding: 4rem 1.5rem 8rem;
}
.guidance-header-content {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.guidance-cards-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 1rem;
  margin-top: -6rem;
}
.guidance-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--gray-100);
}
.guidance-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-image: linear-gradient(
    to bottom right,
    rgba(167, 243, 208, 0.7),
    rgba(107, 235, 208, 0.7),
    rgba(199, 210, 254, 0.7)
  );
  color: var(--gray-900);
}
.guidance-icon svg {
  width: 2rem;
  height: 2rem;
}
.guidance-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}
.guidance-description {
  color: var(--gray-600);
}
@media (min-width: 768px) {
  .guidance-header {
    padding: 4rem 3rem 10rem;
  }
  .guidance-header-content {
    grid-template-columns: 1fr 1fr;
  }
  .guidance-cards-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 2rem;
    margin-top: -8rem;
  }
}

/*==============================
=      TESTIMONIALS SECTION    =
==============================*/
#testimonials .section-subtitle {
  font-size: 1.25rem;
}
.testimonial-carousel {
  position: relative;
  max-width: 56rem;
  margin: 4rem auto 0;
}
.testimonial-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.testimonial-nav-button:hover {
  background: var(--gray-200);
}
.testimonial-nav-button.prev {
  left: 0;
}
.testimonial-nav-button.next {
  right: 0;
}
.testimonial-slides-container {
  text-align: center;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}
.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.testimonial-slide.active {
  opacity: 1;
}
.testimonial-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}
.testimonial-author {
  font-size: 1.5rem;
  font-weight: 700;
}
.testimonial-school {
  color: var(--gray-500);
}
.testimonial-quote {
  margin-top: 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--gray-700);
}
@media (max-width: 768px) {
  .testimonial-nav-button {
    display: none;
  }
}
@media (min-width: 768px) {
  .testimonial-nav-button.prev {
    left: -5rem;
  }
  .testimonial-nav-button.next {
    right: -5rem;
  }
  .testimonial-quote {
    font-size: 1.5rem;
  }
}
/*==============================
=           FAQ SECTION        =
==============================*/
.faq-list {
  margin-top: 3rem;
}
.faq-item {
  border-bottom: 1px solid rgba(55, 48, 163, 0.5);
  padding: 1.25rem 0;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.faq-icon {
  transform-origin: center;
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  padding-top: 1rem;
  color: var(--indigo-300);
}
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

/*==============================
=            FOOTER            =
==============================*/
.site-footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
}
.site-footer-bottom .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
}
.footer-logo {
  font-weight: 700;
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.footer-nav a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--indigo-300);
}
.footer-copyright {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(165, 180, 252, 0.6);
}

/*==============================
=   STATIC PAGES (PRIVACY, ETC) =
==============================*/
.static-page-container {
  min-height: 100vh;
  padding: 3rem 1rem;
}
.static-page-content {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.static-page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--indigo-900);
  margin-bottom: 1.5rem;
}
.prose {
  color: var(--gray-700);
  line-height: 1.7;
}
.prose h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--indigo-900);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--indigo-900);
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}
.prose p,
.prose ul,
.prose ol {
  margin-bottom: 1rem;
}
.prose ul,
.prose ol {
  padding-left: 1.5rem;
}
.prose li > * + * {
  margin-top: 0.5rem;
}
.prose a {
  color: var(--indigo-600);
  font-weight: 600;
  text-decoration: none;
}
.prose a:hover {
  text-decoration: underline;
}
.static-page-footer {
  margin-top: 2rem;
  text-align: center;
}
.back-link {
  font-weight: 600;
  color: var(--indigo-600);
  text-decoration: none;
}
.back-link:hover {
  color: var(--indigo-800);
}
.info-box-green {
  margin-top: 1.5rem;
  color: black;
  background-color: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 1.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.info-box-indigo {
  margin-top: 1.5rem;
  color: black;
  background-color: var(--indigo-50);
  border-left: 4px solid var(--indigo-400);
  padding: 1.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

 

/*==============================
=      ABOUT DEVELOPER PAGE    =
==============================*/
.about-dev-page {
  font-family: var(--font-inter);
  background-color: #f1f5f9;
}
.about-dev-header {
  position: relative;
  background-color: var(--jokings-blue);
  color: var(--white);
  overflow: hidden;
}
.about-dev-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(251, 191, 36, 0.1),
    transparent 30%
  );
}
.about-dev-back-link-wrapper {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 20;
}
.about-dev-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.2s;
}
.about-dev-back-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--jokings-gold);
}
.about-dev-hero {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 1.5rem 8rem;
}
.about-dev-headline {
  font-family: var(--font-poppins);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.about-dev-subheadline {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: 1.125rem;
  color: #cbd5e1;
}
.about-dev-main {
  padding: 5rem 0;
}
.about-dev-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.about-dev-card {
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
  border-top: 4px solid transparent;
}
.about-dev-card:hover {
  transform: translateY(-0.5rem);
  border-top-color: var(--jokings-gold);
}
.about-dev-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: var(--jokings-blue);
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
.about-dev-card:hover .about-dev-icon-wrapper {
  background-color: var(--jokings-gold);
  color: var(--white);
}
.about-dev-card-title {
  font-family: var(--font-poppins);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jokings-blue);
  margin-bottom: 1rem;
}
.about-dev-card-body {
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}
.about-dev-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}
.about-dev-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  color: #334155;
  text-decoration: none;
}
.about-dev-contact-link:not(.static):hover {
  color: var(--jokings-gold);
}
.about-dev-contact-link .w-5 {
  flex-shrink: 0;
}
.about-dev-contact-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.about-dev-footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--jokings-blue);
  color: #94a3b8;
}

@media (min-width: 768px) {
  .about-dev-headline {
    font-size: 3.75rem;
  }
  .about-dev-subheadline {
    font-size: 1.25rem;
  }
  .about-dev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-dev-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*==============================
=        MOBILE SCREENS        =
==============================*/
/* Shared mobile form styles */
.form-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}
.form-input {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  color: var(--gray-800);
  outline: none;
}
.form-input::placeholder {
  color: var(--gray-400);
}
.form-input:focus {
  box-shadow: 0 0 0 2px var(--indigo-500);
}
.button-primary {
  width: 100%;
  background: var(--indigo-600);
  color: var(--white);
  font-weight: 700;
  padding: 0.75rem 0;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}
.button-primary:hover {
  background: var(--indigo-700);
}
.document-item {
  background: white;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Flight Booking Page */
.flight-booking-page {
  display: flex;
  flex-direction: column;
  background: #f8f7ff;
  height: 100%;
  font-family: sans-serif;
}
.search-bar-wrapper {
  position: relative;
}
.search-bar-icon {
  position: absolute;
  inset-y: 0;
  left: 0;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.search-bar-input {
  width: 100%;
  background: var(--gray-100);
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-size: 0.875rem;
  color: var(--gray-800);
}
.search-bar-input.white {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(229, 231, 235, 0.8);
}
.search-bar-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--indigo-400);
}
.tabs {
  display: flex;
  gap: 1.25rem;
}
.tab-item {
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-500);
}
.tab-item:hover {
  color: var(--gray-800);
}
.tab-item.active {
  color: var(--indigo-700);
}
.tab-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--indigo-600);
  border-radius: 9999px;
}
.flight-booking-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.booking-card {
  background: white;
  padding: 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(229, 231, 235, 0.6);
}
.booking-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.booking-card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.status-badge {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: lowercase;
}
.more-icon-button {
  color: var(--gray-500);
  padding: 0.25rem;
  border-radius: 50%;
  background: var(--gray-100);
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}
.more-icon-button:hover {
  background: var(--gray-200);
}
.booking-card-body {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.icon-wrapper {
  padding: 0.75rem;
  border-radius: 50%;
}

/* App Home Page */
.app-home-page {
  padding: 1rem;
  background: #f8f7ff;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 7rem;
  font-family: sans-serif;
}
.app-home-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem 0.5rem;
}
.app-home-header-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.app-home-header-icons button {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
}
.app-home-header-icons button:hover {
  color: var(--gray-800);
}
.app-home-header h1 {
  line-height: 2rem;
  font-size: 1.5rem;
  color: var(--gray-800);
}
.app-home-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}
.stat-card {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid;
}
.stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.stat-card-icon {
  width: 30px; /* same width */
  height: 30px; /* same height */
  display: flex; /* center the svg */
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* ensures a circle */
  background-color: rgba(99, 102, 241, 0.8); /* indigo-20 */
}
.stat-card-number {
  font-size: 1.875rem;
  font-weight: 700;
}
.stat-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  text-decoration: none;
}
.app-home-messages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}
.message-card {
  padding: 1rem;
  border-radius: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid;
  font-size: 0.875rem;
}
.message-card p {
  font-weight: 600;
}

.app-home-actions {
  padding: 0 0.5rem;
}
.app-home-actions h2 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.action-card {
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border: 1px solid rgba(229, 231, 235, 0.8);
  overflow: hidden;
}
.action-card-text {
  flex: 1;
}
.action-card-icon-wrapper {
  width: 5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-card-icon-bg {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
.action-card-icon-inner {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Applications Page */
.applications-page {
  padding: 1rem;
  background: #f8f7ff;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 7rem;
  font-family: sans-serif;
  color: var(--gray-700);
}
.application-card {
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
}
.application-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.status-badge-alt {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.more-icon-button.small {
  padding: 0.375rem;
}
.application-card-body {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.text-indigo-900 {
  color: rgba(49, 46, 129, 0.8);
}

.text-indigo-600 {
  color: rgb(79 70 229);
}

.bg-indigo-900 {
  background-color: var(--indigo-900);
}

.bg-orange-50 {
  background-color: rgb(255 247 237);
}
.text-orange-900 {
  color: rgba(124, 45, 18);
}

.text-orange-900-opacity {
  color: rgba(124, 45, 18, 0.8);
}

.text-orange-600 {
  color: rgb(234 88 12);
}

.bg-orange-200 {
  background-color: rgb(254 215 170);
}

.rounded-full {
  border-radius: 9999px;
}

.bg-indigo-50 {
  background-color: rgb(238 242 255);
}

.text-indigo-900-opacity {
  color: rgb(49 46 129 / 80%);
}

.bg-indigo-200-80 {
  background-color: rgb(199 210 254 / 80%);
}

.w-4 {
  width: 1rem;
}

.h-4 {
  width: 1rem;
}

.bg-violet-100-60 {
  background-color: rgb(237 233 254 / 60%);
}

.bg-violet-200-60 {
  background-color: rgb(221 214 254 / 60%);
}

.bg-green-100-70 {
  background-color: rgb(220 252 231 / 70%);
}

.border-green-200-80 {
  border-color: rgb(187 247 208 / 80%);
}

.text-green-900-80 {
  color: rgb(20 83 45 / 80%);
}

.text-green-900 {
  color: rgb(20 83 45)!important;
}

.text-gray-70 {
  color: rgb(55 65 81);
}

.text-gray-500 {
  color: rgb(107 114 128);
}

.text-gray-800 {
  color: rgb(31 41 55);
}

.text-gray-600 {
  color: var(--gray-600);
}
