﻿/* ============================================================
   Reconnexion Divine — V0.9 Integration Portfolio
============================================================ */

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

.v09-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

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

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

.v09-hero,
.v09-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;
}

.v09-hero {
  padding: 36px;
}

.v09-card {
  padding: 24px;
}

.v09-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;
}

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

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

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

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

.v09-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;
}

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

.v09-code {
  white-space: pre-wrap;
  background: #101827;
  color: #eef4ff;
  padding: 18px;
  border-radius: 18px;
  overflow-x: auto;
  font-size: .92rem;
}

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

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

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