/* shared.css — AkuForge site-wide styles */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background-color: #0a1410;
  color: rgba(255,255,255,0.88);
  min-height: 100vh;
  padding: 52px 0 60px;
}

/* ---- Nav ---- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: #080f0c;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

.nav-wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(212,175,55,0.9);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-wordmark img {
  height: 22px;
  width: auto;
  max-height: 22px;
  display: block;
}

.nav-wordmark:hover { color: rgb(212,175,55); }

.nav-links {
  display: flex;
  gap: 24px;
}

nav a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
nav a:hover, nav a.active { color: rgba(212,175,55,0.9); }

/* ---- Header ---- */
.header {
  background: linear-gradient(180deg, #0d1f18 0%, #0a1410 100%);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding: 70px 24px 32px;
  text-align: center;
}

.brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(212,175,55,0.9);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.meta {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

.divider {
  width: 40px;
  height: 1px;
  background: rgba(212,175,55,0.5);
  margin: 16px auto 0;
}

/* ---- Layout ---- */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 20px 0;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(212,175,55,0.7);
  text-transform: uppercase;
  margin: 40px 0 16px;
}

.intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  text-align: center;
}

/* ---- Cards ---- */
.card {
  background: #0f2a2e;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.card a { color: rgba(212,175,55,0.9); text-decoration: none; }
.card a:hover { color: rgb(212,175,55); text-decoration: underline; }

.card ul { list-style: none; padding: 0; }
.card li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  padding-left: 16px;
  position: relative;
}
.card li::before {
  content: "\2022";
  color: rgba(212,175,55,0.5);
  position: absolute;
  left: 0;
}

/* ---- Numbered sections (privacy, terms, accessibility) ---- */
.section {
  background: #0f2a2e;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 12px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.section-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(212,175,55,0.7);
  min-width: 20px;
}

.section h2 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.1px;
}

.section p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  padding-left: 32px;
}

.section.contact {
  border-color: rgba(212,175,55,0.25);
  background: #0d2320;
}

.section.contact p { color: rgba(255,255,255,0.6); }

.section a { color: rgba(212,175,55,0.9); text-decoration: none; }
.section a:hover { color: rgb(212,175,55); text-decoration: underline; }

/* ---- Stats grid ---- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-card {
  background: #0f2a2e;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px;
  padding: 20px 22px;
}

.stat-card .num {
  font-size: 28px;
  font-weight: 700;
  color: rgba(212,175,55,0.9);
  margin-bottom: 4px;
}

.stat-card .label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ---- Fact grid (press kit) ---- */
.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fact {
  background: #0f2a2e;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px;
  padding: 18px 20px;
}

.fact .label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(212,175,55,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fact .value {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* ---- FAQ accordion ---- */
.faq-item {
  background: #0f2a2e;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: rgba(212,175,55,0.6);
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { content: "-"; }

.faq-item .answer {
  padding: 0 24px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.faq-item .answer a { color: rgba(212,175,55,0.9); text-decoration: none; }
.faq-item .answer a:hover { color: rgb(212,175,55); text-decoration: underline; }

/* ---- Changelog ---- */
.changelog-entry {
  background: #0f2a2e;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 10px;
}

.changelog-entry .version-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.changelog-entry .version {
  font-size: 15px;
  font-weight: 700;
  color: rgba(212,175,55,0.9);
}

.changelog-entry .date {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.changelog-entry ul { list-style: none; padding: 0; }
.changelog-entry li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  padding-left: 16px;
  position: relative;
}
.changelog-entry li::before {
  content: "\2022";
  color: rgba(212,175,55,0.5);
  position: absolute;
  left: 0;
}

/* ---- Feature cards (features page) ---- */
.feature {
  background: #0f2a2e;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.feature .tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(212,175,55,0.7);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.feature ul { list-style: none; padding: 0; margin-top: 10px; }
.feature li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  padding-left: 16px;
  position: relative;
}
.feature li::before {
  content: "\2022";
  color: rgba(212,175,55,0.5);
  position: absolute;
  left: 0;
}

/* ---- Placeholders ---- */
.screenshot-placeholder {
  background: #0a1e1a;
  border: 1px dashed rgba(212,175,55,0.15);
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  margin: 12px 0;
}

.screenshot-placeholder a { color: rgba(212,175,55,0.6); }

/* ---- Icon display (press kit) ---- */
.icon-display { text-align: center; padding: 32px 0; }
.icon-display img {
  width: 200px; height: 200px;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.icon-display .caption { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 12px; }
.icon-display .download-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  color: rgba(212,175,55,0.8);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.icon-display .download-link:hover { background: rgba(212,175,55,0.2); }

/* ---- App Store badge ---- */
.app-store-badge { display: inline-block; margin-top: 28px; }
.app-store-badge img { height: 48px; }
.app-store-badge .placeholder-badge {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 10px;
  color: rgba(212,175,55,0.8);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---- Review link ---- */
.review-link {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  color: rgba(212,175,55,0.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.review-link:hover {
  border-color: rgba(212,175,55,0.4);
  color: rgba(212,175,55,0.9);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.breadcrumb a {
  color: rgba(212,175,55,0.6);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: rgba(212,175,55,0.9);
}

/* ---- Apps grid (studio landing) ---- */
.app-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #0f2a2e;
  border: 1px solid rgba(0,180,160,0.25);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.app-card:hover { border-color: rgba(212,175,55,0.3); }

.app-card img {
  width: 72px; height: 72px;
  border-radius: 16px;
  flex-shrink: 0;
}

.app-card .app-icon-placeholder {
  width: 72px; height: 72px;
  border-radius: 16px;
  flex-shrink: 0;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(212,175,55,0.4);
}

.app-card-body { flex: 1; }
.app-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.app-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.app-card-body .cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(212,175,55,0.8);
  text-decoration: none;
}
.app-card-body .cta:hover { color: rgb(212,175,55); }

.app-card-body .badge-coming-soon {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(212,175,55,0.5);
  letter-spacing: 0.03em;
}

/* ---- Footer ---- */
.footer {
  text-align: center;
  padding: 48px 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

.footer span { color: rgba(212,175,55,0.4); }

.footer-links { margin-top: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  margin: 0 10px;
  font-size: 12px;
}
.footer-links a:hover { color: rgba(212,175,55,0.6); }

/* ---- Responsive ---- */
@media (max-width: 480px) {
  .header h1 { font-size: 24px; }
  nav { padding: 12px 16px; }
  .nav-links { gap: 14px; font-size: 12px; flex-wrap: wrap; }
  .stats-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .app-card { flex-direction: column; text-align: center; }
}
