*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#050505;
  color:white;
  font-family:-apple-system,BlinkMacSystemFont,sans-serif;
  overflow-x:hidden;
}

.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:9999;
  padding:32px 70px;
  box-sizing:border-box;
  background:linear-gradient(to bottom, rgba(0,0,0,0.75), transparent);
  backdrop-filter:blur(6px);
}

.logo{

  font-size:22px;

  font-weight:700;

  letter-spacing:3px;

}

.new-logo{
  font-size:22px;
  font-weight:700;
  letter-spacing:3px;
}

.new-top{
  padding-top:28px;
  margin-bottom:80px;
}

.new-title{

  font-size:42px;

  font-weight:700;

  letter-spacing:-1px;

  line-height:1;

}

.back-link{
  color:#888;
  text-decoration:none;
  display:inline-block;
  margin-top:12px;
}

.nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav a{
  color:white;
  text-decoration:none;
  opacity:0.88;
  transition:0.3s;
  font-size:15px;
}

.nav a:hover{
  opacity:1;
}

.nav-cta{
  background:white;
  color:black!important;
  padding:14px 22px;
  border-radius:14px;
  font-weight:600;
}

.hero{
  position:relative;
  z-index:0;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:160px 70px 100px;
  background:url('../images/hero-tel-V2.jpeg') center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  z-index:0;
}


.hero-gradient{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:260px;
  background:linear-gradient(to bottom, rgba(0,0,0,0.95), transparent);
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:760px;
}

.hero h1{
  font-size:88px;
  line-height:0.95;
  margin-bottom:34px;
  letter-spacing:-3px;
}

.hero-text{
  font-size:24px;
  line-height:1.6;
  color:#d7d7d7;
  margin-bottom:50px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  margin-bottom:55px;
}

.btn-primary{
  background:white;
  color:black;
  padding:20px 34px;
  border-radius:16px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  color:white;
  padding:20px 34px;
  border-radius:16px;
  text-decoration:none;
}

.hero-features{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.hero-feature{
  padding:14px 20px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  color:#f0f0f0;
  font-size:14px;
}

.situations-section{
  padding:120px 60px;
  background:#0a0a0a;
}

.section-header{
  margin-bottom:60px;
}

.section-header h2{
  font-size:64px;
  margin-bottom:18px;
  letter-spacing:-2px;
}

.section-header p{
  color:#bcbcbc;
  font-size:20px;
}

.situations-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:24px;
}

.situation-box{

  background:#111111;

  border:1px solid rgba(255,255,255,0.06);

  border-radius:28px;

  padding:34px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:24px;

  transition:0.35s;

  cursor:pointer;

  text-decoration:none;

  color:white;

}

.situation-box h3,

.situation-box p{

  color:inherit;

  text-decoration:none;

}

.situation-box:hover{
  transform:translateY(-4px);
  background:#151515;
}

.situation-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  background:rgba(255,255,255,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex-shrink:0;
}

.situation-content{
  flex:1;
}

.situation-content h3{
  font-size:24px;
  margin-bottom:10px;
}

.situation-content p{
  color:#a9a9a9;
  line-height:1.5;
}

.situation-arrow{
  font-size:28px;
  opacity:0.4;
}

