﻿/* ============================================================
   Reconnexion Divine — V0.8 Export Portfolio
============================================================ */

.v08-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(49, 87, 213, .12), transparent 32rem),
    linear-gradient(180deg, #f8fbff, #ffffff);
  color: #172033;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.v08-wrap {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.v08-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.v08-nav a {
  color: #3157d5;
  text-decoration: none;
  font-weight: 800;
}

.v08-hero,
.v08-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(49, 87, 213, .16);
  box-shadow: 0 18px 45px rgba(20, 34, 70, .10);
  border-radius: 28px;
}

.v08-hero {
  padding: 36px;
}

.v08-card {
  padding: 24px;
}

.v08-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid rgba(49, 87, 213, .16);
  color: #3157d5;
  font-weight: 800;
}

.v08-hero h1 {
  margin: 14px 0;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.v08-hero p,
.v08-card p,
.v08-card li {
  color: #63708a;
  line-height: 1.75;
}

.v08-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.v08-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.v08-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .82rem 1rem;
  border-radius: 999px;
  background: #3157d5;
  color: white !important;
  text-decoration: none;
  font-weight: 850;
}

.v08-button.secondary {
  background: #ffffff;
  color: #3157d5 !important;
  border: 1px solid rgba(49,87,213,.16);
}

.v08-timeline {
  border-left: 3px solid rgba(49,87,213,.22);
  padding-left: 18px;
}

.v08-timeline p {
  margin: 0 0 16px;
}

.v08-print-note {
  padding: 16px;
  border-radius: 18px;
  background: #eef4ff;
  color: #3157d5;
  font-weight: 800;
}

.v08-footer {
  margin-top: 34px;
  text-align: center;
  color: #63708a;
  font-size: .94rem;
}

@media print {
  body {
    background: #ffffff !important;
  }

  .v08-nav,
  .v08-button-row {
    display: none !important;
  }

  .v08-page {
    background: #ffffff !important;
  }

  .v08-hero,
  .v08-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    break-inside: avoid;
  }

  .v08-wrap {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 820px) {
  .v08-grid {
    grid-template-columns: 1fr;
  }

  .v08-hero {
    padding: 24px;
  }
}