/* ========================================================
   RAREON — Site officiel
   Stylesheet partagé
   © 2026 Samy Ferrahi
   ========================================================*/

/* ----------- TOKENS ----------- */
:root {
  /* Brand palette RAREON */
  --void:        #0A0612;
  --void-2:      #14091F;
  --void-3:      #1C0E29;
  --violet:      #7B5CF6;
  --violet-soft: #9D85FF;
  --rose:        #FF6B9D;
  --or:          #C9A84C;
  --or-soft:     #E5C875;
  --cream:       #F5EFE6;
  --cream-dim:   #C9C0B0;
  --cream-mute:  #8A8378;
  --line:        rgba(245, 239, 230, 0.10);
  --line-soft:   rgba(245, 239, 230, 0.06);

  /* Type */
  --serif:  "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --sans:   "DM Sans", "Helvetica Neue", system-ui, sans-serif;
  --mono:   "DM Mono", "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --max:    1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 18px;
}

/* ----------- RESET ----------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--void);
  color: var(--cream);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ----------- COSMIC BACKGROUND ----------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 12% 8%, rgba(123, 92, 246, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 70% at 92% 12%, rgba(255, 107, 157, 0.10), transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% 95%, rgba(201, 168, 76, 0.06), transparent 65%),
    var(--void);
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(245, 239, 230, 0.6), transparent),
    radial-gradient(1px 1px at 70% 70%, rgba(245, 239, 230, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(245, 239, 230, 0.5), transparent),
    radial-gradient(1px 1px at 90% 20%, rgba(245, 239, 230, 0.3), transparent),
    radial-gradient(1px 1px at 15% 65%, rgba(245, 239, 230, 0.4), transparent),
    radial-gradient(2px 2px at 85% 55%, rgba(245, 239, 230, 0.3), transparent),
    radial-gradient(1px 1px at 55% 15%, rgba(245, 239, 230, 0.5), transparent),
    radial-gradient(1px 1px at 30% 45%, rgba(245, 239, 230, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 75% 35%, rgba(245, 239, 230, 0.4), transparent);
  background-size: 1200px 900px;
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
  animation: drift 90s linear infinite;
}
@keyframes drift {
  from { transform: translateY(0); }
  to   { transform: translateY(-300px); }
}

/* ----------- LAYOUT ----------- */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; }

/* ----------- NAV ----------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(10, 6, 18, 0.65);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.32em;
  font-feature-settings: "ss01";
}
.brand b { color: var(--or-soft); font-weight: 400; }
.nav__links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.nav__links a { transition: color 0.3s; }
.nav__links a:hover { color: var(--cream); }
.nav__cta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-soft);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.3s;
}
.nav__cta:hover { border-color: var(--or-soft); background: rgba(201, 168, 76, 0.08); }
@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ----------- HERO ----------- */
.hero {
  padding: clamp(80px, 14vh, 160px) 0 clamp(80px, 12vh, 140px);
  position: relative;
  overflow: hidden;
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or-soft);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--or);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-feature-settings: "ss01", "ss02";
  margin-bottom: 32px;
}
.hero__title em {
  font-style: italic;
  font-weight: 200;
  color: var(--or-soft);
}
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
  font-weight: 300;
  max-width: 620px;
  color: var(--cream-dim);
  margin-bottom: 48px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
}
.btn--primary {
  background: var(--cream);
  color: var(--void);
  font-weight: 500;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -20px rgba(245,239,230,0.4); }
.btn--ghost {
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--cream-dim); }
.btn .arrow { transition: transform 0.4s; }
.btn:hover .arrow { transform: translateX(4px); }

/* Procedural cosmic visual */
.hero__visual {
  position: absolute;
  right: calc(-1 * var(--gutter));
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 38vw, 560px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.95;
}
.moon-orb {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--violet-soft) 0%, var(--violet) 20%, var(--void-3) 60%, var(--void) 90%);
  box-shadow:
    inset -20px -30px 60px rgba(0,0,0,0.6),
    inset 30px 40px 80px rgba(255, 107, 157, 0.15),
    0 0 100px rgba(123, 92, 246, 0.4),
    0 0 200px rgba(123, 92, 246, 0.2);
  animation: orb-rotate 60s linear infinite;
}
.moon-orb::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.orbit {
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.2);
  animation: spin 40s linear infinite;
}
.orbit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--or);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--or);
}
.orbit--2 {
  inset: -28%;
  animation: spin 75s linear infinite reverse;
  border-color: rgba(255, 107, 157, 0.15);
}
.orbit--2::before {
  background: var(--rose);
  box-shadow: 0 0 25px var(--rose);
  width: 6px; height: 6px;
}
@keyframes orb-rotate {
  from { filter: hue-rotate(0deg); }
  to   { filter: hue-rotate(20deg); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (max-width: 960px) {
  .hero__visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: min(80vw, 360px);
    margin: 64px auto 0;
    opacity: 0.85;
  }
}

/* ----------- SECTION HEADER ----------- */
.section {
  padding: clamp(80px, 14vh, 160px) 0;
  border-top: 1px solid var(--line-soft);
}
.section__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--or-soft);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 820px;
}
.section__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--or-soft);
}
.section__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--cream-dim);
  max-width: 640px;
  font-weight: 300;
}