.proof-section{
  padding:140px 70px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.proof-left h2{
  font-size:72px;
  line-height:1;
  margin-bottom:30px;
  letter-spacing:-3px;
}

.proof-left p{
  color:#c4c4c4;
  font-size:22px;
  line-height:1.7;
  margin-bottom:40px;
}

@media(max-width:980px){

  .proof-section{
    grid-template-columns:1fr;
  }

  .proof-left h2{
    font-size:54px;
  }
}

@media(max-width:768px){

  .topbar{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 22px;

    z-index:10;

    box-sizing:border-box;

  }

  .logo{

    padding:0;

    font-size:18px;

    letter-spacing:2px;

  }

  .top-links{

    display:flex;

    align-items:center;

    gap:10px;

  }

  .top-links a{

    font-size:13px;

  }

  .nav{

    display:flex;

    align-items:center;

    gap:12px;

  }

  .nav a{

    font-size:13px;

  }

  .hero{
    padding:160px 24px 80px;
  }

  .hero h1{
    font-size:52px;
    line-height:1;
  }

  .hero-text{
    font-size:18px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .situations-section{
    padding:80px 24px;
  }

  .section-header h2{
    font-size:42px;
  }

  .proof-section{
    padding:90px 24px;
  }

  .proof-left h2{
    font-size:42px;
  }

  .proof-left p{
    font-size:18px;
  }

}

.coffre-image{
  width:100%;
  max-width:520px;
  display:block;
  margin:auto;
}

.vault-body{
  background:#050505;
  padding-bottom:120px;
}

.vault-header{
  padding:120px 24px 40px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}

.vault-kicker{
  color:#888;
  margin-bottom:10px;
  letter-spacing:2px;
  font-size:12px;
}

.vault-header h1{
  font-size:52px;
  letter-spacing:-2px;
}

.vault-add-btn{
  background:white;
  color:black;
  text-decoration:none;
  padding:16px 22px;
  border-radius:16px;
  font-weight:600;
}

.vault-categories{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding:0 24px 30px;
}

.vault-category{
  border:none;
  background:#121212;
  color:white;
  padding:14px 20px;
  border-radius:999px;
  white-space:nowrap;
  font-size:14px;
}

.vault-category.active{
  background:white;
  color:black;
}

.vault-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
  padding:0 24px;
}

.vault-item{
  background:#111111;
  border-radius:32px;
  overflow:hidden;
  transition:0.3s;
}

.vault-item:hover{
  transform:translateY(-4px);
}

.vault-item img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.vault-item-content{
  padding:24px;
}

.vault-badge{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  margin-bottom:18px;
  font-size:13px;
}

.vault-item-content h2{
  font-size:28px;
  margin-bottom:12px;
}

.vault-item-content p{
  color:#aaaaaa;
}

.mobile-nav{
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  background:#111111;
  border:1px solid rgba(255,255,255,0.08);
  padding:16px 22px;
  border-radius:24px;
  display:flex;
  gap:26px;
  z-index:1000;
  backdrop-filter:blur(20px);
}

.mobile-nav-item{
  color:#888;
  text-decoration:none;
  font-size:14px;
}

.mobile-nav-item.active{
  color:white;
}

@media(max-width:768px){

  .vault-header{
    padding:110px 24px 34px;
  }

  .vault-header h1{
    font-size:42px;
  }

  .mobile-nav{
    width:calc(100% - 30px);
    justify-content:space-around;
    gap:0;
  }
}

.new-body{
  background:#050505;
  min-height:100vh;
  color:white;
}

.back-link{
  color:#888;
  text-decoration:none;
  display:inline-block;
  margin-bottom:24px;
}

.new-wrapper{
  padding:0 24px 120px;
  max-width:760px;
  margin:auto;
}

.new-step{
  margin-bottom:28px;
  margin-top:50px;
}

.step-label{
  color:#888;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:12px;
}

.new-step h2{
  font-size:34px;
}

.situation-select-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:16px;
}

.situation-select{
  background:#111111;
  border:1px solid rgba(255,255,255,0.08);
  color:white;
  border-radius:22px;
  padding:22px;
  font-size:16px;
}

.situation-select.active{
  background:white;
  color:black;
}

.codex-input{
  width:100%;
  background:#111111;
  border:none;
  border-radius:24px;
  padding:24px;
  color:white;
  font-size:18px;
}

.upload-box{
  background:#111111;
  border:2px dashed rgba(255,255,255,0.08);
  border-radius:32px;
  padding:60px 24px;
  text-align:center;
}

.upload-icon{
  font-size:44px;
  margin-bottom:20px;
}

.upload-box h3{
  font-size:30px;
  margin-bottom:12px;
}

.upload-box p{
  color:#999;
}

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

