/* ==========================================================================
   PROBELIKA — EXAM INTELLIGENCE / CONTENT PASSPORT V1
   ========================================================================== */

.ep-page{
  max-width:1180px;
  margin:0 auto;
  padding:42px 0 84px;

  --ep-card:rgba(15,20,37,.72);
  --ep-card2:rgba(10,14,27,.82);
  --ep-line:rgba(255,255,255,.085);
  --ep-muted:#929cb7;
  --ep-muted2:#68738f;
}

.ep-page *{
  box-sizing:border-box;
}

/* hero */

.ep-hero{
  position:relative;
  min-height:350px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:26px;
  padding:34px;
  border:1px solid var(--ep-line);
  border-radius:29px;
  overflow:hidden;

  background:
    radial-gradient(
      circle at 82% 10%,
      rgba(101,119,255,.22),
      transparent 31%
    ),
    radial-gradient(
      circle at 8% 100%,
      rgba(72,211,255,.07),
      transparent 30%
    ),
    rgba(12,16,30,.79);

  box-shadow:0 30px 90px rgba(0,0,0,.31);
}

.ep-hero:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.36;
  background-image:
    linear-gradient(
      rgba(255,255,255,.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.018) 1px,
      transparent 1px
    );
  background-size:35px 35px;
}

.ep-hero-main{
  position:relative;
  z-index:1;
}

.ep-breadcrumb{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  color:#6f7994;
  font-size: 12px;
  font-weight:750;
}

.ep-breadcrumb a{
  color:#9aa5c0;
  text-decoration:none;
}

.ep-breadcrumb i{
  font-style:normal;
  opacity:.42;
}

.ep-label{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-top:29px;
  padding:7px 10px;
  border:1px solid rgba(126,141,255,.18);
  border-radius:999px;
  background:rgba(108,124,255,.07);
  color:#b7c0ff;
  font-size: 12px;
  font-weight:850;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.ep-label:before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:#60dcff;
  box-shadow:0 0 14px rgba(96,220,255,.8);
}

.ep-number-title{
  display:flex;
  align-items:flex-start;
  gap:20px;
  margin-top:17px;
}

.ep-number{
  flex:0 0 auto;
  color:transparent;
  background:linear-gradient(
    135deg,
    #91e9ff,
    #7778ff 45%,
    #bd7aff
  );
  -webkit-background-clip:text;
  background-clip:text;
  font-size:clamp(55px,8vw,94px);
  line-height:.83;
  font-weight:950;
  letter-spacing:-6px;
}

.ep-title{
  max-width:700px;
  margin:0;
  color:#f7f8ff;
  font-size:clamp(30px,4.4vw,52px);
  line-height:1.03;
  letter-spacing:-2px;
}

.ep-lead{
  max-width:710px;
  margin:19px 0 0;
  color:var(--ep-muted);
  font-size:14px;
  line-height:1.68;
}

.ep-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:25px;
}

.ep-primary,
.ep-secondary{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 17px;
  border-radius:14px;
  text-decoration:none;
  font-size: 12px;
  font-weight:850;
  transition:.18s ease;
}

.ep-primary{
  color:white;
  border:0;
  background:
    linear-gradient(
      135deg,
      #6c7cff,
      #936dff 53%,
      #4bcfff
    );
  box-shadow:
    0 14px 38px rgba(91,108,255,.23);
}

.ep-secondary{
  color:#cbd1e4;
  border:1px solid var(--ep-line);
  background:rgba(255,255,255,.035);
}

.ep-primary:hover,
.ep-secondary:hover{
  transform:translateY(-2px);
}

/* hero intelligence core */

.ep-core{
  position:relative;
  z-index:1;
  align-self:stretch;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:260px;
  padding:23px;
  border:1px solid rgba(123,140,255,.13);
  border-radius:22px;
  background:rgba(5,8,18,.38);
}

.ep-core-orb{
  position:relative;
  width:94px;
  height:94px;
  margin:0 auto 22px;
  border-radius:50%;
  background:
    radial-gradient(
      circle at 30% 25%,
      #a9f6ff,
      #7372ff 41%,
      #47278d 69%,
      transparent 71%
    );

  box-shadow:
    0 0 58px rgba(100,116,255,.32),
    inset -16px -17px 29px rgba(0,0,0,.22);
}