/* ----------- MANIFESTO ----------- */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.manifesto__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or-soft);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.manifesto__body p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.32;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.manifesto__body p:last-child { margin-bottom: 0; }
.manifesto__body p em { color: var(--or-soft); font-style: italic; font-weight: 300; }
@media (max-width: 880px) {
  .manifesto { grid-template-columns: 1fr; gap: 32px; }
}

/* ----------- INTENTIONS GRID ----------- */
.intentions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  margin-top: 80px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.intention {
  background: var(--void);
  padding: 44px 32px;
  transition: background 0.5s;
  position: relative;
}
.intention:hover { background: var(--void-2); }
.intention__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--cream-mute);
  margin-bottom: 36px;
}
.intention__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.intention__text {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* ----------- FEATURES (large editorial) ----------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding: clamp(60px, 10vh, 110px) 0;
  border-top: 1px solid var(--line-soft);
}
.feature:nth-child(even) .feature__art { order: 2; }
.feature:nth-child(even) .feature__copy { order: 1; }
.feature__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or-soft);
  margin-bottom: 24px;
}
.feature__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.feature__title em { font-style: italic; color: var(--or-soft); }
.feature__text {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream-dim);
  margin-bottom: 28px;
  max-width: 480px;
}
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--cream-dim);
}
.feature__list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-left: 0;
}
.feature__list li::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--or);
  flex-shrink: 0;
  transform: translateY(-4px);
}
.feature__badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  padding: 6px 12px;
  border: 1px solid rgba(255, 107, 157, 0.4);
  border-radius: 999px;
  margin-bottom: 16px;
}
@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature:nth-child(even) .feature__art,
  .feature:nth-child(even) .feature__copy { order: initial; }
}

/* ----------- FEATURE ART (procedural CSS) ----------- */
.art {
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 25%, rgba(123, 92, 246, 0.18), transparent 50%),
    radial-gradient(circle at 80% 75%, rgba(255, 107, 157, 0.12), transparent 55%),
    linear-gradient(140deg, var(--void-2), var(--void-3));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

/* Art: Mon Ciel — 4-quadrant chart */
.art--ciel {
  display: grid;
  place-items: center;
}
.chart-ring {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  position: relative;
  animation: spin 80s linear infinite;
}
.chart-ring::before, .chart-ring::after {
  content: "";
  position: absolute;
  background: rgba(201, 168, 76, 0.25);
}
.chart-ring::before { top: 0; bottom: 0; left: 50%; width: 1px; }
.chart-ring::after { left: 0; right: 0; top: 50%; height: 1px; }
.chart-ring__inner {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.25);
}
.chart-ring__core {
  position: absolute;
  top: 50%; left: 50%;
  width: 14%; height: 14%;
  background: var(--or);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.6);
}
.chart-quad {
  position: absolute;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-style: italic;
}
.chart-quad--n { top: 8%; left: 50%; transform: translateX(-50%); }
.chart-quad--e { right: 8%; top: 50%; transform: translateY(-50%); }
.chart-quad--s { bottom: 8%; left: 50%; transform: translateX(-50%); }
.chart-quad--w { left: 8%; top: 50%; transform: translateY(-50%); }

/* Art: Grimoire — book pages */
.art--grimoire { padding: 18%; display: grid; place-items: center; }
.grim-book {
  width: 100%;
  aspect-ratio: 0.78;
  background: linear-gradient(135deg, var(--void-3), var(--void-2));
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 6px;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  padding: 14% 12%;
  display: flex;
  flex-direction: column;
  gap: 10%;
}
.grim-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}
.grim-line:nth-child(2) { width: 70%; }
.grim-line:nth-child(3) { width: 85%; }
.grim-line:nth-child(4) { width: 55%; }
.grim-line:nth-child(5) { width: 78%; }
.grim-book::after {
  content: "✦";
  position: absolute;
  top: 6%; right: 8%;
  font-size: 18px;
  color: var(--or-soft);
}

/* Art: Présence — breathing circle */
.art--presence { display: grid; place-items: center; }
.breath {
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 92, 246, 0.4), transparent 70%);
  border: 1px solid rgba(123, 92, 246, 0.5);
  position: relative;
  animation: breath 19s ease-in-out infinite;
}
.breath::before, .breath::after {
  content: "";
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  border: 1px solid rgba(123, 92, 246, 0.18);
  animation: breath-ring 19s ease-in-out infinite;
}
.breath::after { inset: -40%; animation-delay: -2s; opacity: 0.6; }
@keyframes breath {
  0%, 100% { transform: scale(0.85); opacity: 0.7; }
  21%      { transform: scale(1.15); opacity: 1; }
  58%      { transform: scale(1.15); opacity: 1; }
  100%     { transform: scale(0.85); opacity: 0.7; }
}
@keyframes breath-ring {
  0%, 100% { transform: scale(0.95); opacity: 0.4; }
  50%      { transform: scale(1.1); opacity: 0.8; }
}

/* Art: Oracle — card spread */
.art--oracle { display: grid; place-items: center; padding: 14%; }
.cards { position: relative; width: 100%; aspect-ratio: 1; }
.card {
  position: absolute;
  top: 50%; left: 50%;
  width: 30%;
  aspect-ratio: 0.62;
  background: linear-gradient(180deg, var(--void-3), var(--void-2));
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 8px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.6);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--or-soft);
  font-size: clamp(20px, 3vw, 32px);
}
.card--1 { transform: translate(-130%, -50%) rotate(-12deg); }
.card--2 { transform: translate(-50%, -55%) rotate(0deg); z-index: 2; border-color: rgba(255, 107, 157, 0.5); }
.card--3 { transform: translate(30%, -50%) rotate(12deg); }

/* Art: Rituels — sacred geometry */
.art--rituels { display: grid; place-items: center; }
.geometry {
  width: 70%;
  aspect-ratio: 1;
  position: relative;
}
.geometry div {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
}
.geometry div:nth-child(1) { transform: rotate(0deg);   inset: 0 25%; }
.geometry div:nth-child(2) { transform: rotate(60deg);  inset: 0 25%; }
.geometry div:nth-child(3) { transform: rotate(120deg); inset: 0 25%; }
.geometry::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10%; height: 10%;
  background: var(--or);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px var(--or);
}

/* Art: Agenda — moon phases */
.art--agenda { display: grid; place-items: center; }
.phases {
  display: flex;
  gap: 4%;
  width: 75%;
  align-items: center;
}
.phase {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream);
  position: relative;
  box-shadow: 0 0 30px rgba(245, 239, 230, 0.15);
}
.phase--1 { background: radial-gradient(circle at 80% 50%, var(--cream) 25%, var(--void-3) 50%); }
.phase--2 { background: linear-gradient(90deg, var(--void-3) 50%, var(--cream) 50%); }
.phase--3 { background: var(--cream); transform: scale(1.15); box-shadow: 0 0 50px rgba(245, 239, 230, 0.4); }
.phase--4 { background: linear-gradient(90deg, var(--cream) 50%, var(--void-3) 50%); }
.phase--5 { background: radial-gradient(circle at 20% 50%, var(--cream) 25%, var(--void-3) 50%); }

/* ----------- DISCLAIMER ----------- */
.disclaimer {
  background: linear-gradient(180deg, var(--void-2), var(--void));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(40px, 5vw, 64px);
  margin-top: 80px;
}
.disclaimer__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or-soft);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.disclaimer__label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--or);
}
.disclaimer__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 720px;
}
.disclaimer__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 760px;
}
.disclaimer__text p + p { margin-top: 14px; }
.disclaimer__text strong { color: var(--cream); font-weight: 500; }

/* ----------- FAQ ----------- */
.faq__list { margin-top: 60px; border-top: 1px solid var(--line); }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item details { padding: 28px 0; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 300;
  line-height: 1.3;
  transition: color 0.3s;
}
.faq__item summary:hover { color: var(--or-soft); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 200;
  color: var(--or-soft);
  transition: transform 0.4s;
  line-height: 0;
  flex-shrink: 0;
}
.faq__item details[open] summary::after { transform: rotate(45deg); }
.faq__item details > div {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 780px;
  padding-top: 20px;
}