.preview-photo{
  aspect-ratio:1/1;
  background:#111111;
  border-radius:24px;
}

.swipe-zone{
  margin-top:50px;
}

.swipe-button{
  background:white;
  color:black;
  padding:28px;
  border-radius:999px;
  text-align:center;
  font-size:18px;
  font-weight:600;
}

@media(max-width:768px){

  .new-header{
    padding:100px 24px 30px;
  }

  .new-header h1{
    font-size:42px;
  }

  .new-step h2{
    font-size:28px;
  }

  .preview-grid{
    grid-template-columns:1fr;
  }

}

.success-body{
  background:#050505;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 24px;
}

.success-wrapper{
  width:100%;
  max-width:620px;
  text-align:center;
}

.success-check{
  width:96px;
  height:96px;
  border-radius:50%;
  background:white;
  color:black;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  margin:auto auto 34px;
  font-weight:700;
}

.success-kicker{
  color:#888;
  letter-spacing:2px;
  font-size:12px;
  margin-bottom:20px;
}

.success-wrapper h1{
  font-size:68px;
  line-height:0.95;
  letter-spacing:-3px;
  margin-bottom:28px;
}

.success-text{
  color:#bbbbbb;
  font-size:22px;
  line-height:1.6;
  margin-bottom:50px;
}

.success-card{
  background:#111111;
  border-radius:34px;
  overflow:hidden;
  margin-bottom:40px;
  text-align:left;
}

.success-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.success-card-content{
  padding:28px;
}

.success-badge{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  margin-bottom:18px;
  font-size:13px;
}

.success-card-content h2{
  font-size:34px;
  margin-bottom:12px;
}

.success-card-content p{
  color:#aaaaaa;
}

.success-actions{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
}

@media(max-width:768px){

  .success-wrapper h1{
    font-size:48px;
  }

  .success-text{
    font-size:18px;
  }

  .success-card img{
    height:220px;
  }

}

.success-topline{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
  gap:12px;
}

.codex-id{
  font-size:12px;
  letter-spacing:1px;
  color:#888;
  background:rgba(255,255,255,0.04);
  padding:10px 14px;
  border-radius:999px;
}

.timeline-mini{
  display:flex;
  align-items:center;
  margin-top:34px;
}

.timeline-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#333;
}

.timeline-dot.active{
  background:white;
}

.timeline-line{
  flex:1;
  height:2px;
  background:#222;
}

.timeline-labels{
  display:flex;
  justify-content:space-between;
  margin-top:12px;
  font-size:12px;
  color:#777;
}

.success-card{
  animation:successFade 0.8s ease;
}

@keyframes successFade{

  from{
    opacity:0;
    transform:translateY(12px);
  }

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

}

.proof-page-body{
  background:#050505;
  color:white;
  min-height:100vh;
  padding:60px 24px;
}

.proof-page-wrapper{
  max-width:920px;
  margin:auto;
}

.proof-page-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:50px;
  flex-wrap:wrap;
  gap:20px;
}

.proof-page-logo{
  font-size:30px;
  font-weight:700;
  letter-spacing:4px;
}

.proof-page-status{
  background:#111111;
  border-radius:999px;
  padding:14px 20px;
  color:#ddd;
}

.proof-page-card{
  background:#111111;
  border-radius:40px;
  overflow:hidden;
  margin-bottom:34px;
}

.proof-page-card img{
  width:100%;
  height:480px;
  object-fit:cover;
}

.proof-page-content{
  padding:36px;
}

.proof-page-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
  gap:14px;
  flex-wrap:wrap;
}

.proof-page-badge{
  background:rgba(255,255,255,0.08);
  border-radius:999px;
  padding:12px 18px;
}

.proof-page-id{
  color:#888;
  font-size:13px;
}

.proof-page-content h1{
  font-size:54px;
  line-height:1;
  margin-bottom:16px;
}

.proof-page-date{
  color:#999;
  margin-bottom:34px;
}

.proof-page-timeline{
  display:flex;
  align-items:center;
}

