:root {
    --cream: #0F0F0D;
    --white: #0F0F0D;
    --ink: #F0EDE8;
    --ink-light: #B0ADA8;
    --ink-muted: #6A6A66;
    --accent: #C9A84C;
    --accent-light: #2A1810;
    --accent-mid: #8B3418;
    --green: #2D6A4F;
    --green-light: #0F2218;
    --border: #2E2E2A;
    --shadow: 0 2px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  body { font-family:'Plus Jakarta Sans',sans-serif; background:#0F0F0D; color:var(--ink); min-height:100vh; overflow-x:hidden; }

  .screen { display:none; min-height:100vh; flex-direction:column; }
  .screen.active { display:flex; }

  nav {
    display:flex; align-items:center; justify-content:space-between;
    padding:20px 48px; border-bottom:1px solid var(--border);
    background:rgba(15,15,13,0.88); position:sticky; top:0; z-index:200; backdrop-filter:blur(10px);
  }
  .logo { font-family:'Unbounded',sans-serif; font-size:18px; font-weight:700; color:var(--ink); letter-spacing:-0.5px; }
  .logo span { color:#C9A84C; }
  .nav-links { display:flex; gap:28px; align-items:center; }
  .nav-links a { font-size:14px; font-weight:500; color:var(--ink-light); text-decoration:none; cursor:pointer; transition:color .2s; }
  .nav-links a:hover, .nav-links a.active { color:var(--ink); }

  .btn {
    display:inline-flex; align-items:center; gap:8px;
    padding:13px 26px; border-radius:100px;
    font-family:'Plus Jakarta Sans',sans-serif; font-size:15px; font-weight:600;
    cursor:pointer; border:none; transition:all .2s; text-decoration:none;
  }
  .btn-primary { background:var(--accent); color:white; box-shadow:0 4px 16px rgba(201,168,76,.28); }
  .btn-primary:hover { background:#d44a1e; transform:translateY(-1px); box-shadow:0 6px 20px rgba(201,168,76,.38); }
  .btn-secondary { background:var(--white); color:var(--ink); border:1.5px solid var(--border); }
  .btn-secondary:hover { border-color:var(--ink-muted); transform:translateY(-1px); }
  .btn-ghost { background:transparent; color:var(--ink-light); padding:10px 20px; }
  .btn-waitlist { background:transparent; color:#C9A84C; border:2px solid #C9A84C; padding:17px 34px; font-size:16px; font-weight:700; }
  .btn-waitlist:hover { background:rgba(201,168,76,0.1); transform:translateY(-1px); }
  .btn-ghost:hover { color:var(--ink); background:var(--border); }
  .btn-lg { padding:17px 34px; font-size:16px; }
  .btn-sm { padding:10px 20px; font-size:13px; }

  /* ── LANDING ── */
  #screen-landing { background:transparent; }
  .hero {
    flex:1; display:flex; flex-direction:column;
    max-width:900px; margin:0 auto; padding:56px 48px 20px; align-items:flex-start; gap:0;
  }
  .hero-left { padding-right:0; max-width:780px; margin:0 auto; text-align:center; }
  .hero-tag {
    display:inline-flex; align-items:center; gap:8px;
    background:var(--accent-light); color:var(--accent);
    font-size:11px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
    padding:6px 14px; border-radius:100px; margin-bottom:28px;
  }
  .hero-tag::before { content:''; width:6px; height:6px; background:#C9A84C; border-radius:50%; }
  .hero h1 {
    font-family:'Unbounded',sans-serif; font-size:36px; font-weight:700;
    line-height:1.08; letter-spacing:-1.5px; margin-bottom:24px;
  }
  .hero h1 em { font-style:italic; color:#C9A84C; }
  .hero-sub { font-size:24px; line-height:1.85; color:#FFFFFF; margin-bottom:40px; font-weight:500; letter-spacing:-0.2px; }
  .hero-actions { display:flex; gap:12px; align-items:center; flex-wrap:wrap; justify-content:center; }

  .hero-right { position:relative; display:flex; align-items:center; justify-content:center; }
  .hero-illustration {
    width:100%; border-radius:24px; overflow:hidden;
    box-shadow: 0 24px 60px rgba(26,26,24,0.18), 0 0 0 1px rgba(26,26,24,0.06);
    aspect-ratio: 4/3;
    position: relative;
  }
  .hero-illustration img {
    width:100%; height:100%; object-fit:cover; display:block;
    object-position: center center;
  }
  .hero-illustration::after {
    content:'';
    position:absolute; inset:0;
    background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
    border-radius:24px;
    pointer-events:none;
  }
  .card-stack { position:relative; height:420px; }
  .p-card {
    position:absolute; background:var(--white); border:1px solid var(--border);
    border-radius:18px; padding:22px; box-shadow:var(--shadow-lg); width:268px;
    transition:transform .35s;
  }
  .p-card:nth-child(1) { top:0; left:30px; transform:rotate(-2.5deg); z-index:1; }
  .p-card:nth-child(2) { top:55px; left:110px; transform:rotate(1.8deg); z-index:2; }
  .p-card:nth-child(3) { top:125px; left:55px; transform:rotate(-.8deg); z-index:3; box-shadow:0 14px 44px rgba(26,26,24,.15); }
  .card-stack:hover .p-card:nth-child(1) { transform:rotate(-5deg) translate(-12px,-6px); }
  .card-stack:hover .p-card:nth-child(2) { transform:rotate(4deg) translate(18px,-12px); }
  .card-stack:hover .p-card:nth-child(3) { transform:rotate(0deg) translateY(-6px); }
  .p-card .av { width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:17px; margin-bottom:12px; }
  .p-card .cn { font-weight:700; font-size:14px; margin-bottom:3px; }
  .p-card .cr { font-size:11px; color:var(--ink-muted); margin-bottom:10px; }
  .p-card .tags { display:flex; gap:5px; flex-wrap:wrap; }
  .tag { background:var(--cream); color:var(--ink-light); font-size:11px; font-weight:500; padding:3px 9px; border-radius:100px; border:1px solid var(--border); }
  .tag.acc { background:var(--accent-light); color:var(--accent); border-color:transparent; }
  .tag.grn { background:var(--green-light); color:var(--green); border-color:transparent; }
  .match-badge { position:absolute; top:-10px; right:-10px; background:var(--accent); color:white; font-size:10px; font-weight:700; padding:3px 9px; border-radius:100px; }


  .photo-section { background:#0F0F0D; padding:40px 48px 72px; }
  .photo-inner { max-width:900px; margin:0 auto; position:relative; }
  .hero-photo {
    width:100%; height:480px; object-fit:cover; object-position:center 30%;
    border-radius:24px;
    box-shadow: 0 20px 60px rgba(26,26,24,0.14), 0 0 0 1px rgba(26,26,24,0.05);
    display:block;
  }

  .how-section { background:#0F0F0D; padding:56px 48px 80px; }
  .how-inner { max-width:1100px; margin:0 auto; }
  .section-label { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#C9A84C; margin-bottom:8px; }
  .section-title { font-family:'Unbounded',sans-serif; font-size:30px; font-weight:700; letter-spacing:-1px; margin-bottom:24px; color:#FFFFFF; }
  .steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  .step-item {
    position:relative; overflow:hidden;
    background:#F5F0E8;
    border:none;
    border-radius:4px; padding:28px 24px 24px;
    transition:border-color .2s, background .2s;
  }
  .step-item:hover { background:#EDE8DC; border-color:none; }
  .step-num-bg {
    position:absolute; top:-12px; right:10px;
    font-family:'Unbounded',sans-serif;
    font-size:96px; font-weight:700;
    color:rgba(201,168,76,0.25);
    line-height:1; pointer-events:none; user-select:none;
  }
  .step-icon { font-size:24px; margin-bottom:14px; display:block; position:relative; }
  .step-title { font-family:'Unbounded',sans-serif; font-size:13px; font-weight:600; margin-bottom:8px; color:#0F0F0D; position:relative; line-height:1.4; }
  .step-desc { font-size:12px; color:rgba(0,0,0,0.5); line-height:1.7; position:relative; }

  .cta-section { background:rgba(15,15,13,0.82); padding:80px 48px; text-align:center; border-top:1px solid rgba(201,168,76,0.2); }
  .cta-section h2 { font-family:'Unbounded',sans-serif; font-size:34px; color:#FFFFFF; letter-spacing:-1px; margin-bottom:14px; }
  .cta-section p { font-size:17px; color:rgba(255,255,255,0.5); margin-bottom:36px; }

  /* ── ONBOARDING ── */
  #screen-onboarding { background:var(--cream); }
  .ob-wrap { flex:1; display:flex; align-items:center; justify-content:center; padding:48px; }
  .ob-box { width:100%; max-width:540px; }
  .prog-bar { display:flex; gap:5px; margin-bottom:38px; }
  .prog-step { flex:1; height:3px; background:var(--border); border-radius:100px; transition:background .3s; }
  .prog-step.done { background:var(--accent); }
  .prog-step.active { background:var(--accent); opacity:.5; }
  .ob-label { font-size:11px; font-weight:700; color:var(--accent); letter-spacing:.09em; text-transform:uppercase; margin-bottom:9px; }
  .ob-title { font-family:'Unbounded',sans-serif; font-size:24px; font-weight:700; letter-spacing:-.5px; margin-bottom:7px; }
  .ob-sub { font-size:14px; color:var(--ink-light); line-height:1.65; margin-bottom:30px; }
  .form-card { background:var(--white); border-radius:18px; padding:32px; border:1px solid var(--border); box-shadow:var(--shadow); margin-bottom:22px; }
  .fg { margin-bottom:22px; }
  .fg:last-child { margin-bottom:0; }
  label { display:block; font-size:12px; font-weight:700; letter-spacing:.02em; color:var(--ink); margin-bottom:8px; }
  input[type=text], input[type=email], textarea, select {
    width:100%; padding:12px 15px; border:1.5px solid var(--border); border-radius:10px;
    font-family:'Plus Jakarta Sans',sans-serif; font-size:14px; color:var(--ink);
    background:var(--cream); outline:none; transition:border-color .2s, background .2s; resize:none;
  }
  input:focus, textarea:focus { border-color:var(--accent); background:var(--white); }
  textarea { min-height:90px; }
  .choices-grid { display:grid; grid-template-columns:1fr 1fr; gap:9px; }
  .choice-item {
    border:1.5px solid var(--border); border-radius:11px; padding:13px 14px;
    cursor:pointer; transition:all .18s; background:var(--cream);
  }
  .choice-item:hover { border-color:var(--accent-mid); background:var(--accent-light); }
  .choice-item.selected { border-color:var(--accent); background:var(--accent-light); }
  .ci-icon { font-size:19px; margin-bottom:5px; }
  .ci-label { font-size:13px; font-weight:700; }
  .ci-sub { font-size:11px; color:var(--ink-muted); margin-top:2px; }
  .skills-area {
    display:flex; flex-wrap:wrap; gap:7px; padding:10px 12px;
    border:1.5px solid var(--border); border-radius:10px;
    background:var(--cream); min-height:48px; cursor:text; transition:border-color .2s;
  }
  .skills-area:focus-within { border-color:var(--accent); background:var(--white); }
  .skill-tag { display:inline-flex; align-items:center; gap:5px; background:var(--accent-light); color:var(--accent); font-size:12px; font-weight:600; padding:3px 10px; border-radius:100px; }
  .skill-tag button { background:none; border:none; cursor:pointer; color:var(--accent); font-size:13px; line-height:1; padding:0; }
  .skills-area input { border:none; background:transparent; outline:none; font-size:13px; padding:3px; min-width:110px; flex:1; color:var(--ink); }
  .form-nav { display:flex; justify-content:space-between; align-items:center; }

  /* ── MATCHING ── */
  #screen-matching { background:var(--cream); }
  .match-layout { display:grid; grid-template-columns:300px 1fr; flex:1; min-height:calc(100vh - 73px); }
  .sidebar { background:#1A1A18; border-right:1px solid var(--border); padding:26px 22px; overflow-y:auto; }
  .sb-title { font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-muted); margin-bottom:14px; }
  .my-mini { background:var(--cream); border-radius:12px; padding:16px; margin-bottom:26px; border:1px solid var(--border); }
  .filter-group { margin-bottom:22px; }
  .filter-label { font-size:13px; font-weight:700; margin-bottom:9px; }
  .chips { display:flex; flex-wrap:wrap; gap:6px; }
  .chip { padding:5px 11px; border-radius:100px; font-size:12px; font-weight:500; border:1.5px solid var(--border); cursor:pointer; transition:all .15s; color:var(--ink-light); }
  .chip:hover { border-color:var(--accent-mid); color:var(--accent); }
  .chip.active { border-color:var(--accent); color:var(--accent); background:var(--accent-light); }
  .match-main { padding:32px 36px; overflow-y:auto; }
  .match-head { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:28px; }
  .match-head h2 { font-family:'Unbounded',sans-serif; font-size:20px; font-weight:700; letter-spacing:-.5px; }
  .match-head p { font-size:13px; color:var(--ink-muted); margin-top:4px; }
  .profiles-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(272px,1fr)); gap:18px; }
  .pfc {
    background:var(--white); border-radius:16px; padding:22px;
    border:1px solid var(--border); transition:all .2s; cursor:pointer; position:relative; overflow:hidden;
  }
  .pfc:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:transparent; }
  .pfc.sug::before { content:'⭐ Suggéré pour toi'; position:absolute; top:0; left:0; right:0; background:var(--accent); color:white; font-size:10px; font-weight:800; letter-spacing:.05em; padding:5px; text-align:center; }
  .pfc.sug { padding-top:40px; }
  .card-hd { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
  .av { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
  .c-name { font-weight:700; font-size:15px; }
  .c-loc { font-size:11px; color:var(--ink-muted); margin-top:2px; }
  .compat { display:flex; align-items:center; gap:7px; margin-bottom:12px; }
  .compat-bar { flex:1; height:3px; background:var(--border); border-radius:100px; overflow:hidden; }
  .compat-fill { height:100%; background:linear-gradient(90deg,var(--accent-mid),var(--accent)); border-radius:100px; }
  .compat-label { font-size:12px; font-weight:700; color:var(--accent); white-space:nowrap; }
  .c-proj { background:var(--cream); border-radius:9px; padding:11px 13px; margin-bottom:12px; }
  .c-proj-lbl { font-size:9px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-muted); margin-bottom:3px; }
  .c-proj-name { font-size:14px; font-weight:700; }
  .c-proj-desc { font-size:12px; color:var(--ink-light); margin-top:2px; line-height:1.5; }
  .c-skills { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:12px; }
  .c-looking { font-size:12px; color:var(--ink-light); margin-bottom:14px; line-height:1.55; }
  .c-looking strong { color:var(--ink); }
  .c-actions { display:flex; gap:8px; }

  /* ── PACTE ── */
  #screen-pact { background:var(--cream); }
  .pact-layout { display:grid; grid-template-columns:1fr 340px; flex:1; gap:0; padding:36px 44px; max-width:1160px; margin:0 auto; width:100%; }
  .pact-main { padding-right:36px; }
  .pact-main h2 { font-family:'Unbounded',sans-serif; font-size:22px; font-weight:700; letter-spacing:-.5px; margin-bottom:5px; }
  .pact-sub { font-size:14px; color:var(--ink-light); margin-bottom:28px; }
  .partners-bar { display:flex; align-items:center; gap:14px; background:var(--white); border-radius:14px; padding:18px 22px; border:1px solid var(--border); margin-bottom:24px; }
  .p-av { width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; }
  .p-nm { font-weight:700; font-size:15px; }
  .p-role { font-size:12px; color:var(--ink-muted); }
  .p-link { font-size:20px; color:var(--accent); font-weight:700; }
  .p-proj { margin-left:auto; text-align:right; }
  .p-proj .lbl { font-size:10px; color:var(--ink-muted); text-transform:uppercase; letter-spacing:.08em; }
  .p-proj .nm { font-family:'Playfair Display',serif; font-size:19px; font-weight:700; }
  .checkin-card { background:var(--white); border-radius:14px; padding:26px; border:1px solid var(--border); margin-bottom:18px; }
  .ci-hd { display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
  .ci-hd-title { font-size:15px; font-weight:700; }
  .badge { background:var(--accent-light); color:var(--accent); font-size:11px; font-weight:700; padding:4px 11px; border-radius:100px; }
  .badge.done { background:var(--green-light); color:var(--green); }
  .mood-row { display:flex; gap:8px; margin-bottom:18px; }
  .mood-btn { flex:1; padding:11px 8px; border:1.5px solid var(--border); border-radius:11px; background:var(--cream); cursor:pointer; text-align:center; transition:all .15s; font-size:20px; line-height:1; }
  .mood-btn:hover { border-color:var(--accent-mid); background:var(--accent-light); }
  .mood-btn.active { border-color:var(--accent); background:var(--accent-light); }
  .mood-btn .ml { font-size:10px; color:var(--ink-muted); margin-top:3px; font-family:'Plus Jakarta Sans',sans-serif; }
  .obj-list {}
  .obj-row { display:flex; align-items:flex-start; gap:11px; padding:11px 0; border-bottom:1px solid var(--border); }
  .obj-row:last-child { border-bottom:none; }
  .obj-check { width:19px; height:19px; border-radius:50%; border:2px solid var(--border); flex-shrink:0; cursor:pointer; transition:all .15s; display:flex; align-items:center; justify-content:center; margin-top:1px; }
  .obj-check.checked { background:var(--green); border-color:var(--green); }
  .obj-check.checked::after { content:'✓'; color:white; font-size:10px; font-weight:800; }
  .obj-txt { font-size:13px; line-height:1.55; }
  .obj-own { font-size:11px; color:var(--ink-muted); margin-top:2px; }
  .divider { height:1px; background:var(--border); margin:20px 0; }
  .pact-sidebar {}
  /* ── GAMIFICATION ── */
  .streak-card { background:var(--ink); border-radius:14px; padding:22px; color:white; margin-bottom:18px; }
  .streak-top { display:flex; align-items:center; gap:14px; margin-bottom:16px; }
  .streak-flame { font-size:36px; animation:flamePulse 1.8s ease-in-out infinite; display:inline-block; }
  @keyframes flamePulse { 0%,100%{transform:scale(1) rotate(-3deg);} 50%{transform:scale(1.15) rotate(3deg);} }
  .streak-num { font-family:'Unbounded',sans-serif; font-size:48px; font-weight:700; line-height:1; }
  .streak-lbl { font-size:13px; opacity:.6; margin-top:2px; }

  .streak-alert {
    background:rgba(201,168,76,0.2); border:1px solid rgba(201,168,76,0.4);
    border-radius:9px; padding:9px 12px; font-size:12px; color:#FFB899;
    margin-bottom:16px; line-height:1.5;
  }
  .streak-alert strong { color:#FF8A5B; }

  .chain-label { font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; opacity:.4; margin-bottom:10px; }
  .chain-row { display:flex; align-items:center; gap:3px; flex-wrap:wrap; margin-bottom:16px; }
  .chain-link {
    width:28px; height:28px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:13px; font-weight:700; flex-shrink:0;
    transition:transform .15s;
  }
  .chain-link:hover { transform:scale(1.15); }
  .chain-link.done { background:#C9A84C; color:white; }
  .chain-link.current { background:white; color:var(--ink); box-shadow:0 0 0 3px rgba(201,168,76,0.5); animation:pulse 2s ease infinite; }
  .chain-link.empty { background:rgba(255,255,255,0.1); color:rgba(255,255,255,0.2); font-size:9px; }
  @keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(201,168,76,0.5);} 50%{box-shadow:0 0 0 6px rgba(201,168,76,0.2);} }
  .chain-connector { width:8px; height:2px; background:rgba(255,255,255,0.15); flex-shrink:0; }
  .chain-connector.done { background:rgba(201,168,76,0.6); }

  .next-milestone { background:rgba(255,255,255,0.07); border-radius:10px; padding:12px; }
  .milestone-info { display:flex; align-items:flex-start; gap:10px; margin-bottom:10px; }
  .milestone-icon { font-size:20px; }
  .milestone-title { font-size:10px; opacity:.5; text-transform:uppercase; letter-spacing:.07em; }
  .milestone-name { font-size:12px; font-weight:600; margin-top:2px; line-height:1.4; }
  .milestone-bar-wrap { display:flex; align-items:center; gap:8px; }
  .milestone-bar { flex:1; height:5px; background:rgba(255,255,255,0.12); border-radius:100px; overflow:hidden; }
  .milestone-fill { height:100%; background:linear-gradient(90deg,#C9A84C,#FF8A5B); border-radius:100px; transition:width .6s ease; }
  .milestone-pct { font-size:11px; opacity:.5; white-space:nowrap; }

  .badges-card { background:var(--white); border-radius:14px; padding:20px; border:1px solid var(--border); margin-bottom:18px; }
  .badges-title { font-size:13px; font-weight:700; margin-bottom:14px; }
  .badges-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
  .badge-item {
    border-radius:11px; padding:11px 6px; text-align:center;
    border:1.5px solid var(--border); transition:all .2s; cursor:default;
  }
  .badge-item.unlocked { background:var(--accent-light); border-color:var(--accent-mid); }
  .badge-item.unlocked:hover { transform:translateY(-2px); box-shadow:0 4px 12px rgba(201,168,76,0.15); }
  .badge-item.locked { background:var(--cream); opacity:.5; }
  .badge-icon { font-size:22px; margin-bottom:4px; }
  .badge-lbl { font-size:10px; font-weight:700; color:var(--ink-light); }
  .badge-item.unlocked .badge-lbl { color:var(--accent); }

  .streak-card { background:var(--ink); border-radius:14px; padding:22px; color:white; margin-bottom:18px; }
  .timeline-card { background:var(--white); border-radius:14px; padding:22px; border:1px solid var(--border); }
  .tl-title { font-size:13px; font-weight:700; margin-bottom:16px; }
  .tl-item { display:flex; gap:12px; margin-bottom:14px; position:relative; }
  .tl-item::before { content:''; position:absolute; left:13px; top:27px; width:1px; height:calc(100% + 2px); background:var(--border); }
  .tl-item:last-child::before { display:none; }
  .tl-dot { width:26px; height:26px; border-radius:50%; background:var(--cream); border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:11px; flex-shrink:0; position:relative; z-index:1; }
  .tl-dot.done { background:var(--green-light); border-color:var(--green); }
  .tl-wk { font-size:12px; font-weight:700; }
  .tl-ev { font-size:11px; color:var(--ink-muted); margin-top:2px; }
  .notif-dot { width:7px; height:7px; background:var(--accent); border-radius:50%; display:inline-block; margin-left:5px; }

  @keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
  .anim { animation:fadeUp .5s ease forwards; }
  .d1 { animation-delay:.1s; opacity:0; } .d2 { animation-delay:.2s; opacity:0; }
  .d3 { animation-delay:.3s; opacity:0; } .d4 { animation-delay:.4s; opacity:0; }

  @media(max-width:900px) {
    .hero { grid-template-columns:1fr; padding:48px 24px; }
    .hero-right { display:none; }
    .hero h1 { font-size:38px; }
    .steps-grid { grid-template-columns:1fr 1fr; }
    .match-layout { grid-template-columns:1fr; }
    .sidebar { display:none; }
    .pact-layout { grid-template-columns:1fr; padding:24px; }
    .pact-main { padding-right:0; }
    nav { padding:16px 22px; }
  }

  /* ── LANG SWITCHER ── */
  .lang-switcher { display:flex; gap:2px; background:var(--cream); border:1.5px solid var(--border); border-radius:100px; padding:3px; }
  .lang-btn { padding:5px 10px; border-radius:100px; font-size:18px; cursor:pointer; border:none; background:transparent; color:var(--ink-muted); transition:all .18s; opacity:0.5; }
  .lang-btn.active { background:var(--white); opacity:1; box-shadow:0 1px 4px rgba(26,26,24,0.2); }
  .lang-btn:hover:not(.active) { opacity:0.85; }

  /* ── WAITLIST ── */
  .waitlist-section {
    background: rgba(15,15,13,0.82);
    padding: 0 48px 72px;
  }
  .waitlist-inner {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF !important;
    border: none;
    border-radius: 20px;
    padding: 52px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #0F0F0D !important;
  }
  .waitlist-inner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .waitlist-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    color: #8B5E00;
    font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 100px;
    margin-bottom: 20px;
  }
  .waitlist-tag::before { content:''; width:6px; height:6px; background:#8B5E00; border-radius:50%; }
  .waitlist-inner h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px; font-weight: 700;
    color: #0F0F0D; line-height: 1.2;
    margin-bottom: 12px; letter-spacing: -0.5px;
  }
  .waitlist-inner h2 em { font-style: italic; color: #C9A84C; font-weight:700; }
  .waitlist-sub {
    font-size: 15px; color: rgba(0,0,0,0.55);
    margin-bottom: 32px; line-height: 1.7;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .waitlist-counter {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; margin-bottom: 32px;
  }
  .counter-item { text-align: center; }
  .counter-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px; font-weight: 700; color: #8B6914;
    line-height: 1;
  }
  .counter-label {
    font-size: 11px; color: rgba(0,0,0,0.45);
    margin-top: 4px; letter-spacing: .05em;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .counter-divider { width: 1px; height: 40px; background: rgba(0,0,0,0.1); }
  .waitlist-form {
    display: flex; gap: 10px; max-width: 520px; margin: 0 auto 16px;
  }
  .waitlist-input {
    flex: 1; padding: 15px 20px;
    background: #F0EDE6 !important;
    border: 1.5px solid rgba(0,0,0,0.15) !important;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; color: #0F0F0D !important; outline: none; font-weight:500;
    transition: border-color .2s;
  }
  .waitlist-input::placeholder { color: rgba(0,0,0,0.4); font-style:italic; }
  .waitlist-input:focus { border-color: #C9A84C; }
  .waitlist-btn {
    padding: 15px 28px;
    background: #C9A84C; color: #0F0F0D;
    border: none; border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; font-weight: 700;
    cursor: pointer; white-space: nowrap;
    transition: all .2s;
  }
  .waitlist-btn:hover { background: #D4B85A; transform: translateY(-1px); }
  .waitlist-note {
    font-size: 12px; color: rgba(0,0,0,0.4);
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  /* Confirmation */
  .waitlist-confirm {
    display: none;
    animation: fadeUp .4s ease forwards;
  }
  .waitlist-confirm.show { display: block; }
  .confirm-emoji { font-size: 48px; margin-bottom: 16px; }
  .confirm-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px; font-weight: 700; color: #0F0F0D;
    margin-bottom: 8px;
  }
  .confirm-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 48px; font-weight: 700; color: #C9A84C;
    line-height: 1; margin: 12px 0;
  }
  .confirm-sub {
    font-size: 14px; color: rgba(0,0,0,0.5);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
  }

  /* ── SHARE BUTTONS ── */
  .share-section { margin-top: 20px; }
  .share-label { font-size: 12px; font-weight: 700; color: rgba(0,0,0,0.4); letter-spacing:.08em; text-transform:uppercase; margin-bottom: 12px; }
  .share-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
  .share-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    cursor: pointer; border: none; transition: all .2s; text-decoration: none;
  }
  .share-btn:hover { transform: translateY(-2px); }
  .share-btn-whatsapp { background: #25D366; color: white; }
  .share-btn-whatsapp:hover { background: #1fb855; }
  .share-btn-linkedin { background: #0A66C2; color: white; }
  .share-btn-linkedin:hover { background: #0852a3; }
  .share-btn-copy { background: #F5F0E8; color: #0F0F0D; border: 1.5px solid rgba(0,0,0,0.1); }
  .share-btn-copy:hover { background: #EDE8DC; }
  .share-btn-copy.copied { background: #C9A84C; color: white; border-color: transparent; }

  /* ── EASY TAGLINE sous hero ── */
  .easy-tagline {
    text-align:center; margin: 0 auto 0; padding: 18px 48px 0;
    font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.55);
    letter-spacing: -0.1px;
    max-width: 900px;
  }
  .easy-tagline strong { color: #C9A84C; font-weight: 700; }

  /* ── COUNTDOWN BANNER ── */
  .countdown-banner {
    background: linear-gradient(135deg, #1A1208 0%, #150F06 100%);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 20px;
    padding: 32px 40px;
    text-align: center;
    max-width: 700px;
    margin: 36px auto 0;
  }
  .countdown-launch-label {
    font-size: 11px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: #C9A84C; margin-bottom: 14px;
  }
  .countdown-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px; font-weight: 600; color: #fff;
    margin-bottom: 22px; letter-spacing: -0.3px;
  }
  .countdown-units {
    display: flex; justify-content: center; gap: 12px; margin-bottom: 20px;
  }
  .cd-unit {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .cd-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 38px; font-weight: 700;
    color: #C9A84C; line-height: 1;
    min-width: 70px; text-align: center;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px; padding: 12px 8px;
  }
  .cd-label {
    font-size: 10px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,0.35);
  }
  .cd-sep {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px; font-weight: 700; color: rgba(201,168,76,0.4);
    align-self: center; margin-bottom: 18px;
  }
  .countdown-sub {
    font-size: 13px; color: rgba(255,255,255,0.4);
  }
  .countdown-sub strong { color: #C9A84C; }

  /* ── COUNTDOWN MINI (dans waitlist) ── */
  .countdown-mini {
    display: flex; justify-content: center; gap: 8px;
    margin: 18px 0 8px;
  }
  .cdm-unit { display: flex; flex-direction: column; align-items: center; gap: 3px; }
  .cdm-num {
    font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 700;
    color: #C9A84C; min-width: 48px; text-align: center;
    background: rgba(201,168,76,0.1); border-radius: 8px; padding: 6px 4px;
  }
  .cdm-label { font-size: 9px; font-weight: 700; letter-spacing:.1em; text-transform:uppercase; color: rgba(255,255,255,0.3); }
  .cdm-sep { font-family:'Unbounded',sans-serif; font-size:18px; font-weight:700; color:rgba(201,168,76,0.35); align-self:center; margin-bottom:12px; }

  /* ── PHRASE ÉMOTIONNELLE ── */
  .emotional-phrase {
    text-align: center;
    padding: 60px 48px 10px;
    max-width: 900px;
    margin: 0 auto;
  }
  .emotional-phrase p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 28px;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
    letter-spacing: -0.3px;
  }
  .emotional-phrase p em {
    color: #C9A84C;
    font-style: italic;
  }

  /* ── RESPONSIVE MOBILE ── */
  @media (max-width: 768px) {

    /* NAV */
    nav { padding: 14px 18px; gap: 10px; }
    .nav-links { gap: 10px; }
    .nav-links a { display: none; }
    .btn-sm { padding: 9px 16px; font-size: 12px; }
    .lang-switcher { gap: 4px; }

    /* HERO */
    .hero { padding: 28px 20px 16px; width: 100%; max-width: 100%; overflow: hidden; }
    .hero-left { max-width: 100%; width: 100%; padding: 0; }
    .hero h1 { font-size: 22px; letter-spacing: -0.8px; }
    .hero-sub { font-size: 15px; line-height: 1.6; margin-bottom: 28px; white-space: normal; }
    .hero-sub span[style*="white-space:nowrap"] { white-space: normal !important; }
    .hero-sub span[style*="font-size:1.4em"] { font-size: 1.1em !important; }
    .hero-sub svg { height: 0.85em !important; }
    .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .btn-lg { padding: 14px 24px; font-size: 15px; }
    .btn-waitlist { padding: 14px 24px; font-size: 15px; }

    /* LOGO HERO (grand SVG dans le hero) */
    .hero-left > .anim > svg { height: 28px !important; }

    /* EASY TAGLINE */
    .easy-tagline { padding: 14px 20px 0; font-size: 13px; }

    /* COUNTDOWN BANNER */
    .countdown-banner { padding: 22px 16px; border-radius: 14px; margin: 20px 0 0; }
    .countdown-banner-wrap { padding: 0 18px; }
    .countdown-title { font-size: 13px; margin-bottom: 14px; }
    .cd-num { font-size: 24px; min-width: 46px; padding: 8px 4px; border-radius: 8px; }
    .cd-sep { font-size: 18px; }
    .countdown-units { gap: 4px; }
    .cd-label { font-size: 9px; }

    /* PHOTO SECTION */
    .photo-section { padding: 24px 18px 40px; }
    .hero-photo { height: 220px; border-radius: 14px; }

    /* HOW SECTION */
    .how-section { padding: 36px 18px 48px; }
    .section-title { font-size: 22px; letter-spacing: -0.5px; }
    .steps-grid { grid-template-columns: 1fr; gap: 12px; }
    .step-num-bg { font-size: 72px; }

    /* EMOTIONAL PHRASE */
    .emotional-phrase { padding: 36px 20px 0; }
    .emotional-phrase p { font-size: 20px; }

    /* WAITLIST SECTION */
    .waitlist-section { padding: 40px 18px; }
    .waitlist-inner { padding: 28px 20px; border-radius: 16px; }
    .waitlist-inner h2 { font-size: 22px; }
    .waitlist-sub { font-size: 14px; }
    .waitlist-counter { gap: 14px; }
    .counter-num { font-size: 24px; }
    .waitlist-form { flex-direction: column; gap: 10px; }
    .waitlist-input { border-radius: 12px; }
    .waitlist-btn { border-radius: 12px; width: 100%; padding: 14px; }

    /* MINI COUNTDOWN */
    .countdown-mini { gap: 5px; }
    .cdm-num { font-size: 18px; min-width: 38px; }

    /* CTA SECTION */
    .cta-section { padding: 48px 18px; }
    .cta-section h2 { font-size: 22px; }
    .cta-section p { font-size: 15px; }
    .cta-share { flex-direction: column; align-items: center; }

    /* ONBOARDING */
    .ob-wrap { padding: 24px 18px; align-items: flex-start; }
    .form-card { padding: 22px 18px; }
    .ob-title { font-size: 20px; }

    /* MATCHING */
    .match-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .match-main { padding: 20px 16px; }
    .match-head { flex-direction: column; gap: 12px; }
    .match-head h2 { font-size: 17px; }
    .profiles-grid { grid-template-columns: 1fr; }

    /* PACT */
    .pact-layout { grid-template-columns: 1fr; padding: 18px 16px; }
    .pact-main { padding-right: 0; }
    .partners-bar { flex-wrap: wrap; gap: 10px; }
    .p-proj { margin-left: 0; text-align: left; width: 100%; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
    .mood-row { gap: 5px; }
    .mood-btn { padding: 8px 4px; }
    .pact-sidebar { margin-top: 24px; }
    .streak-num { font-size: 36px; }
  }

  /* ── HERO TRUST BAR ── */
  .hero-trust { display:flex; align-items:center; gap:12px; margin-top:20px; font-size:13px; color:var(--ink-muted); justify-content:center; flex-wrap:wrap; }
  .hero-trust span { font-weight:500; }

  /* ── STATS SECTION ── */
  .stats-section { padding: 80px 48px; background: rgba(15,15,13,0.85); }
  .stats-inner { max-width: 1000px; margin: 0 auto; }
  .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
  .stat-card {
    background: #17170F; border: 1px solid var(--border);
    border-radius: 16px; padding: 28px 22px;
    transition: transform .2s, border-color .2s;
  }
  .stat-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
  .stat-card-accent { border-color: rgba(201,168,76,0.4); background: linear-gradient(135deg, #1A1208, #17170F); }
  .stat-num { font-family:'Unbounded',sans-serif; font-size:42px; font-weight:700; color:#C9A84C; line-height:1; margin-bottom:12px; }
  .stat-desc { font-size:13px; color:var(--ink-light); line-height:1.65; margin-bottom:10px; }
  .stat-source { font-size:10px; color:var(--ink-muted); font-style:italic; }

  /* ── FEATURES SECTION ── */
  .features-section { padding: 80px 48px; background: rgba(10,10,8,0.85); }
  .features-inner { max-width: 1100px; margin: 0 auto; }
  .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .feature-card {
    background: #141410; border: 1px solid var(--border);
    border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 18px;
    transition: border-color .2s, transform .2s;
  }
  .feature-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); }
  .feature-icon { font-size: 28px; }
  .feature-title { font-family:'Unbounded',sans-serif; font-size:14px; font-weight:700; letter-spacing:-.3px; margin-bottom:8px; color:#fff; }
  .feature-desc { font-size:13px; color:var(--ink-light); line-height:1.7; }
  .feature-preview { margin-top: auto; }
  .fp-card {
    background: #0F0F0D; border: 1px solid var(--border);
    border-radius: 12px; padding: 16px;
  }

  /* ── LONELY SECTION ── */
  .lonely-section { padding: 80px 48px; background: rgba(15,15,13,0.82); text-align:center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .lonely-inner { max-width: 640px; margin: 0 auto; }
  .lonely-quote {
    font-family: 'Unbounded', sans-serif; font-weight: 600;
    font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.92);
    margin-bottom: 16px; letter-spacing: -0.3px;
  }
  .lonely-sub { font-size: 15px; color: var(--ink-muted); margin-bottom: 32px; }
  .btn-lonely {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 36px; border-radius: 100px;
    background: transparent; border: 2px solid rgba(201,168,76,0.5);
    color: #C9A84C; font-family:'Plus Jakarta Sans',sans-serif;
    font-size: 16px; font-weight: 700; cursor: pointer;
    transition: all .25s;
  }
  .btn-lonely:hover { background: rgba(201,168,76,0.1); border-color: #C9A84C; transform: translateY(-2px); }
  .btn-lonely.clicked { background: rgba(201,168,76,0.15); border-color: #C9A84C; }
  .lonely-counter { margin-top: 16px; font-size: 13px; color: var(--ink-muted); }
  .lonely-counter span { color: #C9A84C; font-weight: 700; font-family:'Unbounded',sans-serif; }

  /* ── TÉMOIGNAGES SECTION ── */
  .temoignages-section { padding: 80px 48px; background: rgba(10,10,8,0.82); }
  .temo-inner { max-width: 1100px; margin: 0 auto; }
  .temo-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; align-items: start; }
  .temo-card {
    background: #141410; border: 1px solid var(--border);
    border-radius: 20px; padding: 28px; position: relative;
  }
  .temo-founder { border-color: rgba(201,168,76,0.35); background: linear-gradient(135deg, #1A1208, #141410); }
  .temo-quote {
    font-size: 14px; line-height: 1.8; color: var(--ink-light);
    margin-bottom: 24px; font-style: italic;
  }
  .temo-author { display: flex; align-items: center; gap: 12px; }
  .temo-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(201,168,76,0.2); color: #C9A84C;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px; flex-shrink: 0;
  }
  .temo-name { font-weight: 700; font-size: 14px; }
  .temo-role { font-size: 11px; color: var(--ink-muted); margin-top: 2px; }
  .temo-badge-founder {
    margin-left: auto; background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: #C9A84C; font-size: 10px; font-weight: 700;
    padding: 4px 10px; border-radius: 100px; white-space:nowrap;
  }

  /* ── RESPONSIVE UPDATES FOR NEW SECTIONS ── */
  @media (max-width: 768px) {
    .stats-section { padding: 48px 18px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-num { font-size: 30px; }
    .features-section { padding: 48px 18px; }
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .lonely-section { padding: 48px 18px; }
    .lonely-quote { font-size: 19px; }
    .btn-lonely { font-size: 14px; padding: 15px 24px; }
    .temoignages-section { padding: 48px 18px; }
    .temo-grid { grid-template-columns: 1fr; gap: 16px; }
    .hero-trust { font-size: 12px; gap: 8px; }
    .countdown-banner-wrap { padding: 0 18px !important; }
  }

  /* ── MODALE ── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
    align-items: center; justify-content: center; padding: 20px;
  }
  .modal-overlay.open { display: flex; animation: fadeIn .2s ease; }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  .modal-box {
    background: #F5F0E8; border-radius: 24px; padding: 40px 36px;
    max-width: 440px; width: 100%; text-align: center; position: relative;
    animation: slideUp .25s ease;
  }
  @keyframes slideUp { from { transform: translateY(20px); opacity:0; } to { transform: translateY(0); opacity:1; } }
  .modal-close {
    position: absolute; top: 16px; right: 18px;
    background: none; border: none; font-size: 18px;
    color: rgba(0,0,0,0.3); cursor: pointer; transition: color .15s;
  }
  .modal-close:hover { color: rgba(0,0,0,0.7); }
  .modal-title {
    font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 700;
    color: #0F0F0D; line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.5px;
  }
  .modal-sub { font-size: 14px; color: rgba(0,0,0,0.55); line-height: 1.65; margin-bottom: 24px; }
  .modal-input {
    width: 100%; padding: 14px 18px; border-radius: 12px;
    border: 1.5px solid rgba(0,0,0,0.15); background: white;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px;
    color: #0F0F0D; outline: none; margin-bottom: 10px;
    transition: border-color .2s;
  }
  .modal-input:focus { border-color: #C9A84C; }
  .modal-btn {
    width: 100%; padding: 15px; border-radius: 12px;
    background: #C9A84C; color: #0F0F0D; border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px; font-weight: 700; cursor: pointer;
    transition: all .2s;
  }
  .modal-btn:hover { background: #D4B85A; transform: translateY(-1px); }
  .modal-note { font-size: 11px; color: rgba(0,0,0,0.35); margin-top: 12px; }
  .modal-confirm { text-align: center; }

  @media (max-width: 768px) {
    .modal-box { padding: 32px 22px; }
    .modal-title { font-size: 18px; }
  }
    50%      { opacity:0.92; }
  }
    50%      { opacity:1; }
  }



    50%       { opacity: 0.95; }
  }

 50%{opacity:.9} }


  /* ── SKILL CHIPS ONBOARDING ── */
  .skills-select-grid {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
  }
  .skill-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 100px;
    border: 1.5px solid var(--border); background: var(--cream);
    font-size: 13px; font-weight: 600; color: var(--ink-light);
    cursor: pointer; transition: all .18s; user-select: none;
  }
  .skill-chip:hover { border-color: var(--accent-mid); color: var(--ink); }
  .skill-chip.selected-have { border-color: #2D6A4F; background: var(--green-light); color: #2D6A4F; }
  .skill-chip.selected-need { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
  @media (max-width:768px) { .skills-select-grid { gap: 6px; } .skill-chip { font-size:12px; padding:7px 11px; } }

  /* Share in landing CTA */
  .cta-share { margin-top: 28px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
  .cta-share-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px; border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    cursor: pointer; border: 1.5px solid rgba(255,255,255,0.25);
    background: transparent; color: white; transition: all .2s;
  }
  .cta-share-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }