/* ========================================
   NOÉ — Future Pastoral
   Direction artistique : nuit gasconne × futurisme
   ======================================== */

:root {
  /* Palette */
  --bg: #0E0E0C;
  --bg-elev: #161613;
  --bg-card: #1C1C18;
  --ink: #F5F1E8;
  --ink-soft: rgba(245, 241, 232, 0.65);
  --ink-mute: rgba(245, 241, 232, 0.4);
  --hairline: rgba(245, 241, 232, 0.12);
  --accent: #C9A66B;
  --accent-deep: #8E6F3D;
  --moss: #4A6B47;
  --terracotta: #C46A3D;
  --signal: #DCEB72;

  /* Typo */
  --display: 'Fraunces', Georgia, serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.45'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9999;
}

/* ========================================
   LOADER
   ======================================== */

.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-mark {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}

.loader-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderLetter 0.8s var(--ease-out) forwards;
  animation-delay: var(--d);
}

.loader-letter:nth-child(3) {
  font-style: italic;
  color: var(--accent);
}

@keyframes loaderLetter {
  to { opacity: 1; transform: translateY(0); }
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: var(--hairline);
  margin: 0 auto 16px;
  position: relative;
  overflow: hidden;
}

.loader-bar span {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  animation: loaderBar 1.6s var(--ease-out) 0.3s forwards;
  transform: scaleX(0);
}

@keyframes loaderBar {
  to { transform: scaleX(1); }
}

.loader-text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  animation: loaderText 0.8s var(--ease-out) 0.6s forwards;
}

@keyframes loaderText {
  to { opacity: 1; }
}

/* ========================================
   CURSOR
   ======================================== */

.cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: difference;
}

.cursor.is-hover {
  width: 56px;
  height: 56px;
  background: var(--accent);
}

.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

@media (max-width: 900px), (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ========================================
   HEADER
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  background: rgba(14, 14, 12, 0.6);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--hairline);
  transition: padding 0.4s var(--ease-out);
}

.header.is-scrolled {
  padding: 16px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}

.logo em {
  font-style: italic;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 500;
}

.nav a {
  color: var(--ink-soft);
  transition: color 0.3s;
  position: relative;
}

.nav a:hover {
  color: var(--ink);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}

.nav a:hover::after { width: 100%; }

.btn-pill {
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
}

.btn-pill:hover {
  background: var(--ink);
  color: var(--bg);
}

@media (max-width: 900px) {
  .nav { display: none; }
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

#dome-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, transparent 0%, var(--bg) 80%),
    linear-gradient(180deg, transparent 70%, var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn 1s var(--ease-out) 0.2s forwards;
}

.hero-meta-line {
  width: 48px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroIn 1.1s var(--ease-out) forwards;
}

.hero-word:nth-child(1) { animation-delay: 0.4s; }
.hero-word:nth-child(3) { animation-delay: 0.6s; font-style: italic; color: var(--accent); }
.hero-word:nth-child(5) { animation-delay: 0.8s; }

.hero-dot {
  display: inline-block;
  margin: 0 0.3em;
  color: var(--accent);
  opacity: 0;
  animation: heroIn 1.1s var(--ease-out) forwards;
}

.hero-dot:nth-of-type(1) { animation-delay: 0.5s; }
.hero-dot:nth-of-type(2) { animation-delay: 0.7s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1s var(--ease-out) 1s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1s var(--ease-out) 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: heroIn 1s var(--ease-out) 1.4s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--ink-mute) 0%, transparent 100%);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.3); transform-origin: bottom; }
}

@media (max-width: 768px) {
  .hero-scroll { display: none; }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  z-index: 0;
}

.btn-primary > * { position: relative; z-index: 1; }

.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { color: var(--bg); }

.btn-primary .arrow { transition: transform 0.4s var(--ease-out); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.3s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(245, 241, 232, 0.04);
}

/* ========================================
   TICKER
   ======================================== */

.ticker {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 22px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: ticker 50s linear infinite;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
}

.ticker-track > span:not(.ticker-dot) {
  color: var(--ink);
}

.ticker-dot {
  color: var(--accent);
  font-size: 10px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 140px 0;
  position: relative;
}

.section-header {
  margin-bottom: 80px;
  max-width: 1100px;
}

.section-header.center {
  text-align: center;
  margin: 0 auto 80px;
}

.section-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px);
  margin-right: 0.25em;
}

.reveal-word.is-revealed {
  animation: revealWord 1.2s var(--ease-out) forwards;
}

@keyframes revealWord {
  to { opacity: 1; transform: translateY(0); }
}

.section-lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 700px;
  margin-top: 32px;
}

.section-lead.center {
  margin: 32px auto 0;
  text-align: center;
}

/* ========================================
   CONCEPT - 3 cards
   ======================================== */

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.concept-card {
  position: relative;
  padding: 48px 36px;
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}

.concept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.6s var(--ease-out);
}

.concept-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 241, 232, 0.2);
}

.concept-card:hover::before { width: 100%; }

.concept-card-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}

.concept-card-letter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}

.concept-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.concept-card p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.concept-points {
  list-style: none;
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
}

.concept-points li {
  font-size: 13px;
  color: var(--ink-mute);
  padding: 6px 0;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 16px;
}

.concept-points li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

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

/* ========================================
   QUOTE
   ======================================== */

.quote-section {
  padding: 160px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 166, 107, 0.08) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}

.big-quote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin: 0 auto;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

.big-quote em {
  font-style: italic;
  color: var(--accent);
}

/* ========================================
   EXPÉRIENCES - grid asymétrique
   ======================================== */

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 80px;
}

.exp-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg);
  transition: background 0.4s var(--ease-out);
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.exp-card:hover {
  background: var(--bg-elev);
}

.exp-card-wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--bg-elev), var(--bg));
}

.exp-card-wide h3 { max-width: 400px; }
.exp-card-wide p { max-width: 600px; flex: 1; padding-left: 60px; }

.exp-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 32px;
}

.exp-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.exp-card p {
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
  font-size: 15px;
}

.exp-tag {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 5px 12px;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  align-self: flex-start;
}

.exp-card-wide .exp-tag { align-self: flex-end; }

@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card-wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .exp-card-wide p { padding-left: 0; }
}

/* ========================================
   ENGAGEMENT
   ======================================== */

.engagement {
  background: var(--bg-elev);
}

.engagement-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 80px;
}

.engagement-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--hairline);
}

.engagement-block:last-child { border-bottom: 1px solid var(--hairline); }

.engagement-icon {
  width: 100px;
  height: 100px;
  color: var(--accent);
}

.engagement-content h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.engagement-content p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
}

.engagement-content strong {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .engagement-block { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .engagement-icon { width: 64px; height: 64px; }
}

/* ========================================
   PROPRIÉTAIRES
   ======================================== */

.owners-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.owners-text { padding-top: 20px; }

.owners-promise {
  margin-top: 56px;
  padding: 32px;
  background: var(--bg-elev);
  border-left: 3px solid var(--accent);
}

.owners-promise-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.owners-promise-text {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.owners-promise-text em {
  font-style: italic;
  color: var(--accent);
}

.owners-checklist {
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  padding: 48px;
  position: sticky;
  top: 120px;
}

.owners-checklist h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}

.owners-checklist ul {
  list-style: none;
  margin-bottom: 32px;
}

.owners-checklist li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.5;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 700;
}

.owners-cta { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .owners-split { grid-template-columns: 1fr; gap: 48px; }
  .owners-checklist { position: static; padding: 32px; }
}

/* ========================================
   JOURNEY (parcours)
   ======================================== */

.journey {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201, 166, 107, 0.04) 0%, transparent 50%),
    var(--bg);
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 100px;
  padding-top: 60px;
}

.journey-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 7%;
  right: 7%;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.journey-step {
  position: relative;
  padding: 0 12px;
}

.journey-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}

.journey-dot {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.journey-step h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.journey-step p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .journey-line { grid-template-columns: repeat(2, 1fr); gap: 48px; padding-top: 0; }
  .journey-line::before { display: none; }
  .journey-dot {
    position: static;
    transform: none;
    margin-bottom: 16px;
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .journey-line { grid-template-columns: 1fr; }
}

/* ========================================
   INVEST CARD
   ======================================== */

.invest-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg-elev) 0%, #221F19 100%);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 80px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  overflow: hidden;
  align-items: center;
}

.invest-tag { color: var(--accent); }

.invest-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

.invest-title em {
  font-style: italic;
  color: var(--accent);
}

.invest-lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 600px;
  margin-bottom: 40px;
}

.invest-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.invest-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

.stat-num em {
  font-style: italic;
  color: var(--accent);
  font-size: 0.55em;
}

.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.invest-deco {
  position: relative;
  height: 100%;
  min-height: 300px;
}

.invest-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  animation: shapeRotate 30s linear infinite;
}

.invest-shape::before, .invest-shape::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
}

.invest-shape::after {
  inset: 50px;
  border-color: rgba(201, 166, 107, 0.3);
}

@keyframes shapeRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 900px) {
  .invest-card { grid-template-columns: 1fr; padding: 48px 32px; }
  .invest-deco { display: none; }
}

/* ========================================
   FORMULAIRE
   ======================================== */

.form-section {
  background: var(--bg-elev);
}

.lead-form {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  min-height: 600px;
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-step-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.form-step-sub {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 56px;
  font-size: 15px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.profile-choice {
  background: var(--bg);
  border: 1px solid var(--hairline);
  padding: 32px;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--body);
  color: var(--ink);
}

.profile-choice:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: var(--bg-card);
}

.profile-icon {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 12px;
}

.profile-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.profile-desc {
  font-size: 14px;
  color: var(--ink-soft);
}

.form-back {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 32px;
  transition: color 0.3s;
}

.form-back:hover { color: var(--accent); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row-full { grid-column: 1 / -1; }

.form-row label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.optional {
  text-transform: none;
  letter-spacing: normal;
  font-style: italic;
  color: var(--ink-mute);
}

.form-row input,
.form-row textarea,
.form-row select {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 16px 18px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  transition: border-color 0.3s, background 0.3s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-card);
}

.form-row textarea { resize: vertical; }

.form-row select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A66B' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

[data-show-for] { display: none; }
[data-show-for].is-visible { display: flex; }

.form-consent {
  margin-top: 16px;
}

.consent-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--body) !important;
  font-size: 13px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: var(--ink-soft) !important;
  cursor: pointer;
  line-height: 1.5;
}

.consent-label input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.form-submit { width: 100%; justify-content: center; }

.form-success {
  text-align: center;
  padding: 60px 20px;
}

.form-success-mark {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 32px;
  font-weight: 700;
}

.form-success h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 56px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

.form-success p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
  max-width: 500px;
  margin: 0 auto 12px;
}

.form-success-meta {
  font-size: 14px !important;
  color: var(--ink-mute) !important;
  margin-top: 32px !important;
}

.form-success-meta a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}

@media (max-width: 700px) {
  .profile-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-step-title { font-size: 28px; }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  padding: 80px 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}

.footer .container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
}

.footer-mark {}

.footer-logo {
  font-family: var(--display);
  font-weight: 300;
  font-size: 48px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}

.footer-logo em {
  font-style: italic;
  color: var(--accent);
}

.footer-tag {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
}

@media (max-width: 768px) {
  .footer .container { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