.proof-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#333;
}

.proof-dot.active{
  background:white;
}

.proof-line{
  flex:1;
  height:2px;
  background:#222;
}

.proof-page-labels{
  display:flex;
  justify-content:space-between;
  margin-top:12px;
  color:#777;
  font-size:12px;
}

.proof-page-info{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-bottom:40px;
}

.proof-info-box{
  background:#111111;
  border-radius:28px;
  padding:28px;
}

.proof-info-box span{
  color:#777;
  display:block;
  margin-bottom:14px;
}

.proof-info-box strong{
  font-size:22px;
}

.proof-page-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

@media(max-width:768px){

  .proof-page-card img{
    height:280px;
  }

  .proof-page-content h1{
    font-size:38px;
  }

}

.detail-body{
  background:#050505;
  color:white;
  min-height:100vh;
  padding:50px 24px 120px;
}

.detail-wrapper{
  max-width:980px;
  margin:auto;
}

.detail-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
}

.detail-status{
  background:#111111;
  padding:14px 20px;
  border-radius:999px;
}

.detail-gallery{
  margin-bottom:40px;
}

.main-photo{
  width:100%;
  border-radius:40px;
  display:block;
  margin-bottom:18px;
}

.detail-thumbs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.detail-thumbs img{
  width:100%;
  border-radius:24px;
}

.detail-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  margin-bottom:34px;
  flex-wrap:wrap;
}

.detail-category{
  color:#888;
  margin-bottom:12px;
  letter-spacing:2px;
  font-size:12px;
}

.detail-header h1{
  font-size:64px;
  line-height:0.95;
  letter-spacing:-3px;
}

.detail-id{
  color:#777;
  background:#111111;
  border-radius:999px;
  padding:14px 18px;
}

.detail-meta{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-bottom:50px;
}

.detail-meta-box{
  background:#111111;
  border-radius:30px;
  padding:28px;
}

.detail-meta-box span{
  color:#777;
  display:block;
  margin-bottom:14px;
}

.detail-meta-box strong{
  font-size:24px;
}

.detail-timeline{
  margin-bottom:50px;
}

.detail-timeline h2{
  font-size:40px;
  margin-bottom:34px;
}

.timeline-item{
  display:flex;
  gap:20px;
  margin-bottom:28px;
}

.timeline-content strong{
  display:block;
  margin-bottom:8px;
  font-size:20px;
}

.timeline-content p{
  color:#888;
  line-height:1.5;
}

.detail-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

@media(max-width:768px){

  .detail-header h1{
    font-size:42px;
  }

  .detail-thumbs{
    grid-template-columns:1fr;
  }

}

.detail-location{
  background:#111111;
  border-radius:36px;
  padding:34px;
  margin-bottom:50px;
}

.detail-location-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:28px;
  flex-wrap:wrap;
}

.detail-location-label{
  color:#777;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.detail-location h2{
  font-size:34px;
}

.location-badge{
  background:rgba(255,255,255,0.08);
  border-radius:999px;
  padding:12px 18px;
}

.location-map{
  height:240px;
  border-radius:28px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%),
    #0c0c0c;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  position:relative;
  overflow:hidden;
}

.location-map::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:40px 40px;
}

.location-pin{
  width:74px;
  height:74px;
  border-radius:50%;
  background:white;
  color:black;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  z-index:2;
}

.location-coords{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.location-coords span{
  background:#0c0c0c;
  border-radius:999px;
  padding:12px 16px;
  color:#999;
  font-size:14px;
}

.vault-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-top:34px;
  margin-bottom:24px;
  flex-wrap:wrap;
}

.vault-tabs{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.vault-tab{
  background:#111111;
  border:none;
  color:#999;
  padding:14px 18px;
  border-radius:999px;
  font-size:14px;
}

.vault-tab.active{
  background:white;
  color:black;
}

.vault-count{
  color:#777;
  font-size:14px;
}

.vault-search{
  margin-bottom:34px;
}

.vault-search input{
  width:100%;
  background:#111111;
  border:none;
  border-radius:24px;
  padding:22px 24px;
  color:white;
  font-size:16px;
}

.vault-item-image{
  position:relative;
}

.vault-item-image img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.vault-item-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.vault-type{
  color:#777;
  font-size:12px;
  letter-spacing:1px;
}

.vault-count{
  color:#666;
  font-size:13px;
}

.vault-item-content h2{
  line-height:1.05;
}

.vault-item-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:20px;
  flex-wrap:wrap;
}

.vault-location{
  color:#999;
  font-size:14px;
}

.vault-id{
  background:#111111;
  border-radius:999px;
  padding:10px 14px;
  color:#777;
  font-size:12px;
}

/* =========================
   SHARE SECTION
========================= */

.share-section{

  padding:120px 64px;

}

.share-card{

  display:grid;

  grid-template-columns:1fr 420px;

  gap:48px;

  align-items:start;

  background:#0b0b0b;

  border:1px solid #1b1b1b;

  border-radius:40px;

  padding:56px;

}

.share-left h2{

  font-size:64px;

  line-height:0.95;

  margin:18px 0 24px;

  max-width:720px;

}

.share-left p{

  font-size:22px;

  line-height:1.6;

  color:#b8b8b8;

  max-width:760px;

}

.share-right{

  display:flex;

  flex-direction:column;

  gap:18px;

}

.share-badge{

  width:max-content;

  background:#111;

  border:1px solid #222;

  border-radius:999px;

  padding:14px 20px;

  font-size:15px;

  font-weight:600;

}

.share-preview{

  background:#111;

  border:1px solid #222;

  border-radius:26px;

  padding:28px;

  font-size:28px;

  font-weight:700;

  line-height:1.4;

}

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

.footer{

  padding:80px 64px 40px;

  border-top:1px solid #151515;

}

.footer-top{

  display:flex;

  justify-content:space-between;

  gap:80px;

  margin-bottom:48px;

}

.footer-brand{

  max-width:520px;

}

.footer-logo{

  font-size:42px;

  font-weight:800;

  letter-spacing:4px;

  margin-bottom:20px;

}

.footer-brand p{

  font-size:20px;

  line-height:1.7;

  color:#9e9e9e;

}

.footer-links{

  display:flex;

  flex-direction:column;

  gap:18px;

}

.footer-links a{

  color:white;

  text-decoration:none;

  font-size:18px;

  opacity:0.82;

  transition:0.2s;

}

.footer-links a:hover{

  opacity:1;

}

.footer-bottom{

  padding-top:34px;

  border-top:1px solid #151515;

  color:#6d6d6d;

  font-size:15px;

}

.footer-column a{

  display:block;

  margin-top:14px;

  color:#d0d0d0;

  text-decoration:none;

  transition:0.2s;

}

.footer-column{

  display:flex;

  flex-direction:column;

}
/* =========================
   MOBILE
========================= */

@media(max-width:980px){

  .share-section{

    padding:80px 24px;

  }

  .share-card{

    grid-template-columns:1fr;

    padding:34px;

  }

  .share-left h2{

    font-size:46px;

  }

  .share-left p{

    font-size:18px;

  }

  .share-preview{

    font-size:20px;

  }

.footer-column{

  display:flex;

  flex-direction:column;

  gap:14px;

}

.footer-title{

  color:#666;

  font-size:13px;

  letter-spacing:1px;

  text-transform:uppercase;

  margin-bottom:6px;

}

.footer-text{

  color:#9e9e9e;

  font-size:18px;

  line-height:1.7;

}

  .footer{

    padding:70px 24px 40px;

  }

  .footer-top{

    flex-direction:column;

    gap:42px;

  }

}

/* =========================
   LEGAL
========================= */

.legal-page{

  padding:140px 64px 100px;

}

.legal-container{

  max-width:920px;

}

.legal-container h1{

  font-size:72px;

  line-height:0.95;

  margin:18px 0 70px;

}

.legal-block{

  margin-bottom:64px;

}

