/* About Page - Clean Document Style */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

.about-page {
  width: 100%;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.document-container {
  max-width: 900px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 100px;
}

/* Document Header */
.doc-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #d4c4b0;
}

.doc-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #2b1a12;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.doc-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #8b6f47;
  margin: 0;
  font-weight: normal;
}

/* Sections */
.doc-section {
  margin-bottom: 50px;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #2b1a12;
  margin: 0 0 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d4c4b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subsection-title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #4a2f22;
  margin: 30px 0 20px;
  letter-spacing: 0.5px;
}

/* Text Blocks */
.text-block {
  margin-bottom: 20px;
}

.text-block p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2b1a12;
  margin: 0 0 15px;
}

.text-block strong {
  color: #8b6f47;
  font-weight: 600;
}

.emphasis {
  font-size: 18px;
  font-weight: 600;
  color: #4a2f22;
}

.highlight-block {
  background: rgba(212, 196, 176, 0.2);
  padding: 20px;
  border-left: 4px solid #8b6f47;
  margin: 25px 0;
}

.block-title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #4a2f22;
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}

.philosophy {
  background: rgba(139, 111, 71, 0.1);
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
}

.philosophy p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #4a2f22;
  margin: 10px 0;
  font-style: italic;
}

/* Tables */
.info-table {
  margin: 20px 0;
}

.table-row {
  display: flex;
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.table-row:last-child {
  border-bottom: none;
}

.table-label {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #666;
  font-weight: 600;
}

.table-value {
  flex: 2;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #2b1a12;
}

.table-value.highlight {
  color: #8b6f47;
  font-weight: 600;
  font-size: 16px;
}

/* Distribution List */
.distribution-list {
  margin: 20px 0;
}

.dist-item {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 10px;
  background: rgba(212, 196, 176, 0.1);
  border-radius: 5px;
}

.dist-percent {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #8b6f47;
  min-width: 70px;
  margin-right: 20px;
}

.dist-info {
  flex: 1;
}

.dist-name {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #2b1a12;
  font-weight: 600;
  margin-bottom: 5px;
}

.dist-amount {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #666;
}

/* Stages Table */
.stages-table {
  margin: 20px 0;
  border: 1px solid #d4c4b0;
  border-radius: 5px;
  overflow: hidden;
}

.stage-row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 3fr;
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.stage-row:last-child {
  border-bottom: none;
}

.stage-header {
  background: #8b6f47;
}

.stage-header .stage-col {
  color: #fff;
  font-weight: bold;
}

.stage-final {
  background: rgba(255, 215, 0, 0.1);
  font-weight: bold;
}

.stage-col {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #2b1a12;
  padding: 5px;
}

/* Rewards Table */
.rewards-table {
  margin: 20px 0;
  border: 1px solid #d4c4b0;
  border-radius: 5px;
  overflow: hidden;
}

.reward-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.reward-row:last-child {
  border-bottom: none;
}

.reward-header {
  background: #8b6f47;
}

.reward-header .reward-col {
  color: #fff;
  font-weight: 600;
}

.reward-best {
  background: rgba(255, 215, 0, 0.15);
  font-weight: 600;
}

.reward-col {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #2b1a12;
  padding: 5px;
}

/* Referral Info */
.referral-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.ref-level {
  background: rgba(212, 196, 176, 0.15);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.ref-name {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #4a2f22;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.ref-percent {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #8b6f47;
}

/* Note Box */
.note-box {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #ffd700;
  padding: 15px 20px;
  margin: 20px 0;
}

.note-box p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #2b1a12;
  margin: 0;
}

.note-box strong {
  color: #8b6f47;
}

/* List Block */
.list-block {
  margin: 20px 0;
}

.list-block h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #4a2f22;
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}

.list-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-block li {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #2b1a12;
  padding: 8px 0 8px 25px;
  position: relative;
}

.list-block li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8b6f47;
  font-weight: 600;
  font-size: 18px;
}

/* Roadmap */
.roadmap-list {
  margin: 20px 0;
}

.roadmap-phase {
  margin-bottom: 30px;
  padding-left: 30px;
  border-left: 3px solid #d4c4b0;
}

.phase-title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #4a2f22;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.phase-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-items li {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #2b1a12;
  padding: 6px 0 6px 25px;
  position: relative;
}

.phase-items li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8b6f47;
  font-weight: 600;
}

/* Document Footer */
.doc-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 2px solid #d4c4b0;
  text-align: center;
}

.footer-quote {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #4a2f22;
  font-style: italic;
  margin: 0 0 15px;
  font-weight: 500;
}

.footer-note {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0 0 15px;
}

.footer-tagline {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #8b6f47;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .document-container {
    padding: 30px 20px;
    margin-top: 80px;
  }

  .doc-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }

  .subsection-title {
    font-size: 20px;
  }

  .stage-row,
  .reward-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .referral-info {
    grid-template-columns: 1fr;
  }

  .dist-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .dist-percent {
    margin-bottom: 10px;
  }
}