/* ----------- CTA FINAL ----------- */
.final {
  text-align: center;
  padding: clamp(100px, 18vh, 200px) 0;
  border-top: 1px solid var(--line-soft);
}
.final__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or-soft);
  margin-bottom: 32px;
}
.final__title {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 900px;
  margin-inline: auto;
}
.final__title em { font-style: italic; color: var(--or-soft); }
.final__sub {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

/* ----------- FOOTER ----------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or-soft);
  margin-bottom: 20px;
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col a { color: var(--cream-dim); transition: color 0.3s; }
.footer__col a:hover { color: var(--cream); }
.footer__brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.32em;
  margin-bottom: 16px;
}
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-dim);
  max-width: 280px;
  line-height: 1.5;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--cream-mute);
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; }
}

/* ====================================================
   LEGAL PAGES (privacy, terms, support)
   ====================================================*/
.legal {
  padding: clamp(60px, 10vh, 120px) 0 clamp(80px, 14vh, 160px);
  max-width: 800px;
  margin: 0 auto;
}
.legal__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or-soft);
  margin-bottom: 24px;
}
.legal__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.legal__meta {
  font-size: 13px;
  color: var(--cream-mute);
  margin-bottom: 48px;
  letter-spacing: 0.04em;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.legal__intro {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--cream-dim);
  margin-bottom: 48px;
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 56px 0 20px;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.legal h2::before {
  content: counter(sect, decimal-leading-zero);
  counter-increment: sect;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--or-soft);
}
.legal { counter-reset: sect; }
.legal h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
  line-height: 1.3;
  margin: 32px 0 14px;
  color: var(--cream);
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-dim);
  margin-bottom: 14px;
}
.legal ul, .legal ol {
  padding-left: 0;
  margin-bottom: 20px;
}
.legal ul li, .legal ol li {
  padding-left: 24px;
  position: relative;
}
.legal ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--or-soft);
}
.legal ol { counter-reset: olist; }
.legal ol li {
  counter-increment: olist;
}
.legal ol li::before {
  content: counter(olist) ".";
  position: absolute;
  left: 0;
  color: var(--or-soft);
  font-family: var(--mono);
  font-size: 13px;
}
.legal strong { color: var(--cream); font-weight: 500; }
.legal a {
  color: var(--or-soft);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  transition: border-color 0.3s;
}
.legal a:hover { border-color: var(--or-soft); }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 40px;
  transition: color 0.3s;
}
.legal__back:hover { color: var(--or-soft); }

/* ----------- SUPPORT SPECIFIC ----------- */
.support__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 48px 0;
}
.support__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: rgba(20, 9, 31, 0.4);
}
.support__card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--cream);
}
.support__card p {
  font-size: 14px;
  color: var(--cream-dim);
  margin-bottom: 16px;
  line-height: 1.6;
}
.support__card a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-soft);
  border: none;
}

/* ----------- UTILITY ----------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ----------- REVEAL ANIMATION ----------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: reveal 1.2s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .reveal-1 { animation-delay: 0.1s; }
  .reveal-2 { animation-delay: 0.25s; }
  .reveal-3 { animation-delay: 0.4s; }
  .reveal-4 { animation-delay: 0.55s; }
  @keyframes reveal {
    to { opacity: 1; transform: none; }
  }
}

/* ============================================================
   APP MOCKUPS — composants visuels qui reprennent l'app RAREON
   Ajouté après screenshots app, alignement design réel
   ============================================================ */

/* ---------- IPHONE FRAME ---------- */
.iphone {
  position: relative;
  width: 320px;
  aspect-ratio: 19 / 39;
  background: #000;
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.08),
    0 60px 80px -30px rgba(0,0,0,0.7),
    0 30px 60px -20px rgba(123,92,246,0.25);
}
.iphone::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 16px;
  z-index: 10;
}
.iphone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(180deg, #1A0E2E 0%, #14091F 100%);
  overflow: hidden;
  padding: 56px 14px 70px;
  color: var(--cream);
  font-size: 11px;
}
.iphone__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 58px;
  background: linear-gradient(180deg, transparent, rgba(10,6,18,0.9) 30%);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 12px 14px;
}
.iphone__bar span {
  font-size: 9px;
  color: var(--cream-mute);
  letter-spacing: 0.04em;
}
.iphone__bar span.active { color: var(--violet-soft); }