.legal-block h2{

  font-size:28px;

  margin-bottom:18px;

}

.legal-block p{

  color:#b5b5b5;

  font-size:20px;

  line-height:1.8;

  margin-bottom:18px;

}

@media(max-width:980px){

  .legal-page{

    padding:120px 24px 80px;

  }

  .legal-container h1{

    font-size:52px;

  }

  .legal-block p{

    font-size:18px;

  }

}

.vault-header{

  display:flex;

  justify-content:space-between;

  align-items:flex-start;

  gap:32px;

}

.vault-header-actions{

  display:flex;

  gap:12px;

  margin-top:18px;

}

.vault-header-btn{

  height:46px;

  padding:0 18px;

  display:flex;

  align-items:center;

  justify-content:center;

  border-radius:999px;

  background:#111;

  border:1px solid #222;

  color:white;

  text-decoration:none;

  font-size:14px;

  font-weight:600;

  transition:0.2s;

}

.vault-header-btn:hover{

  background:#1a1a1a;

}

.vault-home-link{

  text-decoration:none;

}

/* =========================
   FAQ
========================= */

.faq-page{

  padding:140px 64px 100px;

}

.faq-container{

  max-width:920px;

}

.faq-container h1{

  font-size:72px;

  line-height:0.95;

  margin:18px 0 70px;

}

.faq-list{

  display:flex;

  flex-direction:column;

  gap:28px;

}

.faq-item{

  background:#0d0d0d;

  border:1px solid #1a1a1a;

  border-radius:28px;

  padding:34px;

}

.faq-item h2{

  font-size:28px;

  margin-bottom:18px;

}

.faq-item p{

  color:#b5b5b5;

  font-size:19px;

  line-height:1.8;

}

@media(max-width:980px){

  .faq-page{

    padding:120px 24px 80px;

  }

  .faq-container h1{

    font-size:54px;

  }

  .faq-item{

    padding:28px;

  }

  .faq-item h2{

    font-size:24px;

  }

  .faq-item p{

    font-size:17px;

  }

}

.pricing-section{

padding:20px 40px 120px;

}

.pricing-card{

  max-width:1100px;

  margin:auto;

}

.pricing-text{

  max-width:700px;

  font-size:20px;

  line-height:1.7;

  color:#cfcfcf;

  margin-top:24px;

}

.pricing-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(240px,1fr));

  gap:24px;

  margin-top:48px;

}

.pricing-box{

  background:#111111;

  border:1px solid #222;

  border-radius:28px;

  padding:36px;

}

.pricing-price{

  margin-top:18px;

  font-size:42px;

  font-weight:700;

}

/* =========================
   GUIDES
========================= */

.guides-body{

  background:#050505;

  color:#fff;

}

.guides-hero{

  position:relative;

  padding:220px 60px 120px;

}

.guides-content{

  max-width:820px;

}

.guides-content h1{

  font-size:64px;

  line-height:1;

  margin-top:20px;

  margin-bottom:30px;

}

.guides-intro{

  max-width:680px;

  font-size:24px;

  line-height:1.7;

  color:#b8b8b8;

}

.guides-grid-section{

  padding:40px 60px 120px;

}

.guides-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:32px;

}

.guide-card{

  background:#0b0b0b;

  border:1px solid #1a1a1a;

  border-radius:34px;

  overflow:hidden;

  text-decoration:none;

  color:#fff;

  transition:0.3s ease;

}

.guide-card:hover{

  transform:translateY(-6px);

  border-color:#2a2a2a;

}

.guide-image{

  height:240px;

  background:
  linear-gradient(
    135deg,
    #161616,
    #0b0b0b
  );

}

.guide-content{

  padding:34px;

}

.guide-content h2{

  font-size:42px;

  line-height:1.05;

  margin-top:12px;

  margin-bottom:18px;

}

.guide-content p{

  color:#a9a9a9;

  line-height:1.7;

  font-size:18px;

}