.ep-core-orb:before,
.ep-core-orb:after{
  content:"";
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(130,146,255,.20);
}

.ep-core-orb:before{
  inset:-13px;
}

.ep-core-orb:after{
  inset:-27px;
  opacity:.5;
}

.ep-core small{
  display:block;
  color:#6d7894;
  text-align:center;
  font-size: 12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ep-core strong{
  display:block;
  margin-top:5px;
  text-align:center;
  font-size:15px;
  line-height:1.35;
}

/* facts */

.ep-facts{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:9px;
  margin-top:12px;
}

.ep-fact{
  padding:17px;
  border:1px solid var(--ep-line);
  border-radius:17px;
  background:rgba(255,255,255,.028);
}

.ep-fact strong{
  display:block;
  color:#f1f3fc;
  font-size:23px;
  letter-spacing:-.8px;
}

.ep-fact span{
  display:block;
  margin-top:4px;
  color:#66718c;
  font-size: 12px;
  line-height:1.35;
}

/* sections */

.ep-section{
  margin-top:52px;
}

.ep-section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:17px;
}

.ep-section-head small{
  display:block;
  color:#8d98ff;
  font-size: 12px;
  font-weight:850;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.ep-section-head h2{
  margin:6px 0 0;
  font-size:clamp(25px,3vw,35px);
  letter-spacing:-1.2px;
}

.ep-section-head p{
  max-width:490px;
  margin:0;
  color:#6f7994;
  font-size: 12px;
  line-height:1.5;
}

/* topics */

.ep-topics{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:9px;
}

.ep-topic{
  display:grid;
  grid-template-columns:48px 1fr auto;
  gap:13px;
  align-items:center;
  min-height:92px;
  padding:14px;
  border:1px solid var(--ep-line);
  border-radius:18px;
  color:#f1f3fb;
  text-decoration:none;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.018)
    );
  transition:.17s ease;
}

.ep-topic:hover{
  transform:translateY(-2px);
  border-color:rgba(125,141,255,.23);
  background:rgba(108,124,255,.045);
}

.ep-topic-ring{
  --p:0;
  width:45px;
  height:45px;
  display:grid;
  place-items:center;
  border-radius:50%;

  background:
    radial-gradient(
      closest-side,
      #101527 77%,
      transparent 79% 100%
    ),
    conic-gradient(
      #7e82ff calc(var(--p) * 1%),
      rgba(255,255,255,.07) 0
    );

  color:#aab3cd;
  font-size: 12px;
  font-weight:900;
}

.ep-topic.gap .ep-topic-ring{
  background:
    radial-gradient(
      closest-side,
      #101527 77%,
      transparent 79% 100%
    ),
    conic-gradient(
      #ff7086 calc(var(--p) * 1%),
      rgba(255,255,255,.07) 0
    );
}

.ep-topic.mastered .ep-topic-ring{
  background:
    radial-gradient(
      closest-side,
      #101527 77%,
      transparent 79% 100%
    ),
    conic-gradient(
      #59e6ad calc(var(--p) * 1%),
      rgba(255,255,255,.07) 0
    );
}

.ep-topic-copy strong{
  display:block;
  font-size:12px;
}

.ep-topic-copy span{
  display:block;
  margin-top:4px;
  color:#68738d;
  font-size: 12px;
}

.ep-status{
  flex:0 0 auto;
  padding:6px 8px;
  border-radius:9px;
  background:rgba(255,255,255,.04);
  color:#74809b;
  font-size: 12px;
  font-weight:800;
}

.ep-topic.gap .ep-status{
  color:#ff9dad;
  background:rgba(255,112,134,.07);
}

.ep-topic.learning .ep-status{
  color:#ffd37e;
  background:rgba(255,200,96,.065);
}

.ep-topic.mastered .ep-status{
  color:#82ebbd;
  background:rgba(89,230,173,.07);
}

/* passport */

.ep-passport{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.ep-guide-card{
  position:relative;
  padding:21px;
  border:1px solid var(--ep-line);
  border-radius:20px;
  overflow:hidden;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.042),
      rgba(255,255,255,.016)
    );
}

.ep-guide-card.wide{
  grid-column:1/-1;
}