/* Stars background inside phone */
.iphone__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(245,239,230,0.5), transparent),
    radial-gradient(1px 1px at 75% 18%, rgba(245,239,230,0.4), transparent),
    radial-gradient(1px 1px at 45% 65%, rgba(245,239,230,0.4), transparent),
    radial-gradient(1px 1px at 88% 75%, rgba(245,239,230,0.3), transparent),
    radial-gradient(1px 1px at 12% 85%, rgba(245,239,230,0.4), transparent),
    radial-gradient(1.5px 1.5px at 60% 40%, rgba(245,239,230,0.3), transparent);
  pointer-events: none;
  opacity: 0.7;
}

/* ---------- APP CARDS ---------- */
.appcard {
  background: linear-gradient(140deg, rgba(28, 14, 41, 0.85), rgba(20, 9, 31, 0.85));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 12px;
  position: relative;
  backdrop-filter: blur(8px);
}
.appcard__eyebrow {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or-soft);
  margin-bottom: 10px;
}
.appcard__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 300;
  color: var(--cream);
}
.appcard__sub {
  font-size: 9px;
  color: var(--cream-dim);
  font-style: italic;
  margin-top: 6px;
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.chip {
  font-size: 9px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream-dim);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.chip--sun { color: var(--or-soft); border-color: rgba(201,168,76,0.4); }
.chip--moon { color: #9DD; border-color: rgba(155,221,221,0.3); }
.chip--num { color: var(--violet-soft); border-color: rgba(123,92,246,0.4); }
.chip--ox { color: #6FCF97; border-color: rgba(111,207,151,0.3); }

/* ---------- MOOD ROW ---------- */
.mood-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 14px 0 10px;
}
.mood {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.mood__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.mood--active .mood__circle {
  background: rgba(123,92,246,0.15);
  border-color: rgba(123,92,246,0.5);
  box-shadow: 0 0 18px rgba(123,92,246,0.4);
}
.mood__label { font-size: 8px; color: var(--cream-dim); }
.mood--active .mood__label { color: var(--cream); }

/* ---------- BIG NUMBER / SCORE ---------- */
.score-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: conic-gradient(var(--or) 0% 66%, rgba(255,255,255,0.08) 66% 100%);
  display: grid;
  place-items: center;
  margin: 0 auto;
  position: relative;
}
.score-ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--void-2);
  border-radius: 50%;
}
.score-ring__num {
  position: relative;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.score-ring__num small {
  font-size: 14px;
  color: var(--or-soft);
  font-weight: 300;
  display: block;
  text-align: center;
}

/* ---------- 2x2 ASTRAL GRID ---------- */
.astral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}
.astral-cell {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
}
.astral-cell .ico {
  font-size: 26px;
  margin-bottom: 4px;
  display: block;
}
.astral-cell .lbl {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-soft);
  margin-bottom: 2px;
}
.astral-cell--sun .lbl { color: var(--or-soft); }
.astral-cell--moon .lbl { color: #9DD; }
.astral-cell--intent .lbl { color: var(--rose); }
.astral-cell--asc .lbl { color: var(--or); }
.astral-cell .val {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--cream);
  font-weight: 300;
}

/* ---------- HEX BADGES ---------- */
.hex-row {
  display: flex;
  justify-content: space-around;
  margin-top: 14px;
}
.hex {
  text-align: center;
}
.hex__shape {
  width: 60px;
  height: 68px;
  margin: 0 auto 8px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  color: white;
  font-weight: 300;
}
.hex--love .hex__shape { background: linear-gradient(180deg, #FF8FB3, #D5577F); }
.hex--work .hex__shape { background: linear-gradient(180deg, #A78BFA, #6D44E4); }
.hex--intuit .hex__shape { background: linear-gradient(180deg, #6FE7A5, #2DAB6D); }
.hex__lbl {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hex--love .hex__lbl { color: #FF8FB3; }
.hex--work .hex__lbl { color: #A78BFA; }
.hex--intuit .hex__lbl { color: #6FE7A5; }
.hex__state {
  font-family: var(--serif);
  font-style: italic;
  font-size: 9px;
  color: var(--cream-mute);
  margin-top: 2px;
}

/* ---------- TRIPLE CONVERGENCE BIG ---------- */
.triple {
  text-align: center;
  padding: 24px 12px;
  background: radial-gradient(circle at 50% 30%, rgba(201,168,76,0.15), transparent 70%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 22px;
}
.triple__num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--or-soft);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.triple__label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  margin-top: 6px;
}
.triple__sub {
  font-size: 9px;
  color: var(--cream-mute);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ---------- LUNAR CALENDAR ---------- */
.lunar-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin: 12px 0;
}
.lunar-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: relative;
}
.lunar-day .moon-css {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: var(--or-soft);
  position: relative;
  opacity: 0.85;
}
.lunar-day .moon-css.waning::after,
.lunar-day .moon-css.waxing::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--void-2);
}
.lunar-day .moon-css.waning::after { left: -25%; }
.lunar-day .moon-css.waxing::after { right: -25%; }
.lunar-day .moon-css.full {
  box-shadow: 0 0 12px rgba(229,200,117,0.6);
}
.lunar-day .moon-css.new {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
}
.lunar-day.today {
  outline: 1.5px solid var(--rose);
  outline-offset: 1px;
}
.lunar-day__n {
  position: absolute;
  bottom: -10px;
  font-size: 7px;
  color: var(--cream-mute);
}

/* ---------- INTENTION CHIPS (Agenda) ---------- */
.intent-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 10px;
}
.intent-chip {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
}
.intent-chip--no {
  background: rgba(255,107,157,0.08);
  border-color: rgba(255,107,157,0.25);
  color: var(--cream-dim);
}

/* ---------- RITUAL STEPS ---------- */
.ritual-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ritual-step:last-child { border-bottom: 0; }
.ritual-step__n {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  color: var(--or-soft);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
}
.ritual-step__text {
  font-size: 10px;
  line-height: 1.4;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 300;
}

/* ---------- ARCHETYPE CARD ---------- */
.archetype {
  text-align: center;
  padding: 24px 14px;
  background: radial-gradient(circle at 50% 30%, rgba(255,107,107,0.15), transparent 65%);
  border: 1px solid rgba(255,107,107,0.25);
  border-radius: 22px;
}
.archetype__flame {
  font-size: 48px;
  margin-bottom: 10px;
}
.archetype__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 4px;
}
.archetype__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--cream-dim);
}
.archetype__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--or-soft);
  margin-top: 10px;
}
.archetype__tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

/* ---------- LEVEL CARD ---------- */
.level {
  background: linear-gradient(135deg, rgba(123,92,246,0.15), rgba(255,107,157,0.1));
  border: 1px solid rgba(123,92,246,0.3);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.level__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--violet), var(--rose));
  display: grid;
  place-items: center;
  font-family: var(--serif);
  color: white;
  font-size: 20px;
}
.level__info { flex: 1; }
.level__name {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--cream);
  font-weight: 300;
}
.level__xp {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--cream-dim);
  letter-spacing: 0.06em;
}
.level__bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.level__bar::after {
  content: "";
  display: block;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--rose));
}

/* ---------- TAB SHOWCASE (5 destinations) ---------- */
.tabs-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 60px 0;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.tab-pill {
  text-align: center;
  padding: 24px 12px;
  border-radius: 18px;
  background: rgba(20, 9, 31, 0.4);
  border: 1px solid var(--line-soft);
  transition: all 0.4s;
}
.tab-pill:hover {
  border-color: rgba(123,92,246,0.4);
  background: rgba(20, 9, 31, 0.7);
  transform: translateY(-2px);
}
.tab-pill__ico {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.tab-pill__name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 4px;
}
.tab-pill__sub {
  font-size: 12px;
  color: var(--cream-dim);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .tabs-showcase { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .tabs-showcase { grid-template-columns: 1fr; }
}

/* ---------- TWO-COL FEATURE BLOCK ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding: clamp(60px, 10vh, 110px) 0;
  border-top: 1px solid var(--line-soft);
}
.feature-block:nth-child(even) .feature-block__visual { order: -1; }
.feature-block__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or-soft);
  margin-bottom: 20px;
}
.feature-block__title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.feature-block__title em { font-style: italic; color: var(--or-soft); }
.feature-block__text {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream-dim);
  margin-bottom: 24px;
  max-width: 520px;
}
.feature-block__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--or-soft);
  border-left: 1px solid var(--or);
  padding-left: 18px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.feature-block__bullets {
  font-size: 14px;
  color: var(--cream-dim);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-block__bullets li {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.feature-block__bullets li::before {
  content: "—";
  color: var(--or);
  flex-shrink: 0;
}
.feature-block__visual {
  display: flex;
  justify-content: center;
}
@media (max-width: 880px) {
  .feature-block { grid-template-columns: 1fr; }
  .feature-block:nth-child(even) .feature-block__visual { order: 0; }
}

/* ---------- ENCYCLOPEDIA GRID ---------- */
.encyclo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 60px;
}
.encyclo__item {
  padding: 28px 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(20,9,31,0.3);
  transition: all 0.4s;
}
.encyclo__item:hover {
  border-color: rgba(123,92,246,0.4);
  transform: translateY(-4px);
}
.encyclo__ico {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.encyclo__cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--violet-soft);
  margin-bottom: 8px;
}
.encyclo__name {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 6px;
}
.encyclo__desc {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ---------- APPROACH (notre approche) ---------- */
.approach {
  background: linear-gradient(135deg, rgba(123,92,246,0.08), rgba(255,107,157,0.06));
  border: 1px solid rgba(123,92,246,0.2);
  border-radius: var(--radius);
  padding: clamp(40px, 5vw, 64px);
  margin-top: 80px;
}
.approach__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--violet-soft);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.approach__label::before {
  content: "✦";
  color: var(--or);
}
.approach__title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 760px;
}
.approach__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.approach__pill {
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--cream-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.approach__warn {
  color: var(--rose);
  font-size: 14px;
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ---------- HERO GRID RESPONSIVE FIX ---------- */
@media (max-width: 900px) {
  .hero .shell {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .hero .shell > div:last-child {
    margin-top: 40px;
  }
  .hero__title { font-size: clamp(48px, 14vw, 96px) !important; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .iphone { transform: scale(0.85) !important; }
}
@media (max-width: 500px) {
  .iphone { transform: scale(0.78) !important; margin: -30px 0; }
}

/* ============================================================
   ITERATION 2 — Cards isolées, hero refait, fixes
   ============================================================ */

/* ---------- LOGO ---------- */
.logo-mark {
  width: clamp(140px, 22vw, 240px);
  aspect-ratio: 1;
  border-radius: 22%;
  display: block;
  box-shadow:
    0 30px 60px -20px rgba(123,92,246,0.4),
    0 60px 100px -40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-stack {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-stack { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-stack .hero__lede { margin-left: auto; margin-right: auto; }
  .hero-stack .hero__actions { justify-content: center; }
}

/* ---------- ISOLATED FEATURE CARD (replaces iphone mockups) ---------- */
.feat-card {
  background: linear-gradient(180deg, #14091F 0%, #1C0E29 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.7),
    0 20px 40px -20px rgba(123,92,246,0.2);
  max-width: 480px;
}
.feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(123,92,246,0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(201,168,76,0.10), transparent 50%);
  pointer-events: none;
}
.feat-card > * { position: relative; }
.feat-card__eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or-soft);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.feat-card__eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--or);
}

/* Mood big — pour la card Accueil */
.mood-big {
  display: flex;
  gap: 10px;
  margin: 20px 0 8px;
}
.mood-big .moodb {
  flex: 1;
  text-align: center;
}
.mood-big .moodb__c {
  width: 100%;
  aspect-ratio: 1;
  max-width: 56px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.mood-big .moodb--active .moodb__c {
  background: rgba(123,92,246,0.18);
  border-color: rgba(123,92,246,0.6);
  box-shadow: 0 0 30px rgba(123,92,246,0.4);
}
.mood-big .moodb__l {
  font-size: 11px;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}
.mood-big .moodb--active .moodb__l { color: var(--cream); }

/* Word of the day big */
.word-big {
  text-align: center;
  padding: 12px 0;
}
.word-big__ico {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,92,246,0.3), rgba(123,92,246,0.05));
  border: 1px solid rgba(123,92,246,0.4);
  display: grid;
  place-items: center;
  font-size: 36px;
}
.word-big__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 10px;
}
.word-big__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}
.word-big__source {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--cream-mute);
  letter-spacing: 0.1em;
  margin-top: 16px;
}

