/* =====================
   COLOR & FONT SYSTEM
===================== */
:root {
  --text-black: #0D0D0E;
  --text-white: #FFFFFF;
  --bg-grey: #F9F9F9;
  --bg-black: #0D0D0E;
  --bg-transparent-blue: rgba(146, 220, 255, 0.6);
  --bg-transparent-pink: rgba(255, 0, 106, 0.2);
}

body {
  font-family: 'Orbit', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-grey);
  color: var(--text-black);
  padding-top: 70px;
}

a, a:hover, a:active, a:visited {
  color: var(--bg-black);
  text-decoration: none !important;
}

/* Special */
@media (min-width: 560px) and (max-width: 767px) {
  .container{max-width: 544px;}
}

/* SM */
@media (min-width: 768px) and (max-width: 991px) {
  .container{max-width: 640px;}
}

/* MD */
@media (min-width: 992px) and (max-width: 1199px) {
  .container{max-width: 960px;}
}

/* LG */
@media (min-width: 1200px) {
  .container{max-width: 1168px;}
}

/* =====================
   FLOATING LOGO HEADER
===================== */
.floating-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding-top: 32px;
}

.logo-box {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important; 
  background-color: var(--bg-black);
  border-radius: 8px;
  padding: 2px 12px 4px 12px;
  cursor: pointer;
  transition: none;
}

.logo-box:hover,
.logo-box:focus,
.logo-box:active {
  text-decoration: none !important; 
  background-color: var(--bg-black);
  outline: none;
}

.logo-text {
  font-family: 'Orbit', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text-white);
}

.logo-spark {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  position: relative;
  top: 2px;
}


@media (min-width: 768px) {
  .logo-text {font-size: 32px;}
  .logo-box{padding: 0px 12px 4px 12px;}
}


/* =====================
   INTRO SECTION
===================== */
.intro-section {
  background-color: var(--bg-grey);
  margin: 0 auto;
}

/* ===== Pills ===== */

.pill {
  width: fit-content;
  border-radius: 80px;
  padding: 12px 24px;
  font-size: 32;
  color: var(--text-black);
  font-weight: 400;
  line-height: 1.2;
}
.pill-blue {
  background-color: var(--bg-transparent-blue);
  font-family: 'Tiny5', sans-serif;
}
.pill-pink {
  background-color: var(--bg-transparent-pink);
  font-family: 'Jersey 25', sans-serif;
}
.pill-icon {
  height: 24px;
  margin-left: 4px;
  margin-bottom: 4px;
}

/* ===== Intro text ===== */
.intro-text {
  margin-top: 32px;
  margin-bottom: 80px;
  max-width: 800px;
}
.intro-headline {
  font-family: 'Orbit', sans-serif;
  color: var(--text-black);
  font-size: 24px; 
  line-height: 1.4;
}

/* ===== Divider and Section Title ===== */
.intro-divider {
  width: 56px;
  height: 3px;
  background-color: var(--bg-black);
}
.our-apps-title {
  font-family: 'Tiny5', sans-serif;
  font-weight: 400;
  color: var(--text-black);
  margin-top: 16px;
  margin-bottom: 0px;
}

/* Mobile (<768) */
@media (max-width: 767px) {
  .intro-section { padding-top: 80px;}
  .pill { font-size: 32px; padding: 10px 20px;}
  .pill-icon { height: 24px; }
  .pill-blue {margin-bottom: 16px;};
  .our-apps-title { font-size: 32px; }
}

/* Tablet (768–1199) */
@media (min-width: 768px) and (max-width: 1199px) {
  .intro-section { padding-top: 96px; padding-right: 80px;}
  .pill { font-size: 32px; padding: 12px 24px; margin-right: 6px; display: inline-block;}
  .intro-headline { padding-top: 16px; }
  .our-apps-title { font-size: 36px; }
}

/* Desktop (≥1200) */
@media (min-width: 1200px) {
  .intro-section { padding-top: 112px; padding-right: 40px; }
  .pill { font-size: 40px; padding: 20px 28px; margin-right: 12px; display: inline-block;}
  .intro-headline { padding-top: 32px; }
  .our-apps-title { font-size: 40px; }
}

/* =====================
   OUR APPS
===================== */
.section-apps {
  margin-top: 24px;
  margin-bottom: 24px;
}
.app-item {
  margin-bottom: 64px;
}
.app-img {
  border-radius: 24px;
  width: 100%;
  height: 256px;
  object-fit: cover;
}
.app-title-wrapper{
  display: flex;
  align-items: center;
  vertical-align:top;
  margin-top: 20px;
  margin-bottom: 4px;
}
.app-title {
  font-family: 'Jersey 25';
  font-size: 32px;
  color: var(--text-black);
  margin-right: 4px;
}
.tag {
  padding:2px 8px;
  border-radius: 8px;
  font-size: 14px;
  margin-left: 8px;
}
.tag-ios {
  background-color: var(--bg-transparent-pink);
}
.tag-android {
  background-color: var(--bg-transparent-blue);
}
.tag-soon {
  background-color: var(--bg-transparent-pink);
}
.app-subtitle {
  font-size: 20px;
}

/* Special */
@media (min-width: 560px) and (max-width: 767px) {
  .app-img {height: 304px;}
}

/* SM */
@media (min-width: 768px) and (max-width: 991px) {
  .app-item {margin-bottom: 80px;}
  .app-img {height: 372px;}
}

/* MD */
@media (min-width: 992px) and (max-width: 1199px) {
  .app-img {height: 288px;}
}

/* LG */
@media (min-width: 1200px) {
  .section-apps {margin-top: 32px;}
  .app-img {height: 360px;}
}

/* =====================
   MASCOT
===================== */
.mascot-section {
  margin: 0px;
}

@media (min-width: 992px) {
  .mascot-section {margin-top: 24px;}
}

/* =====================
   ABOUT SECTION
===================== */
.about-section {
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 40px 0px 56px 0px;
  margin-bottom: 0px;
}
.about-section h2 {
  font-family: 'Jersey 25';
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 24px;
}
.about-section p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.btn-footer-wrapper {
  margin-top: 40px;
}
.btn-footer {
  display: block;
  text-align: center;
  padding: 14px 40px;
  margin: 20px 0px;
  border-radius: 80px;
  background-color: var(--text-white);
  color: var(--text-black);
  font-family: 'Orbit';
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-footer:hover, .btn-footer:active, .btn-footer:visited {
  color: var(--bg-black);
  background-color: #ededed;
  text-decoration: none;
}
.btn-footer.btn-alt {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}
.btn-footer.btn-alt:hover, .btn-footer.btn-alt:active{
  background-color: var(--text-white);
  color: var(--bg-black);
  text-decoration: none;
}
.about-section footer {
  margin: 32px 0;
  color: #666;
}
.about-section footer p{
  text-align: center;
  font-size: 16px;
}

@media (min-width: 992px) {
  .btn-footer-wrapper {margin-top: 20px;}
  .btn-footer{display: inline-block; width: 280px; margin-right: 16px;}
  .about-section footer p{text-align: left;}
}