.ep-guide-icon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:rgba(108,124,255,.08);
  color:#b4bdff;
  font-size:14px;
  font-weight:900;
}

.ep-guide-card.trap .ep-guide-icon{
  color:#ff9dad;
  background:rgba(255,112,134,.07);
}

.ep-guide-card.lifehack .ep-guide-icon{
  color:#ffdb82;
  background:rgba(255,209,105,.07);
}

.ep-guide-card.check .ep-guide-icon{
  color:#83ebc0;
  background:rgba(89,230,173,.07);
}

.ep-guide-card h3{
  margin:14px 0 8px;
  font-size:16px;
}

.ep-guide-card p{
  margin:0;
  color:#a0a8bf;
  font-size:12px;
  line-height:1.65;
}

.ep-guide-list{
  list-style:none;
  padding:0;
  margin:11px 0 0;
}

.ep-guide-list li{
  position:relative;
  padding:9px 0 9px 19px;
  border-bottom:1px solid rgba(255,255,255,.045);
  color:#b9c0d4;
  font-size: 12px;
  line-height:1.52;
}

.ep-guide-list li:last-child{
  border-bottom:0;
}

.ep-guide-list li:before{
  content:"";
  position:absolute;
  left:0;
  top:15px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#7884ff;
  box-shadow:0 0 11px rgba(120,132,255,.45);
}

.ep-guide-card.trap li:before{
  background:#ff7086;
}

.ep-guide-card.lifehack li:before{
  background:#ffd16a;
}

.ep-guide-card.check li:before{
  background:#59e6ad;
}

.ep-algorithm{
  counter-reset:ep-step;
}

.ep-algorithm li{
  padding-left:39px;
  min-height:40px;
}

.ep-algorithm li:before{
  counter-increment:ep-step;
  content:counter(ep-step);
  top:7px;
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:#bcc4ff;
  background:rgba(108,124,255,.08);
  box-shadow:none;
  font-size: 12px;
  font-weight:900;
}

/* sample */

.ep-sample{
  padding:25px;
  border:1px solid var(--ep-line);
  border-radius:22px;
  background:rgba(255,255,255,.025);
}

.ep-sample-label{
  color:#8d98ff;
  font-size: 12px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ep-sample-body{
  margin-top:14px;
  color:#e5e8f2;
  font-size:15px;
  line-height:1.72;
}

/* CTA */

.ep-smart-cta{
  position:relative;
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  margin-top:52px;
  padding:28px;
  border:1px solid rgba(123,139,255,.16);
  border-radius:24px;
  overflow:hidden;
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(110,125,255,.20),
      transparent 34%
    ),
    rgba(13,18,34,.76);
}

.ep-smart-cta small{
  color:#8d98ff;
  font-size: 12px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ep-smart-cta h2{
  margin:7px 0 7px;
  font-size:26px;
  letter-spacing:-.8px;
}

.ep-smart-cta p{
  max-width:680px;
  margin:0;
  color:#818ba5;
  font-size: 12px;
  line-height:1.55;
}

.ep-empty-passport{
  padding:20px;
  border:1px dashed rgba(255,255,255,.10);
  border-radius:17px;
  color:#68738c;
  font-size: 12px;
  line-height:1.6;
}

/* editorial badge only visual, not draft data */

.ep-trust{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:15px;
  color:#66718c;
  font-size: 12px;
}

.ep-trust i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#59e6ad;
}

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

  .ep-core{
    min-height:210px;
  }

  .ep-core-orb{
    width:76px;
    height:76px;
  }

  .ep-facts{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:680px){
  .ep-page{
    padding-top:24px;
  }

  .ep-hero{
    padding:23px;
  }

  .ep-number-title{
    display:block;
  }

  .ep-number{
    margin-bottom:16px;
  }

  .ep-topics,
  .ep-passport{
    grid-template-columns:1fr;
  }

  .ep-guide-card.wide{
    grid-column:auto;
  }

  .ep-section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .ep-smart-cta{
    grid-template-columns:1fr;
  }
}

@media(max-width:430px){
  .ep-facts{
    grid-template-columns:1fr;
  }

  .ep-topic{
    grid-template-columns:42px 1fr;
  }

  .ep-status{
    grid-column:2;
    width:max-content;
  }
}