/* Astral big — 2x2 grid mais large */
.astral-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}
.astral-big__cell {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}
.astral-big__cell .a-ico {
  font-size: 32px;
  display: block;
  margin-bottom: 6px;
}
.astral-big__cell .a-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.astral-big__cell .a-val {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
  font-weight: 300;
}
.astral-big__cell--sun .a-lbl { color: var(--or-soft); }
.astral-big__cell--moon .a-lbl { color: #9DD; }
.astral-big__cell--intent .a-lbl { color: var(--rose); }
.astral-big__cell--asc .a-lbl { color: var(--or); }

/* Ritual steps big */
.ritual-big {
  text-align: center;
}
.ritual-big__title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  color: var(--cream);
  margin: 4px 0 6px;
  letter-spacing: -0.01em;
}
.ritual-big__meta {
  font-size: 12px;
  color: var(--or-soft);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.ritual-big__steps { text-align: left; margin-top: 8px; }
.ritual-big__step {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.ritual-big__step:last-child { border-bottom: 0; }
.ritual-big__n {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  color: var(--or-soft);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
}
.ritual-big__t {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream);
  font-weight: 300;
}

/* Triple convergence big */
.triple-big {
  text-align: center;
  padding: 16px 0;
}
.triple-big__num {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 120px);
  font-weight: 300;
  color: var(--or-soft);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.triple-big__lbl {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--cream);
  margin-top: 12px;
}
.triple-big__src {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--rose);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 16px;
}

/* Archetype big */
.arch-big {
  text-align: center;
  padding: 20px 0;
}
.arch-big__icon {
  font-size: clamp(60px, 10vw, 84px);
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 20px rgba(255,107,107,0.4));
}
.arch-big__name {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.arch-big__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--cream-dim);
  margin-bottom: 16px;
}
.arch-big__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--or-soft);
  padding: 12px 20px;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  margin: 8px auto 16px;
  max-width: 280px;
}
.arch-big__tags {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* ---------- COMPLIANCE BADGE INLINE ---------- */
.compliance-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,107,157,0.25);
  width: 100%;
  justify-content: center;
}

/* ---------- HERO MOCKUP FILLED ---------- */
.iphone--filled {
  transform: scale(0.92);
}
.iphone--filled .iphone__screen {
  padding: 48px 12px 60px;
  font-size: 10.5px;
}
.iphone--filled .appcard { padding: 12px; margin-bottom: 8px; }

/* Lunar phase pill */
.phase-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 10px;
  color: var(--or-soft);
  font-style: italic;
}
.phase-pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--or-soft);
  box-shadow: 0 0 10px rgba(229,200,117,0.6);
}

/* ============================================================
   FIXES v2 — Audit corrections
   - Snippets (mockup sans iPhone) pour les feature sections
   - Logo hero
   - Hero iPhone enrichi (3 cards)
   ============================================================ */

/* ---------- SNIPPET (mockup sans cadre iPhone) ---------- */
.snippet {
  width: 320px;
  background: linear-gradient(180deg, #1A0E2E 0%, #14091F 100%);
  border-radius: 28px;
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 80px -30px rgba(0,0,0,0.7),
    0 20px 50px -20px rgba(123,92,246,0.2);
}
.snippet::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(245,239,230,0.4), transparent),
    radial-gradient(1px 1px at 75% 18%, rgba(245,239,230,0.3), transparent),
    radial-gradient(1px 1px at 45% 65%, rgba(245,239,230,0.4), transparent),
    radial-gradient(1px 1px at 88% 75%, rgba(245,239,230,0.3), transparent),
    radial-gradient(1px 1px at 12% 85%, rgba(245,239,230,0.3), transparent);
  pointer-events: none;
  opacity: 0.6;
}
.snippet > * { position: relative; z-index: 1; }
.snippet__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 4px 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or-soft);
}

/* ---------- LOGO HERO ---------- */
.hero__logo {
  width: clamp(70px, 9vw, 100px);
  height: clamp(70px, 9vw, 100px);
  border-radius: 22%;
  margin-bottom: 32px;
  box-shadow:
    0 20px 50px -20px rgba(123,92,246,0.4),
    0 0 0 1px rgba(255,255,255,0.06);
}

/* ---------- FAVICON HOOK (no style, juste pour mémoire) ---------- */

/* ---------- SNIPPET FOOTER (faux bouton ou indication) ---------- */
.snippet__foot {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

/* ---------- Override : iPhone hero hauteur auto pour ne pas vider ---------- */
.iphone--hero {
  aspect-ratio: unset;
  height: auto;
  min-height: 540px;
}
.iphone--hero .iphone__screen {
  position: relative;
  height: auto;
  min-height: 520px;
}

/* ---------- BRAND IN FOOTER avec icône ---------- */
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer__brand-row img {
  width: 44px;
  height: 44px;
  border-radius: 22%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

/* ---------- LOGO IN NAV ---------- */
.nav__logo {
  width: 28px;
  height: 28px;
  border-radius: 22%;
  margin-right: 12px;
  vertical-align: middle;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}
.brand-wrap {
  display: flex;
  align-items: center;
}
