@charset "UTF-8";
:root {
  --bg: #F8F8F8;
  --text: #111;
  --text-light: #888;
  --card-radius: 24px;
  --font: "Manrope", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}

.mobile-wrapper {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #111;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  /* Will be animated with GSAP */
}

.menu-content {
  text-align: center;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.menu-link {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1;
}

.menu-link:hover {
  color: #888;
}

.menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.menu-footer p {
  color: #666;
  margin-bottom: 0.5rem;
}

.menu-footer .email-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: block;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-icons a {
  color: #fff;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: #888;
}

/* Header */
.header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 100;
}

.logo {
  height: 3rem;
  width: 3rem;
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.8rem;
}
.logo img {
  height: 100%;
  width: 100%;
  border-radius: 0.8rem;
}

.menu-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 201; /* Above overlay */
  position: relative;
}

.menu-btn .line {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Menu Active State Styles for Button */
.menu-open .menu-btn .line-1 {
  transform: rotate(45deg) translate(5px, 6px);
  background: #fff;
}

.menu-open .menu-btn .line-2 {
  transform: rotate(-45deg) translate(5px, -6px);
  background: #fff;
}

/* Hero */
.hero {
  padding: 6rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    text-align: left;
    padding: 8rem 2rem 6rem;
  }
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

/* Rotating Text */
.rotating-text-container {
  display: inline-block;
  height: 1.2em; /* Increased height to prevent clipping */
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
  width: 4.5em; /* Use em instead of ch for safer width */
  text-align: left;
  margin-bottom: -0.15em;
}

.rotating-wrapper {
  display: block;
}

.hero h1 .highlight {
  color: #666;
  display: block;
  line-height: 1.2em; /* Match container height */
}

/* Mobile adjustments for rotating text */
@media (max-width: 768px) {
  .hero h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }
  .hero h1 br {
    display: none;
  }
  .rotating-text-container {
    text-align: center;
    width: 100%; /* Take full width to center text */
    height: 1.3em; /* Slightly more height on mobile */
    margin-bottom: 0;
  }
  .rotating-wrapper {
    width: 100%;
  }
  .hero h1 .highlight {
    text-align: center;
    width: 100%;
    line-height: 1.3em;
  }
}
.hero p {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero p {
    margin: 0;
  }
}
/* App Feed */
.app-feed {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .app-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .app-feed {
    grid-template-columns: repeat(3, 1fr);
  }
}
.app-card {
  background: #f0f0f0;
  border-radius: var(--card-radius);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.app-card:hover {
  transform: translateY(-8px);
}

.app-card:active {
  transform: scale(0.98);
}

.coming-soon-label {
  position: absolute;
  top: -0.5rem;
  right: -1.5rem;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: #fff;
  padding: 1rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  transform: rotate(30deg);
  overflow: visible;
}

.card-top {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.app-icon-box img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.app-info {
  flex: 1;
}

.app-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.category {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.get-btn {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  /* Absolute Positioning */
  position: absolute;
  bottom: 2rem; /* Align with bottom padding */
  right: 2rem; /* Align with right padding */
}

.get-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

/* Adjust card visual padding since button is overlaid on top area now */
.card-visual {
  padding: 0 2rem 2rem;
  margin-top: 1rem; /* Add some space if needed */
}

.card-visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app-card:hover .card-visual img {
  transform: translateY(-5px) scale(1.02);
}

/* Philosophy / Marquee */
.philosophy {
  padding: 3rem 0;
  overflow: hidden;
  background: #111;
  color: #fff;
  transform: rotate(-1deg);
  margin: 4rem 0;
  width: 100%;
}

.scrolling-text {
  white-space: nowrap;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
}

.scrolling-text span {
  padding-right: 3rem;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* Info Block */
.info-block {
  padding: 6rem 2rem 8rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.info-block h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.info-block p {
  color: var(--text-light);
  font-size: 1.25rem;
}

/* Pages (About / Team / Apps) */
.page-container {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4rem;
  letter-spacing: -0.03em;
}

.page-header .highlight {
  color: #666;
}

.content-block .lead {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4rem;
  max-width: 800px;
}

.text-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .text-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.text-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.text-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}
.team-card {
  background: #fff;
}

.member-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: #f0f0f0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .member-image img {
  transform: scale(1.03);
}

.member-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.member-info span {
  color: var(--text-light);
}

.member-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.member-social a {
  color: var(--text-light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-social a:hover {
  color: var(--text);
}

/* Apps Detail List */
.apps-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.app-detail-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .app-detail-card {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
  .app-detail-card.reverse {
    direction: rtl; /* Simple way to swap columns visually */
  }
  .app-detail-card.reverse > * {
    direction: ltr; /* Reset text direction */
  }
}
.app-detail-content .app-icon-large img {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.app-detail-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.app-tagline {
  font-size: 1.25rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.app-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.app-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.app-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 500;
}

.app-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ccc;
  font-weight: 800;
}

.app-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-badge {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
  display: inline-flex;
  align-items: center;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.store-badge-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.store-name {
  font-weight: 600;
  font-size: 1rem;
}

.coming-soon-text {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-detail-visual {
  background: #f0f0f0;
  border-radius: 24px;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-detail-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.app-detail-card:hover .app-detail-visual img {
  transform: rotate(0) scale(1.02);
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  font-size: 0.9rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    align-items: center;
  }
}
.footer-content-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-content-left {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: #ccc;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--text);
}

.copyright {
  color: #ccc;
}

.core-principles {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .principles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.principle-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--card-radius);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.principle-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.1);
}

.principle-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principle-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
}/*# sourceMappingURL=Global.css.map */