/* Shared styles for inner pages */

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-logo:hover {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ========================================
   PAGE LAYOUT
   ======================================== */

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
  margin-bottom: 4rem;
}

.content-section.centered {
  text-align: center;
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.content-section a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-section a:hover {
  color: var(--accent);
}

.large-text {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  line-height: 1.7;
}

blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.02);
}

blockquote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

blockquote cite {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-style: normal;
  color: var(--text-muted);
}

/* ========================================
   LISTS
   ======================================== */

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  line-height: 1.6;
}

.benefit-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.fact-list {
  list-style: none;
  padding: 0;
}

.fact-list li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

/* ========================================
   FEATURE GRID
   ======================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ========================================
   PROCESS LIST
   ======================================== */

.process-list {
  margin-top: 2rem;
}

.process-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-item:last-child {
  border-bottom: none;
}

.process-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 500;
}

.process-item h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.process-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  margin-bottom: 4rem;
}

.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  margin-top: 4rem;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.small-text {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* ========================================
   PRESS PAGE
   ======================================== */

.press-box {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.press-box h3 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.press-box p {
  margin: 0;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.asset-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
}

.asset-preview {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.logo-preview {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

.asset-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.asset-card p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.asset-link {
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
}

.asset-link:hover {
  text-decoration: underline;
}

.contact-box {
  padding: 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 8px;
  margin: 1rem 0;
}

.contact-box p {
  margin: 0;
}

.muted-text {
  color: var(--text-dim);
  font-style: italic;
}

/* ========================================
   DOWNLOAD PAGE
   ======================================== */

.download-page .page-content {
  max-width: 1000px;
}

.download-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.phone-mockup {
  width: 220px;
  height: 440px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-content {
  text-align: center;
  padding: 2rem;
}

.mockup-label {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.mockup-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.mockup-button {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.8125rem;
}

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

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.platform-icon {
  font-size: 1.5rem;
}

.platform-name {
  font-weight: 500;
  margin-bottom: 0.125rem;
}

.platform-req {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.download-icon {
  font-size: 1.5rem;
}

.download-label {
  font-size: 0.75rem;
  opacity: 0.7;
}

.download-store {
  font-size: 1.25rem;
  font-weight: 500;
}

.beta-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.requirement-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.requirement-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.requirement-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.requirement-card p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin: 0;
}

.steps-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  text-align: center;
  padding: 1.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent);
  border-radius: 50%;
  font-weight: 500;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.coming-soon-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}

.coming-soon-item {
  text-align: center;
  color: var(--text-dim);
}

.coming-soon-item span {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

/* ========================================
   BLOG PAGE
   ======================================== */

.blog-grid {
  display: grid;
  gap: 2rem;
}

.blog-post {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.blog-post:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.blog-post.featured {
  background: rgba(99, 102, 241, 0.05);
  border-color: rgba(99, 102, 241, 0.2);
}

.post-date {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.blog-post h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0.75rem 0;
}

.blog-post h2 a {
  color: var(--text-primary);
  text-decoration: none;
}

.blog-post h2 a:hover {
  color: var(--accent);
}

.post-excerpt {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.read-more {
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.coming-soon-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.subscribe-form input {
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.9375rem;
  width: 260px;
}

.subscribe-form input::placeholder {
  color: var(--text-dim);
}

.subscribe-button {
  padding: 0.875rem 1.5rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.subscribe-button:hover {
  opacity: 0.9;
}

/* ========================================
   FOOTER (updated)
   ======================================== */

footer {
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4rem;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--text-muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .page-content {
    padding: 6rem 1.5rem 3rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .asset-grid {
    grid-template-columns: 1fr;
  }

  .download-hero {
    flex-direction: column;
    gap: 2rem;
  }

  .phone-mockup {
    width: 180px;
    height: 360px;
  }

  .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-visual {
    grid-template-columns: 1fr;
  }

  .coming-soon-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: center;
  }

  .subscribe-form input {
    width: 100%;
    max-width: 300px;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
