/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
  background-color: #2C332E;
  padding: 24px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  height: 38px;
  object-fit: contain;
}

/* Main Content */
.main-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.content-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.content-right {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
}

/* Tagline Section */
.tagline-section {
  padding: 20px 0;
}

.tagline-small {
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.tagline-large {
  font-size: 56px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

/* Download Section */
.download-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 32px;
  max-width: 500px;
  font-weight: 500;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-block;
  transition: transform 0.2s ease;
  line-height: 0;
}

.store-btn:hover {
  transform: scale(1.04);
}

.store-btn img {
  height: 52px;
  width: auto;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.phone-frame {
  background: #000;
  border-radius: 48px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 2px solid #1a1a1a;
  width: 100%;
}

.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 18.5;
  background: #f0f0f0;
  border-radius: 36px;
  overflow: hidden;
}

.screen-content {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.rec-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #FF0000;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
}

.rec-dot {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.shutter-button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: white;
  border: 5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .content-left {
    align-items: center;
    text-align: center;
  }

  .tagline-large {
    font-size: 42px;
  }

  .phone-mockup {
    max-width: 320px;
  }

  .download-section {
    align-items: center;
  }

  .store-buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .logo {
    height: 32px;
  }

  .tagline-small {
    font-size: 24px;
  }

  .tagline-large {
    font-size: 34px;
  }

  .subtitle {
    font-size: 15px;
    padding: 0;
  }

  .store-btn img {
    height: 44px;
  }

  .main-content {
    padding: 40px 20px;
  }
}

/* Footer Styles */
.footer {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
  border-top: 1px solid #eeeeee;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: #555555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #111111;
  text-decoration: underline;
}

.copyright {
  color: #888888;
  font-size: 13px;
}

/* Document Page Styles */
.document-page {
  background-color: #fbfbfb;
}

.page-content {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.document-container {
  background-color: #ffffff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.document-container h1 {
  font-size: 32px;
  margin-bottom: 8px;
  color: #111111;
}

.last-updated {
  color: #666666;
  font-size: 14px;
  margin-bottom: 32px;
}

.document-container h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #222222;
}

.document-container p {
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .document-container {
    padding: 24px;
  }

  .document-container h1 {
    font-size: 26px;
  }
}