@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,700;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Px+Grotesk:wght@400;700&display=swap');
:root {
  --primary-color: #000000;
  --secondary-color: #8a2be2;
  --background-color: #ffffff;
  --text-color: #000000;
  --border-color: #e5e5e5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Px Grotesk', sans-serif;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: white;
  color: var(--text-color);
  line-height: 1.5;
  overflow-x: hidden;
}

.page-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.logo {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #8a2be2, #4b0082);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 1.2rem;
  color: #666;
}

.main-content {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
}

.left-column,
.right-column {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.left-column {
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}

.right-column {
  padding: 4rem;
}

.app-preview {
  width: 100%;
  display: flex;
  justify-content: center;
}

.app-preview-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.referral-info {
  text-align: center;
  margin-bottom: 2rem;
}

.referral-code {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  color: #000000;
  text-transform: lowercase;
  font-family: 'Px Grotesk', sans-serif;
}

.features {
  margin-bottom: 2rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

.features h3 {
  margin-bottom: 1rem;
}

.features h2 {
  margin-bottom: 1rem;
}

.features ul {
  list-style: none;
}

.features li {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 700;
}

.features li::before {
  content: '•';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

.referral-info-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.4px;
  text-align: left;
  margin-left: 40px;
  margin-right: 40px;
}

.col-gap-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  gap: 16px;
}

.global-financial-app {
  color: #000;
  text-align: center;
  font-size: 14.595px;
  font-style: normal;
  font-weight: 700;
  line-height: 17.514px;
  letter-spacing: -0.292px;
}

.cta-section {
  text-align: center;
}

.download-button {
  display: inline-block;
  background: var(--primary-color);

  color: white;
  padding: 1rem 2rem;
  align-items: center;
  text-align: center;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1.5rem;

  width: 335px;
  height: 56px;
  left: 189px;
  top: 232px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.store-buttons a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
}

.learning-section {
  padding: 4rem;
  background: white;
  text-align: center;
}

.learning-intro {
  max-width: 437px;
  margin: 0 auto 3rem;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #333;
}

.content-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.content-card {
  width: 100%;
  aspect-ratio: 16/9;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid black;
  overflow: hidden;
  transition: transform 0.2s ease;
  text-decoration: none;
  display: block;
  color: inherit;
  position: relative;
}

.content-card:hover {
  transform: translateY(-2px);
}

.content-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.video-placeholder,
.manifesto-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #333;
}

.footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.footer p {
  margin-bottom: 1.5rem;
  color: #666;
}

.text-center {
  text-align: center;
}

.website-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-link {
  color: #666;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--secondary-color);
}

.store-images {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.store-images img {
  height: auto;
  min-height: 60px;
  object-fit: contain;
}

h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 1rem;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .page-container {
    padding: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }

  .main-content {
    flex-direction: column;
    min-height: auto;
  }

  .left-column,
  .right-column {
    width: 100%;
    padding: 2rem;
  }

  .referral-code {
    margin-top: 60px;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 33.571px;
    letter-spacing: -0.413px;
  }

  .learning-section {
    padding: 2rem 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .content-cards {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto 4rem;
  }

  .learning-intro {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    text-align: left;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer {
    margin-top: 2rem;
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #eee;
  }

  .footer p {
    width: 100%;
    margin: 0 auto 1.5rem;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .learning-section {
    padding-bottom: 3rem;
  }

  body {
    overflow-x: hidden;
    width: 100%;
  }
}