@media(max-width:768px){

  .guides-content h1,
  .article-hero h1{

    font-size:42px;

    line-height:1.05;

  }

}
/* =========================
   ARTICLE
========================= */

.article-hero{

  padding:220px 60px 80px;

}

.article-hero h1{

  font-size:64px;

  line-height:1;

}

.article-content h1{

  font-size:52px;

  line-height:1.02;

  margin-bottom:28px;

}

.article-content{

  max-width:860px;

  margin:auto;

  padding:40px 60px 120px;

}

.article-content p{

  font-size:24px;

  line-height:1.9;

  color:#c4c4c4;

  margin-bottom:34px;

}

.guide-image{

  height:240px;

  border-bottom:
  1px solid #1a1a1a;

  position:relative;

}

.guide-image::after{

  content:"";

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.18),
    transparent
  );

}

.article-hero{

  padding:
  140px 60px 40px;

}

.article-hero-image{

  width:100%;

  max-width:1100px;

  height:520px;

  object-fit:cover;

  border-radius:34px;

  display:block;

  margin:auto;

  border:
  1px solid #1a1a1a;

}

@media(max-width:768px){

  
 .article-content{

    padding:24px 24px 80px;

  }

  .article-content h1{

    font-size:38px;

    line-height:1.05;

    margin-bottom:24px;

  }

  .article-content p{

    font-size:19px;

    line-height:1.8;

  }

  .article-hero{

    padding:

    110px 24px 24px;

  }

  .article-hero-image{

    height:260px;

    border-radius:24px;

  }

}

.article-share{

  margin-top:80px;

  padding-top:40px;

  border-top:1px solid #1a1a1a;

}

.article-share-title{

  font-size:14px;

  letter-spacing:2px;

  color:#777;

  margin-bottom:20px;

  text-transform:uppercase;

}

.article-share-links{

  display:flex;

  gap:14px;

  flex-wrap:wrap;

}

.article-share-links a{

  background:#111;

  border:1px solid #222;

  padding:14px 18px;

  border-radius:999px;

  color:white;

  text-decoration:none;

  transition:0.2s;

}

.article-share-links a:hover{

  background:#1a1a1a;

}

.article-content h2{

  font-size:38px;

  line-height:1.1;

  margin-top:70px;

  margin-bottom:24px;

  letter-spacing:-1px;

}

.article-content strong{

  color:#fff;

}

.article-content ul{

  margin:30px 0;

  padding-left:24px;

}

.article-content li{

  margin-bottom:14px;

  color:#c4c4c4;

  line-height:1.8;

}

@media(max-width:768px){

  .article-content h2{

    font-size:30px;

    margin-top:50px;

  }

}

.copy-link-btn{

  background:#111;

  border:1px solid #222;

  padding:14px 18px;

  border-radius:999px;

  color:white;

  cursor:pointer;

  font-size:15px;

  transition:0.2s;

}

.copy-link-btn:hover{

  background:#1a1a1a;

}

.space-grid{

  display:grid;

  grid-template-columns:1fr 1.15fr;

  gap:80px;

  align-items:center;

  margin-top:70px;

}

.space-text{

  max-width:620px;

}

.space-text p{

  font-size:22px;

  line-height:1.8;

  color:#cfcfcf;

  margin-bottom:28px;

}

.space-image img{

  width:100%;

  max-height:760px;

  border-radius:32px;

  display:block;

  object-fit:cover;

  box-shadow:
  0 30px 80px rgba(0,0,0,0.45);

}

.space-text .btn-primary{

  margin-top:20px;

}

@media(max-width:980px){

  .space-grid{

    grid-template-columns:1fr;

    gap:40px;

  }

  .space-text{

    max-width:100%;

  }

  .space-text p{

    font-size:18px;

  }

}

.section-kicker{

  font-size:13px !important;

  letter-spacing:2px;

  text-transform:uppercase;

  color:#777 !important;

  margin-bottom:22px !important;

  line-height:1.2 !important;

}

.space-image{

  display:flex;

  align-items:center;

  justify-content:center;

}


